@forge/cli-shared 8.22.0-next.2 → 8.22.1-next.0

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.
@@ -164,6 +164,17 @@ export declare type AiOpsIncidentAffectedServiceDetail = {
164
164
  name?: Maybe<Scalars['String']['output']>;
165
165
  serviceId?: Maybe<Scalars['String']['output']>;
166
166
  };
167
+ export declare type AiOpsIncidentRelatedAlertsInput = {
168
+ incidentId: Scalars['String']['input'];
169
+ onlyAlerts?: InputMaybe<Scalars['Boolean']['input']>;
170
+ priorities?: InputMaybe<Array<Scalars['String']['input']>>;
171
+ serviceIds?: InputMaybe<Array<Scalars['String']['input']>>;
172
+ };
173
+ export declare type AiOpsIncidentRelatedAlertsResponse = {
174
+ __typename?: 'AIOpsIncidentRelatedAlertsResponse';
175
+ alertSearchPagePath?: Maybe<Scalars['String']['output']>;
176
+ entries?: Maybe<Array<AiOpsRelatedAlertEntry>>;
177
+ };
167
178
  export declare type AiOpsIncidentSuggestedAction = {
168
179
  description?: Maybe<Scalars['String']['output']>;
169
180
  descriptionList?: Maybe<Array<Scalars['String']['output']>>;
@@ -304,6 +315,62 @@ export declare enum AiOpsInvestigationStatus {
304
315
  InProgress = "IN_PROGRESS",
305
316
  New = "NEW"
306
317
  }
318
+ export declare type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
319
+ __typename?: 'AIOpsRelatedAlert';
320
+ alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
321
+ createdAt?: Maybe<Scalars['Long']['output']>;
322
+ id?: Maybe<Scalars['ID']['output']>;
323
+ lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
324
+ owner?: Maybe<Scalars['String']['output']>;
325
+ priority?: Maybe<AiOpsRelatedAlertPriority>;
326
+ responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
327
+ status?: Maybe<AiOpsRelatedAlertStatus>;
328
+ tinyId?: Maybe<Scalars['String']['output']>;
329
+ title?: Maybe<Scalars['String']['output']>;
330
+ };
331
+ export declare type AiOpsRelatedAlertEntry = {
332
+ createdAt?: Maybe<Scalars['Long']['output']>;
333
+ id?: Maybe<Scalars['ID']['output']>;
334
+ lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
335
+ owner?: Maybe<Scalars['String']['output']>;
336
+ priority?: Maybe<AiOpsRelatedAlertPriority>;
337
+ responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
338
+ status?: Maybe<AiOpsRelatedAlertStatus>;
339
+ tinyId?: Maybe<Scalars['String']['output']>;
340
+ title?: Maybe<Scalars['String']['output']>;
341
+ };
342
+ export declare type AiOpsRelatedAlertGroup = AiOpsRelatedAlertEntry & {
343
+ __typename?: 'AIOpsRelatedAlertGroup';
344
+ createdAt?: Maybe<Scalars['Long']['output']>;
345
+ id?: Maybe<Scalars['ID']['output']>;
346
+ lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
347
+ memberCount?: Maybe<Scalars['Int']['output']>;
348
+ owner?: Maybe<Scalars['String']['output']>;
349
+ priority?: Maybe<AiOpsRelatedAlertPriority>;
350
+ responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
351
+ status?: Maybe<AiOpsRelatedAlertStatus>;
352
+ tinyId?: Maybe<Scalars['String']['output']>;
353
+ title?: Maybe<Scalars['String']['output']>;
354
+ };
355
+ export declare enum AiOpsRelatedAlertPriority {
356
+ P1 = "P1",
357
+ P2 = "P2",
358
+ P3 = "P3",
359
+ P4 = "P4",
360
+ P5 = "P5"
361
+ }
362
+ export declare type AiOpsRelatedAlertResponder = {
363
+ __typename?: 'AIOpsRelatedAlertResponder';
364
+ id?: Maybe<Scalars['ID']['output']>;
365
+ type?: Maybe<Scalars['String']['output']>;
366
+ };
367
+ export declare enum AiOpsRelatedAlertStatus {
368
+ Acked = "ACKED",
369
+ Closed = "CLOSED",
370
+ Open = "OPEN",
371
+ Resolved = "RESOLVED",
372
+ Snoozed = "SNOOZED"
373
+ }
307
374
  export declare type AiOpsTriggerInvestigationInput = {
308
375
  inScopeServiceIds: Array<Scalars['ID']['input']>;
309
376
  sourceEntityId: Scalars['ID']['input'];
@@ -548,7 +615,9 @@ export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
548
615
  };
549
616
  export declare type AvpAnalyticsError = {
550
617
  __typename?: 'AVPAnalyticsError';
618
+ field?: Maybe<AvpAnalyticsModelErrorField>;
551
619
  message: Scalars['String']['output'];
620
+ type?: Maybe<AvpAnalyticsModelErrorType>;
552
621
  };
553
622
  export declare type AvpAnalyticsFilter = {
554
623
  type: AvpAnalyticsFilterType;
@@ -714,6 +783,7 @@ export declare type AvpAnalyticsJoinPaths = {
714
783
  __typename?: 'AVPAnalyticsJoinPaths';
715
784
  columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
716
785
  error?: Maybe<AvpAnalyticsJoinConfigurationError>;
786
+ errors?: Maybe<Array<AvpAnalyticsError>>;
717
787
  joinType: AvpAnalyticsJoinType;
718
788
  leftModelId: Scalars['ID']['output'];
719
789
  rightModelId: Scalars['ID']['output'];
@@ -960,6 +1030,31 @@ export declare type AvpAnalyticsModelEdge = {
960
1030
  cursor?: Maybe<Scalars['String']['output']>;
961
1031
  node: AvpAnalyticsModel;
962
1032
  };
1033
+ export declare enum AvpAnalyticsModelErrorField {
1034
+ Column = "COLUMN",
1035
+ JoinLeft = "JOIN_LEFT",
1036
+ JoinRight = "JOIN_RIGHT",
1037
+ ModelDefinition = "MODEL_DEFINITION",
1038
+ ModelFilter = "MODEL_FILTER",
1039
+ ModelName = "MODEL_NAME"
1040
+ }
1041
+ export declare enum AvpAnalyticsModelErrorType {
1042
+ ColumnDuplicateName = "COLUMN_DUPLICATE_NAME",
1043
+ FormulaColumnCircularDependency = "FORMULA_COLUMN_CIRCULAR_DEPENDENCY",
1044
+ FormulaColumnExpressionInvalid = "FORMULA_COLUMN_EXPRESSION_INVALID",
1045
+ FormulaColumnReferenceInvalid = "FORMULA_COLUMN_REFERENCE_INVALID",
1046
+ FormulaColumnReferenceNotFound = "FORMULA_COLUMN_REFERENCE_NOT_FOUND",
1047
+ FormulaColumnReferenceTypeUnsupported = "FORMULA_COLUMN_REFERENCE_TYPE_UNSUPPORTED",
1048
+ JoinDataSourceNotFound = "JOIN_DATA_SOURCE_NOT_FOUND",
1049
+ ModelColumnsRequired = "MODEL_COLUMNS_REQUIRED",
1050
+ ModelDefinitionRequired = "MODEL_DEFINITION_REQUIRED",
1051
+ ModelFilterColumnInvalid = "MODEL_FILTER_COLUMN_INVALID",
1052
+ ModelFilterColumnNotFound = "MODEL_FILTER_COLUMN_NOT_FOUND",
1053
+ ModelNameRequired = "MODEL_NAME_REQUIRED",
1054
+ SimpleColumnDisconnectedJoin = "SIMPLE_COLUMN_DISCONNECTED_JOIN",
1055
+ SimpleColumnDuplicateSource = "SIMPLE_COLUMN_DUPLICATE_SOURCE",
1056
+ SimpleColumnSourceNotFound = "SIMPLE_COLUMN_SOURCE_NOT_FOUND"
1057
+ }
963
1058
  export declare type AvpAnalyticsModelFilter = {
964
1059
  __typename?: 'AVPAnalyticsModelFilter';
965
1060
  columnName: Scalars['String']['output'];
@@ -1530,6 +1625,7 @@ export declare type AvpDashboard = Node & {
1530
1625
  title?: Maybe<Scalars['String']['output']>;
1531
1626
  trashedAt?: Maybe<Scalars['String']['output']>;
1532
1627
  updatedAt?: Maybe<Scalars['String']['output']>;
1628
+ url?: Maybe<Scalars['String']['output']>;
1533
1629
  };
1534
1630
  export declare type AvpDashboardCanvasLayout = {
1535
1631
  __typename?: 'AVPDashboardCanvasLayout';
@@ -2061,12 +2157,14 @@ export declare type AvpPlatformDimension = {
2061
2157
  dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
2062
2158
  name: Scalars['String']['output'];
2063
2159
  product: Scalars['String']['output'];
2160
+ subProduct?: Maybe<Scalars['String']['output']>;
2064
2161
  };
2065
2162
  export declare type AvpPlatformDimensionInput = {
2066
2163
  datasourceLocator: AvpDatasourceLocatorInput;
2067
2164
  dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
2068
2165
  name: Scalars['String']['input'];
2069
2166
  product: Scalars['String']['input'];
2167
+ subProduct?: InputMaybe<Scalars['String']['input']>;
2070
2168
  };
2071
2169
  export declare type AvpPlatformFilter = {
2072
2170
  __typename?: 'AVPPlatformFilter';
@@ -2077,6 +2175,7 @@ export declare type AvpPlatformFilter = {
2077
2175
  isHidden?: Maybe<Scalars['Boolean']['output']>;
2078
2176
  label?: Maybe<Scalars['String']['output']>;
2079
2177
  metadata?: Maybe<Scalars['String']['output']>;
2178
+ visibility?: Maybe<AvpPlatformFilterVisibility>;
2080
2179
  };
2081
2180
  export declare type AvpPlatformFilterInput = {
2082
2181
  comparison: Scalars['String']['input'];
@@ -2085,6 +2184,7 @@ export declare type AvpPlatformFilterInput = {
2085
2184
  isHidden?: InputMaybe<Scalars['Boolean']['input']>;
2086
2185
  label?: InputMaybe<Scalars['String']['input']>;
2087
2186
  metadata?: InputMaybe<Scalars['String']['input']>;
2187
+ visibility?: InputMaybe<AvpPlatformFilterVisibility>;
2088
2188
  };
2089
2189
  export declare type AvpPlatformFilterUpdateInput = {
2090
2190
  comparison?: InputMaybe<Scalars['String']['input']>;
@@ -2093,7 +2193,13 @@ export declare type AvpPlatformFilterUpdateInput = {
2093
2193
  isHidden?: InputMaybe<Scalars['Boolean']['input']>;
2094
2194
  label?: InputMaybe<Scalars['String']['input']>;
2095
2195
  metadata?: InputMaybe<Scalars['String']['input']>;
2196
+ visibility?: InputMaybe<AvpPlatformFilterVisibility>;
2096
2197
  };
2198
+ export declare enum AvpPlatformFilterVisibility {
2199
+ EditOnly = "EDIT_ONLY",
2200
+ None = "NONE",
2201
+ ViewAndEdit = "VIEW_AND_EDIT"
2202
+ }
2097
2203
  export declare type AvpProductWorkspaceMapEntry = {
2098
2204
  product: Scalars['String']['input'];
2099
2205
  workspaceId: Scalars['ID']['input'];
@@ -4298,6 +4404,11 @@ export declare type AdminStringKeyValuePair = {
4298
4404
  key: Scalars['String']['output'];
4299
4405
  value: Scalars['String']['output'];
4300
4406
  };
4407
+ export declare type AdminTest = {
4408
+ __typename?: 'AdminTest';
4409
+ message?: Maybe<Scalars['String']['output']>;
4410
+ timestamp?: Maybe<Scalars['String']['output']>;
4411
+ };
4301
4412
  export declare enum AdminTimeSearchType {
4302
4413
  BetweenAbsolute = "BETWEEN_ABSOLUTE",
4303
4414
  BetweenRelative = "BETWEEN_RELATIVE",
@@ -6909,6 +7020,28 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
6909
7020
  errors?: Maybe<Array<MutationError>>;
6910
7021
  success: Scalars['Boolean']['output'];
6911
7022
  };
7023
+ export declare type AgentWorkspaceRoutingTableGeneration = {
7024
+ __typename?: 'AgentWorkspaceRoutingTableGeneration';
7025
+ completedServices: Scalars['Int']['output'];
7026
+ currentPhase?: Maybe<AgentWorkspaceRoutingTableGenerationPhase>;
7027
+ endedAt?: Maybe<Scalars['DateTime']['output']>;
7028
+ errorMessage?: Maybe<Scalars['String']['output']>;
7029
+ generationId: Scalars['ID']['output'];
7030
+ startedAt: Scalars['DateTime']['output'];
7031
+ status: AgentWorkspaceRoutingTableGenerationStatus;
7032
+ totalServices: Scalars['Int']['output'];
7033
+ triggeredBy?: Maybe<Scalars['String']['output']>;
7034
+ };
7035
+ export declare enum AgentWorkspaceRoutingTableGenerationPhase {
7036
+ AnalysingWithAi = "ANALYSING_WITH_AI",
7037
+ SavingResults = "SAVING_RESULTS",
7038
+ ScanningTickets = "SCANNING_TICKETS"
7039
+ }
7040
+ export declare enum AgentWorkspaceRoutingTableGenerationStatus {
7041
+ Completed = "COMPLETED",
7042
+ Failed = "FAILED",
7043
+ InProgress = "IN_PROGRESS"
7044
+ }
6912
7045
  export declare type AgentWorkspaceSchedule = {
6913
7046
  __typename?: 'AgentWorkspaceSchedule';
6914
7047
  agents: Array<AgentWorkspaceAgent>;
@@ -7199,6 +7332,18 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
7199
7332
  jobId?: Maybe<Scalars['ID']['output']>;
7200
7333
  status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
7201
7334
  };
7335
+ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
7336
+ cloudId: Scalars['ID']['input'];
7337
+ days?: InputMaybe<Scalars['Int']['input']>;
7338
+ maxIssues?: InputMaybe<Scalars['Int']['input']>;
7339
+ projectKey: Scalars['String']['input'];
7340
+ serviceFieldId: Scalars['String']['input'];
7341
+ };
7342
+ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
7343
+ __typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
7344
+ generationId: Scalars['ID']['output'];
7345
+ status: AgentWorkspaceRoutingTableGenerationStatus;
7346
+ };
7202
7347
  export declare type AgentWorkspaceTeamCapacitiesInput = {
7203
7348
  cloudId: Scalars['ID']['input'];
7204
7349
  projectKey: Scalars['String']['input'];
@@ -12441,6 +12586,15 @@ export declare type AssetsVerticalDefaultAttributeOnObject = AssetsVerticalAttri
12441
12586
  searchValue?: Maybe<Scalars['String']['output']>;
12442
12587
  value?: Maybe<Scalars['String']['output']>;
12443
12588
  };
12589
+ export declare type AssetsVerticalDefaultError = AssetsVerticalProblemDetail & {
12590
+ __typename?: 'AssetsVerticalDefaultError';
12591
+ correctionGuidance?: Maybe<Scalars['String']['output']>;
12592
+ detail: Scalars['String']['output'];
12593
+ instance?: Maybe<Scalars['String']['output']>;
12594
+ status?: Maybe<Scalars['Int']['output']>;
12595
+ title: Scalars['String']['output'];
12596
+ type?: Maybe<Scalars['String']['output']>;
12597
+ };
12444
12598
  export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
12445
12599
  cloudId: Scalars['ID']['input'];
12446
12600
  id: Scalars['ID']['input'];
@@ -12733,6 +12887,7 @@ export declare type AssetsVerticalKeyValueInput = {
12733
12887
  value: Scalars['String']['input'];
12734
12888
  };
12735
12889
  export declare type AssetsVerticalModelItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
12890
+ export declare type AssetsVerticalModelObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
12736
12891
  export declare type AssetsVerticalModelObjects = AssetsVerticalObjects & {
12737
12892
  __typename?: 'AssetsVerticalModelObjects';
12738
12893
  itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
@@ -12820,6 +12975,14 @@ export declare type AssetsVerticalObjectsSuccess = {
12820
12975
  pageInfo?: Maybe<PageInfo>;
12821
12976
  totalCount?: Maybe<Scalars['Int']['output']>;
12822
12977
  };
12978
+ export declare type AssetsVerticalProblemDetail = {
12979
+ correctionGuidance?: Maybe<Scalars['String']['output']>;
12980
+ detail: Scalars['String']['output'];
12981
+ instance?: Maybe<Scalars['String']['output']>;
12982
+ status?: Maybe<Scalars['Int']['output']>;
12983
+ title: Scalars['String']['output'];
12984
+ type?: Maybe<Scalars['String']['output']>;
12985
+ };
12823
12986
  export declare type AssetsVerticalRole = {
12824
12987
  __typename?: 'AssetsVerticalRole';
12825
12988
  description?: Maybe<Scalars['String']['output']>;
@@ -13076,7 +13239,8 @@ export declare enum AssetsVerticalVerticalInstantiationErrorCode {
13076
13239
  ValidationFailed = "VALIDATION_FAILED"
13077
13240
  }
13078
13241
  export declare type AssetsVerticalVerticalInstantiationInlineCategoryInput = {
13079
- type: AssetsVerticalVerticalInstantiationCategoryType;
13242
+ category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
13243
+ type?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
13080
13244
  };
13081
13245
  export declare type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
13082
13246
  __typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
@@ -13142,6 +13306,7 @@ export declare type AssetsVerticalVerticalTemplateQueryErrorExtension = QueryErr
13142
13306
  statusCode?: Maybe<Scalars['Int']['output']>;
13143
13307
  };
13144
13308
  export declare type AssetsVerticalVerticalTemplateResult = AssetsVerticalVerticalTemplate | QueryError;
13309
+ export declare type AssetsVerticalVerticalTemplateV2Result = AssetsVerticalDefaultError | AssetsVerticalVerticalTemplate;
13145
13310
  export declare enum AssetsVerticalVerticalType {
13146
13311
  Ham = "HAM"
13147
13312
  }
@@ -36716,6 +36881,17 @@ export declare type CsmAiAuthoredCoachingContentInput = {
36716
36881
  triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
36717
36882
  triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
36718
36883
  };
36884
+ export declare type CsmAiAvailableKnowledgeSource = {
36885
+ __typename?: 'CsmAiAvailableKnowledgeSource';
36886
+ isConfigured: Scalars['Boolean']['output'];
36887
+ isConnected: Scalars['Boolean']['output'];
36888
+ sourceType: Scalars['String']['output'];
36889
+ };
36890
+ export declare type CsmAiAvailableKnowledgeSourcesPayload = {
36891
+ __typename?: 'CsmAiAvailableKnowledgeSourcesPayload';
36892
+ sources: Array<CsmAiAvailableKnowledgeSource>;
36893
+ };
36894
+ export declare type CsmAiAvailableKnowledgeSourcesResult = CsmAiAvailableKnowledgeSourcesPayload | QueryError;
36719
36895
  export declare type CsmAiByodContent = {
36720
36896
  __typename?: 'CsmAiByodContent';
36721
36897
  datasourceId: Scalars['String']['output'];
@@ -43092,7 +43268,7 @@ export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
43092
43268
  };
43093
43269
  export declare type EcosystemMutationCreateRollingReleaseArgs = {
43094
43270
  appId: Scalars['ID']['input'];
43095
- envId: Scalars['ID']['input'];
43271
+ environmentId: Scalars['ID']['input'];
43096
43272
  targetVersionId?: InputMaybe<Scalars['ID']['input']>;
43097
43273
  };
43098
43274
  export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
@@ -43144,6 +43320,10 @@ export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
43144
43320
  export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
43145
43321
  input: UpdateUserInstallationRulesInput;
43146
43322
  };
43323
+ export declare type EcosystemOrgUnit = {
43324
+ __typename?: 'EcosystemOrgUnit';
43325
+ id: Scalars['ID']['output'];
43326
+ };
43147
43327
  export declare type EcosystemQuery = {
43148
43328
  __typename?: 'EcosystemQuery';
43149
43329
  appByOauthClient?: Maybe<App>;
@@ -43166,6 +43346,7 @@ export declare type EcosystemQuery = {
43166
43346
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
43167
43347
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
43168
43348
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
43349
+ unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
43169
43350
  userAccess?: Maybe<UserAccess>;
43170
43351
  userGrants?: Maybe<UserGrantConnection>;
43171
43352
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -43252,6 +43433,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
43252
43433
  environmentId?: InputMaybe<Scalars['ID']['input']>;
43253
43434
  first?: InputMaybe<Scalars['Int']['input']>;
43254
43435
  };
43436
+ export declare type EcosystemQueryUnitsForOrgArgs = {
43437
+ orgId: Scalars['ID']['input'];
43438
+ };
43255
43439
  export declare type EcosystemQueryUserAccessArgs = {
43256
43440
  contextId: Scalars['ID']['input'];
43257
43441
  definitionId: Scalars['ID']['input'];
@@ -43332,6 +43516,10 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
43332
43516
  name: Scalars['String']['input'];
43333
43517
  token?: InputMaybe<Scalars['String']['input']>;
43334
43518
  };
43519
+ export declare type EcosystemUnitsForOrgResponse = {
43520
+ __typename?: 'EcosystemUnitsForOrgResponse';
43521
+ units: Array<EcosystemOrgUnit>;
43522
+ };
43335
43523
  export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
43336
43524
  __typename?: 'EcosystemUpdateAppOAuthClientResult';
43337
43525
  errors?: Maybe<Array<MutationError>>;
@@ -44577,6 +44765,7 @@ export declare enum ExternalDocumentCategory {
44577
44765
  Form = "FORM",
44578
44766
  Image = "IMAGE",
44579
44767
  KnowledgeArticle = "KNOWLEDGE_ARTICLE",
44768
+ NewsArticle = "NEWS_ARTICLE",
44580
44769
  Notebook = "NOTEBOOK",
44581
44770
  Other = "OTHER",
44582
44771
  Page = "PAGE",
@@ -51403,6 +51592,7 @@ export declare type GraphStore = {
51403
51592
  atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
51404
51593
  atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
51405
51594
  atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
51595
+ atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
51406
51596
  atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
51407
51597
  atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
51408
51598
  atlassianUserCreatedAtlassianProjectUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection>;
@@ -51460,6 +51650,7 @@ export declare type GraphStore = {
51460
51650
  atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
51461
51651
  atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
51462
51652
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
51653
+ atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
51463
51654
  atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
51464
51655
  atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
51465
51656
  atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
@@ -51526,6 +51717,7 @@ export declare type GraphStore = {
51526
51717
  confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
51527
51718
  confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
51528
51719
  confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
51720
+ confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
51529
51721
  confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
51530
51722
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
51531
51723
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -52954,6 +53146,14 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
52954
53146
  queryContext?: InputMaybe<Scalars['String']['input']>;
52955
53147
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
52956
53148
  };
53149
+ export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalInverseArgs = {
53150
+ after?: InputMaybe<Scalars['String']['input']>;
53151
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53152
+ first?: InputMaybe<Scalars['Int']['input']>;
53153
+ id: Scalars['ID']['input'];
53154
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53155
+ sort?: InputMaybe<GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput>;
53156
+ };
52957
53157
  export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateArgs = {
52958
53158
  after?: InputMaybe<Scalars['String']['input']>;
52959
53159
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53410,6 +53610,14 @@ export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
53410
53610
  queryContext?: InputMaybe<Scalars['String']['input']>;
53411
53611
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
53412
53612
  };
53613
+ export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
53614
+ after?: InputMaybe<Scalars['String']['input']>;
53615
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53616
+ first?: InputMaybe<Scalars['Int']['input']>;
53617
+ id: Scalars['ID']['input'];
53618
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53619
+ sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
53620
+ };
53413
53621
  export declare type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
53414
53622
  after?: InputMaybe<Scalars['String']['input']>;
53415
53623
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53920,6 +54128,14 @@ export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
53920
54128
  queryContext?: InputMaybe<Scalars['String']['input']>;
53921
54129
  sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
53922
54130
  };
54131
+ export declare type GraphStoreConfluencePageHasConfluenceApprovalInverseArgs = {
54132
+ after?: InputMaybe<Scalars['String']['input']>;
54133
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54134
+ first?: InputMaybe<Scalars['Int']['input']>;
54135
+ id: Scalars['ID']['input'];
54136
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54137
+ sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceApprovalSortInput>;
54138
+ };
53923
54139
  export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
53924
54140
  after?: InputMaybe<Scalars['String']['input']>;
53925
54141
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -61370,6 +61586,9 @@ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
61370
61586
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
61371
61587
  lastModified?: InputMaybe<GraphStoreSortInput>;
61372
61588
  };
61589
+ export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput = {
61590
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61591
+ };
61373
61592
  export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput = {
61374
61593
  lastModified?: InputMaybe<GraphStoreSortInput>;
61375
61594
  };
@@ -61495,6 +61714,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
61495
61714
  export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
61496
61715
  lastModified?: InputMaybe<GraphStoreSortInput>;
61497
61716
  };
61717
+ export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
61718
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61719
+ };
61498
61720
  export declare type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
61499
61721
  lastModified?: InputMaybe<GraphStoreSortInput>;
61500
61722
  };
@@ -63290,6 +63512,9 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
63290
63512
  export declare type GraphStoreConfluencePageHasCommentSortInput = {
63291
63513
  lastModified?: InputMaybe<GraphStoreSortInput>;
63292
63514
  };
63515
+ export declare type GraphStoreConfluencePageHasConfluenceApprovalSortInput = {
63516
+ lastModified?: InputMaybe<GraphStoreSortInput>;
63517
+ };
63293
63518
  export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
63294
63519
  lastModified?: InputMaybe<GraphStoreSortInput>;
63295
63520
  };
@@ -70327,6 +70552,20 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
70327
70552
  };
70328
70553
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
70329
70554
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
70555
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
70556
+ __typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
70557
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
70558
+ pageInfo: PageInfo;
70559
+ };
70560
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
70561
+ __typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
70562
+ createdAt: Scalars['DateTime']['output'];
70563
+ cursor?: Maybe<Scalars['String']['output']>;
70564
+ id: Scalars['ID']['output'];
70565
+ lastUpdated: Scalars['DateTime']['output'];
70566
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
70567
+ };
70568
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
70330
70569
  export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection = HasPageInfo & {
70331
70570
  __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection';
70332
70571
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge>>>;
@@ -71073,6 +71312,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseE
71073
71312
  node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
71074
71313
  };
71075
71314
  export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
71315
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
71316
+ __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
71317
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
71318
+ pageInfo: PageInfo;
71319
+ };
71320
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
71321
+ __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
71322
+ createdAt: Scalars['DateTime']['output'];
71323
+ cursor?: Maybe<Scalars['String']['output']>;
71324
+ id: Scalars['ID']['output'];
71325
+ lastUpdated: Scalars['DateTime']['output'];
71326
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
71327
+ };
71328
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
71076
71329
  export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
71077
71330
  __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
71078
71331
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
@@ -71833,6 +72086,20 @@ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
71833
72086
  };
71834
72087
  export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
71835
72088
  export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
72089
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
72090
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
72091
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
72092
+ pageInfo: PageInfo;
72093
+ };
72094
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
72095
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
72096
+ createdAt: Scalars['DateTime']['output'];
72097
+ cursor?: Maybe<Scalars['String']['output']>;
72098
+ id: Scalars['ID']['output'];
72099
+ lastUpdated: Scalars['DateTime']['output'];
72100
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
72101
+ };
72102
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
71836
72103
  export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
71837
72104
  __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
71838
72105
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -83161,6 +83428,7 @@ export declare type GraphStoreV2 = {
83161
83428
  atlassianTeamReceivedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskInverseConnection>;
83162
83429
  atlassianTeamSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskConnection>;
83163
83430
  atlassianTeamSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseConnection>;
83431
+ atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
83164
83432
  atlassianUserApprovesFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection>;
83165
83433
  atlassianUserApprovesFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection>;
83166
83434
  atlassianUserAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection>;
@@ -83313,6 +83581,7 @@ export declare type GraphStoreV2 = {
83313
83581
  atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
83314
83582
  atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
83315
83583
  atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
83584
+ atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
83316
83585
  atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
83317
83586
  atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
83318
83587
  atlassianUserSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskConnection>;
@@ -83391,6 +83660,7 @@ export declare type GraphStoreV2 = {
83391
83660
  confluenceCommentHasChildConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentInverseConnection>;
83392
83661
  confluencePageHasChildConfluencePage?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection>;
83393
83662
  confluencePageHasChildConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseConnection>;
83663
+ confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
83394
83664
  confluencePageHasConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection>;
83395
83665
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
83396
83666
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -84275,6 +84545,13 @@ export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskInverseArgs = {
84275
84545
  id: Scalars['ID']['input'];
84276
84546
  sort?: InputMaybe<GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput>;
84277
84547
  };
84548
+ export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalInverseArgs = {
84549
+ after?: InputMaybe<Scalars['String']['input']>;
84550
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
84551
+ first?: InputMaybe<Scalars['Int']['input']>;
84552
+ id: Scalars['ID']['input'];
84553
+ sort?: InputMaybe<GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput>;
84554
+ };
84278
84555
  export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanArgs = {
84279
84556
  after?: InputMaybe<Scalars['String']['input']>;
84280
84557
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -85347,6 +85624,13 @@ export declare type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
85347
85624
  id: Scalars['ID']['input'];
85348
85625
  sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
85349
85626
  };
85627
+ export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
85628
+ after?: InputMaybe<Scalars['String']['input']>;
85629
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
85630
+ first?: InputMaybe<Scalars['Int']['input']>;
85631
+ id: Scalars['ID']['input'];
85632
+ sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput>;
85633
+ };
85350
85634
  export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageArgs = {
85351
85635
  after?: InputMaybe<Scalars['String']['input']>;
85352
85636
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -85893,6 +86177,13 @@ export declare type GraphStoreV2ConfluencePageHasChildConfluencePageInverseArgs
85893
86177
  id: Scalars['ID']['input'];
85894
86178
  sort?: InputMaybe<GraphStoreV2ConfluencePageHasChildConfluencePageSortInput>;
85895
86179
  };
86180
+ export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalInverseArgs = {
86181
+ after?: InputMaybe<Scalars['String']['input']>;
86182
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
86183
+ first?: InputMaybe<Scalars['Int']['input']>;
86184
+ id: Scalars['ID']['input'];
86185
+ sort?: InputMaybe<GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput>;
86186
+ };
85896
86187
  export declare type GraphStoreV2ConfluencePageHasConfluenceCommentArgs = {
85897
86188
  after?: InputMaybe<Scalars['String']['input']>;
85898
86189
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -89710,6 +90001,9 @@ export declare type GraphStoreV2AtlassianTeamReceivedFocusAskSortInput = {
89710
90001
  export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput = {
89711
90002
  lastModified?: InputMaybe<GraphStoreSortInput>;
89712
90003
  };
90004
+ export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput = {
90005
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90006
+ };
89713
90007
  export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput = {
89714
90008
  lastModified?: InputMaybe<GraphStoreSortInput>;
89715
90009
  };
@@ -90055,6 +90349,9 @@ export declare type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
90055
90349
  export declare type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
90056
90350
  lastModified?: InputMaybe<GraphStoreSortInput>;
90057
90351
  };
90352
+ export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
90353
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90354
+ };
90058
90355
  export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageSortInput = {
90059
90356
  lastModified?: InputMaybe<GraphStoreSortInput>;
90060
90357
  };
@@ -90178,6 +90475,9 @@ export declare type GraphStoreV2ConfluenceCommentHasChildConfluenceCommentSortIn
90178
90475
  export declare type GraphStoreV2ConfluencePageHasChildConfluencePageSortInput = {
90179
90476
  lastModified?: InputMaybe<GraphStoreSortInput>;
90180
90477
  };
90478
+ export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput = {
90479
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90480
+ };
90181
90481
  export declare type GraphStoreV2ConfluencePageHasConfluenceCommentSortInput = {
90182
90482
  lastModified?: InputMaybe<GraphStoreSortInput>;
90183
90483
  };
@@ -93953,6 +94253,20 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseE
93953
94253
  };
93954
94254
  export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseUnion = TeamV2;
93955
94255
  export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskUnion = SpfAsk;
94256
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
94257
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
94258
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
94259
+ pageInfo: PageInfo;
94260
+ };
94261
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
94262
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
94263
+ createdAt: Scalars['DateTime']['output'];
94264
+ cursor?: Maybe<Scalars['String']['output']>;
94265
+ id: Scalars['ID']['output'];
94266
+ lastUpdated: Scalars['DateTime']['output'];
94267
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
94268
+ };
94269
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
93956
94270
  export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection = HasPageInfo & {
93957
94271
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection';
93958
94272
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge>>>;
@@ -96117,6 +96431,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInvers
96117
96431
  };
96118
96432
  export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
96119
96433
  export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
96434
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
96435
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
96436
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
96437
+ pageInfo: PageInfo;
96438
+ };
96439
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
96440
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
96441
+ createdAt: Scalars['DateTime']['output'];
96442
+ cursor?: Maybe<Scalars['String']['output']>;
96443
+ id: Scalars['ID']['output'];
96444
+ lastUpdated: Scalars['DateTime']['output'];
96445
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
96446
+ };
96447
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
96120
96448
  export declare type GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection = HasPageInfo & {
96121
96449
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection';
96122
96450
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageEdge>>>;
@@ -97213,6 +97541,20 @@ export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageIn
97213
97541
  };
97214
97542
  export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseUnion = ConfluencePage;
97215
97543
  export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageUnion = ConfluencePage;
97544
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
97545
+ __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
97546
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
97547
+ pageInfo: PageInfo;
97548
+ };
97549
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
97550
+ __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
97551
+ createdAt: Scalars['DateTime']['output'];
97552
+ cursor?: Maybe<Scalars['String']['output']>;
97553
+ id: Scalars['ID']['output'];
97554
+ lastUpdated: Scalars['DateTime']['output'];
97555
+ node?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
97556
+ };
97557
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
97216
97558
  export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
97217
97559
  __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection';
97218
97560
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -136385,6 +136727,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
136385
136727
  name: Scalars['String']['output'];
136386
136728
  numberColumnDisplay?: Maybe<Scalars['String']['output']>;
136387
136729
  rank?: Maybe<Scalars['Int']['output']>;
136730
+ showCardCovers?: Maybe<Scalars['Boolean']['output']>;
136388
136731
  showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
136389
136732
  showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
136390
136733
  showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
@@ -136423,6 +136766,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136423
136766
  fields: Array<JpdViewsServiceField>;
136424
136767
  filter: Array<JpdViewsServiceFilter>;
136425
136768
  groupBy?: Maybe<JpdViewsServiceField>;
136769
+ groupOrder?: Maybe<JpdViewsServiceViewOrderType>;
136426
136770
  groupValues: Array<JpdViewsServiceNestedId>;
136427
136771
  groupsFilter: Array<JpdViewsServiceFilter>;
136428
136772
  hasDraft?: Maybe<Scalars['Boolean']['output']>;
@@ -136435,6 +136779,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136435
136779
  name: Scalars['String']['output'];
136436
136780
  numberColumnDisplay?: Maybe<Scalars['String']['output']>;
136437
136781
  rank?: Maybe<Scalars['Int']['output']>;
136782
+ showCardCovers?: Maybe<Scalars['Boolean']['output']>;
136438
136783
  showConnectionsMatchingColumn: Scalars['Boolean']['output'];
136439
136784
  showConnectionsMatchingGroup: Scalars['Boolean']['output'];
136440
136785
  sort: Array<JpdViewsServiceSort>;
@@ -136444,6 +136789,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136444
136789
  updatedAt: Scalars['String']['output'];
136445
136790
  uuid: Scalars['String']['output'];
136446
136791
  verticalGroupBy?: Maybe<JpdViewsServiceField>;
136792
+ verticalGroupOrder?: Maybe<JpdViewsServiceViewOrderType>;
136447
136793
  verticalGroupValues: Array<JpdViewsServiceNestedId>;
136448
136794
  verticalGroupsFilter: Array<JpdViewsServiceFilter>;
136449
136795
  viewId: Scalars['String']['output'];
@@ -136679,6 +137025,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
136679
137025
  matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
136680
137026
  name?: InputMaybe<Scalars['String']['input']>;
136681
137027
  numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
137028
+ showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
136682
137029
  showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
136683
137030
  showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
136684
137031
  sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
@@ -136705,6 +137052,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136705
137052
  fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
136706
137053
  filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136707
137054
  groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
137055
+ groupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
136708
137056
  groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
136709
137057
  groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136710
137058
  hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
@@ -136715,6 +137063,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136715
137063
  matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
136716
137064
  name?: InputMaybe<Scalars['String']['input']>;
136717
137065
  numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
137066
+ showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
136718
137067
  showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
136719
137068
  showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
136720
137069
  sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
@@ -136722,6 +137071,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136722
137071
  tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
136723
137072
  timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
136724
137073
  verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
137074
+ verticalGroupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
136725
137075
  verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
136726
137076
  verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136727
137077
  visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
@@ -136765,6 +137115,13 @@ export declare enum JpdViewsServiceViewLayoutType {
136765
137115
  Detailed = "DETAILED",
136766
137116
  Summary = "SUMMARY"
136767
137117
  }
137118
+ export declare enum JpdViewsServiceViewOrderType {
137119
+ Asc = "ASC",
137120
+ Desc = "DESC"
137121
+ }
137122
+ export declare type JpdViewsServiceViewOrderTypeInput = {
137123
+ value?: InputMaybe<JpdViewsServiceViewOrderType>;
137124
+ };
136768
137125
  export declare enum JpdViewsServiceVisualizationType {
136769
137126
  Board = "BOARD",
136770
137127
  Matrix = "MATRIX",
@@ -136826,6 +137183,8 @@ export declare type JsmChannelsExperienceConfiguration = {
136826
137183
  __typename?: 'JsmChannelsExperienceConfiguration';
136827
137184
  filter?: Maybe<JsmChannelsFilterConfiguration>;
136828
137185
  isEnabled: Scalars['Boolean']['output'];
137186
+ previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
137187
+ setupStatus?: Maybe<JsmChannelsExperienceSetupStatus>;
136829
137188
  };
136830
137189
  export declare type JsmChannelsExperienceConfigurationByProjectIdsQueryPayload = {
136831
137190
  __typename?: 'JsmChannelsExperienceConfigurationByProjectIdsQueryPayload';
@@ -136848,6 +137207,10 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
136848
137207
  success: Scalars['Boolean']['output'];
136849
137208
  };
136850
137209
  export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
137210
+ export declare type JsmChannelsExperienceSetupStatus = {
137211
+ __typename?: 'JsmChannelsExperienceSetupStatus';
137212
+ code: Scalars['String']['output'];
137213
+ };
136851
137214
  export declare type JsmChannelsFilterConfiguration = {
136852
137215
  __typename?: 'JsmChannelsFilterConfiguration';
136853
137216
  evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
@@ -136961,6 +137324,7 @@ export declare enum JsmChannelsPlanNodeType {
136961
137324
  export declare type JsmChannelsPreviewModeConfiguration = {
136962
137325
  __typename?: 'JsmChannelsPreviewModeConfiguration';
136963
137326
  enabled: Scalars['Boolean']['output'];
137327
+ id?: Maybe<Scalars['ID']['output']>;
136964
137328
  };
136965
137329
  export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
136966
137330
  export declare type JsmChannelsProjectQueryFilter = {
@@ -145291,10 +145655,21 @@ export declare type MediaFileAbuseClassification = {
145291
145655
  classification?: Maybe<Scalars['String']['output']>;
145292
145656
  confidence?: Maybe<Scalars['String']['output']>;
145293
145657
  };
145658
+ export declare type MediaFileArtifact = {
145659
+ __typename?: 'MediaFileArtifact';
145660
+ cdnUrl?: Maybe<Scalars['String']['output']>;
145661
+ createdAt?: Maybe<Scalars['Long']['output']>;
145662
+ mimeType?: Maybe<Scalars['String']['output']>;
145663
+ name: Scalars['String']['output'];
145664
+ processingStatus?: Maybe<Scalars['String']['output']>;
145665
+ size?: Maybe<Scalars['Long']['output']>;
145666
+ url?: Maybe<Scalars['String']['output']>;
145667
+ };
145294
145668
  export declare type MediaFileDetails = {
145295
145669
  __typename?: 'MediaFileDetails';
145296
145670
  abuseClassification?: Maybe<MediaFileAbuseClassification>;
145297
145671
  artifacts?: Maybe<Scalars['JSONObject']['output']>;
145672
+ artifactsList?: Maybe<Array<MediaFileArtifact>>;
145298
145673
  createdAt?: Maybe<Scalars['Long']['output']>;
145299
145674
  failReason?: Maybe<Scalars['String']['output']>;
145300
145675
  mediaMetadata?: Maybe<MediaFileMetadata>;
@@ -145309,6 +145684,9 @@ export declare type MediaFileDetails = {
145309
145684
  export declare type MediaFileDetailsArtifactsArgs = {
145310
145685
  types?: InputMaybe<Array<Scalars['String']['input']>>;
145311
145686
  };
145687
+ export declare type MediaFileDetailsArtifactsListArgs = {
145688
+ types?: InputMaybe<Array<Scalars['String']['input']>>;
145689
+ };
145312
145690
  export declare type MediaFileMetadata = {
145313
145691
  __typename?: 'MediaFileMetadata';
145314
145692
  duration?: Maybe<Scalars['Float']['output']>;
@@ -145520,7 +145898,6 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
145520
145898
  success: Scalars['Boolean']['output'];
145521
145899
  };
145522
145900
  export declare type MercuryArchiveOrganizationInput = {
145523
- cloudId?: InputMaybe<Scalars['ID']['input']>;
145524
145901
  comment?: InputMaybe<Scalars['String']['input']>;
145525
145902
  id: Scalars['ID']['input'];
145526
145903
  };
@@ -146631,6 +147008,13 @@ export declare type MercuryCreateThreadedCommentPayload = Payload & {
146631
147008
  errors?: Maybe<Array<MutationError>>;
146632
147009
  success: Scalars['Boolean']['output'];
146633
147010
  };
147011
+ export declare type MercuryCreateViewInput = {
147012
+ cloudId: Scalars['ID']['input'];
147013
+ entityType: Scalars['String']['input'];
147014
+ name: Scalars['String']['input'];
147015
+ owner?: InputMaybe<Scalars['ID']['input']>;
147016
+ settings: MercuryViewSettingsInput;
147017
+ };
146634
147018
  export declare type MercuryCurrency = {
146635
147019
  __typename?: 'MercuryCurrency';
146636
147020
  code?: Maybe<Scalars['String']['output']>;
@@ -147107,6 +147491,15 @@ export declare type MercuryDeleteThreadedCommentPayload = Payload & {
147107
147491
  errors?: Maybe<Array<MutationError>>;
147108
147492
  success: Scalars['Boolean']['output'];
147109
147493
  };
147494
+ export declare type MercuryDeleteViewInput = {
147495
+ id: Scalars['ID']['input'];
147496
+ };
147497
+ export declare type MercuryDeleteViewPayload = Payload & {
147498
+ __typename?: 'MercuryDeleteViewPayload';
147499
+ errors?: Maybe<Array<MutationError>>;
147500
+ id: Scalars['ID']['output'];
147501
+ success: Scalars['Boolean']['output'];
147502
+ };
147110
147503
  export declare type MercuryDismissInsightInput = {
147111
147504
  dismissalType: MercuryDismissalType;
147112
147505
  focusAreaId: Scalars['ID']['input'];
@@ -150003,6 +150396,7 @@ export declare enum MercuryPermission {
150003
150396
  ExportFocusArea = "EXPORT_FOCUS_AREA",
150004
150397
  ExportFocusAreaView = "EXPORT_FOCUS_AREA_VIEW",
150005
150398
  Manage = "MANAGE",
150399
+ RankFocusArea = "RANK_FOCUS_AREA",
150006
150400
  Read = "READ",
150007
150401
  ViewFocusAreaFund = "VIEW_FOCUS_AREA_FUND",
150008
150402
  ViewRisk = "VIEW_RISK",
@@ -150771,6 +151165,16 @@ export declare type MercuryReorderOrganizationTypesPayload = Payload & {
150771
151165
  reorderedOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
150772
151166
  success: Scalars['Boolean']['output'];
150773
151167
  };
151168
+ export declare type MercuryReorderStarredViewInput = {
151169
+ after?: InputMaybe<Scalars['ID']['input']>;
151170
+ id: Scalars['ID']['input'];
151171
+ };
151172
+ export declare type MercuryReorderStarredViewPayload = Payload & {
151173
+ __typename?: 'MercuryReorderStarredViewPayload';
151174
+ errors?: Maybe<Array<MutationError>>;
151175
+ starredViews?: Maybe<Array<MercuryView>>;
151176
+ success: Scalars['Boolean']['output'];
151177
+ };
150774
151178
  export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
150775
151179
  __typename?: 'MercuryRequestFundsChange';
150776
151180
  amount: Scalars['BigDecimal']['output'];
@@ -151330,6 +151734,15 @@ export declare type MercuryStarOrganizationViewPayload = Payload & {
151330
151734
  errors?: Maybe<Array<MutationError>>;
151331
151735
  success: Scalars['Boolean']['output'];
151332
151736
  };
151737
+ export declare type MercuryStarViewInput = {
151738
+ id: Scalars['ID']['input'];
151739
+ };
151740
+ export declare type MercuryStarViewPayload = Payload & {
151741
+ __typename?: 'MercuryStarViewPayload';
151742
+ errors?: Maybe<Array<MutationError>>;
151743
+ starredItem?: Maybe<MercuryView>;
151744
+ success: Scalars['Boolean']['output'];
151745
+ };
151333
151746
  export declare enum MercuryStatusColor {
151334
151747
  Blue = "BLUE",
151335
151748
  Gray = "GRAY",
@@ -151954,7 +152367,6 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
151954
152367
  success: Scalars['Boolean']['output'];
151955
152368
  };
151956
152369
  export declare type MercuryUnarchiveOrganizationInput = {
151957
- cloudId?: InputMaybe<Scalars['ID']['input']>;
151958
152370
  comment?: InputMaybe<Scalars['String']['input']>;
151959
152371
  id: Scalars['ID']['input'];
151960
152372
  };
@@ -152047,6 +152459,15 @@ export declare type MercuryUnsetBaselinePayload = Payload & {
152047
152459
  success: Scalars['Boolean']['output'];
152048
152460
  unsetBaseline?: Maybe<MercuryBaselineDetails>;
152049
152461
  };
152462
+ export declare type MercuryUnstarViewInput = {
152463
+ id: Scalars['ID']['input'];
152464
+ };
152465
+ export declare type MercuryUnstarViewPayload = Payload & {
152466
+ __typename?: 'MercuryUnstarViewPayload';
152467
+ errors?: Maybe<Array<MutationError>>;
152468
+ success: Scalars['Boolean']['output'];
152469
+ unstarredItem?: Maybe<MercuryView>;
152470
+ };
152050
152471
  export declare type MercuryUpdateActiveCurrencyInput = {
152051
152472
  cloudId?: InputMaybe<Scalars['ID']['input']>;
152052
152473
  currencyCode: Scalars['String']['input'];
@@ -152613,6 +153034,18 @@ export declare type MercuryUpdateThreadedCommentPayload = Payload & {
152613
153034
  success: Scalars['Boolean']['output'];
152614
153035
  updatedComment?: Maybe<MercuryThreadedComment>;
152615
153036
  };
153037
+ export declare type MercuryUpdateViewNameInput = {
153038
+ id: Scalars['ID']['input'];
153039
+ name: Scalars['String']['input'];
153040
+ };
153041
+ export declare type MercuryUpdateViewOwnerInput = {
153042
+ id: Scalars['ID']['input'];
153043
+ ownerId: Scalars['String']['input'];
153044
+ };
153045
+ export declare type MercuryUpdateViewSettingsInput = {
153046
+ id: Scalars['ID']['input'];
153047
+ settings: MercuryViewSettingsInput;
153048
+ };
152616
153049
  export declare type MercuryUpdatedField = {
152617
153050
  __typename?: 'MercuryUpdatedField';
152618
153051
  field?: Maybe<Scalars['String']['output']>;
@@ -152625,6 +153058,12 @@ export declare type MercuryUpdatedField = {
152625
153058
  oldString?: Maybe<Scalars['String']['output']>;
152626
153059
  oldValue?: Maybe<Scalars['String']['output']>;
152627
153060
  };
153061
+ export declare type MercuryUpsertViewPayload = Payload & {
153062
+ __typename?: 'MercuryUpsertViewPayload';
153063
+ errors?: Maybe<Array<MutationError>>;
153064
+ success: Scalars['Boolean']['output'];
153065
+ view?: Maybe<MercuryView>;
153066
+ };
152628
153067
  export declare type MercuryUserConnection = {
152629
153068
  __typename?: 'MercuryUserConnection';
152630
153069
  edges?: Maybe<Array<Maybe<MercuryUserEdge>>>;
@@ -152647,6 +153086,46 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
152647
153086
  success: Scalars['Boolean']['output'];
152648
153087
  validation?: Maybe<MercuryFocusAreaRankingValidation>;
152649
153088
  };
153089
+ export declare type MercuryView = Node & {
153090
+ __typename?: 'MercuryView';
153091
+ createdBy?: Maybe<User>;
153092
+ createdDate?: Maybe<Scalars['DateTime']['output']>;
153093
+ entityType: Scalars['String']['output'];
153094
+ id: Scalars['ID']['output'];
153095
+ isStarred: Scalars['Boolean']['output'];
153096
+ name: Scalars['String']['output'];
153097
+ owner?: Maybe<User>;
153098
+ settings?: Maybe<MercuryViewSettings>;
153099
+ updatedBy?: Maybe<User>;
153100
+ updatedDate?: Maybe<Scalars['DateTime']['output']>;
153101
+ };
153102
+ export declare type MercuryViewConnection = {
153103
+ __typename?: 'MercuryViewConnection';
153104
+ edges?: Maybe<Array<MercuryViewEdge>>;
153105
+ pageInfo: PageInfo;
153106
+ totalCount?: Maybe<Scalars['Int']['output']>;
153107
+ };
153108
+ export declare type MercuryViewEdge = {
153109
+ __typename?: 'MercuryViewEdge';
153110
+ cursor: Scalars['String']['output'];
153111
+ node?: Maybe<MercuryView>;
153112
+ };
153113
+ export declare type MercuryViewSettingEntry = {
153114
+ __typename?: 'MercuryViewSettingEntry';
153115
+ key: Scalars['String']['output'];
153116
+ value: Scalars['String']['output'];
153117
+ };
153118
+ export declare type MercuryViewSettingEntryInput = {
153119
+ key: Scalars['String']['input'];
153120
+ value?: InputMaybe<Scalars['String']['input']>;
153121
+ };
153122
+ export declare type MercuryViewSettings = {
153123
+ __typename?: 'MercuryViewSettings';
153124
+ values?: Maybe<Array<MercuryViewSettingEntry>>;
153125
+ };
153126
+ export declare type MercuryViewSettingsInput = {
153127
+ values: Array<MercuryViewSettingEntryInput>;
153128
+ };
152650
153129
  export declare enum MercuryViewType {
152651
153130
  HierarchyView = "HIERARCHY_VIEW",
152652
153131
  RankingView = "RANKING_VIEW"
@@ -153048,6 +153527,7 @@ export declare type Mutation = {
153048
153527
  agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
153049
153528
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
153050
153529
  agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
153530
+ agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
153051
153531
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
153052
153532
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
153053
153533
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
@@ -153890,13 +154370,21 @@ export declare type Mutation = {
153890
154370
  mercury?: Maybe<MercuryMutationApi>;
153891
154371
  mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
153892
154372
  mercury_comments?: Maybe<MercuryCommentMutationApi>;
154373
+ mercury_createView?: Maybe<MercuryUpsertViewPayload>;
154374
+ mercury_deleteView?: Maybe<MercuryDeleteViewPayload>;
153893
154375
  mercury_funds?: Maybe<MercuryFundsMutationApi>;
153894
154376
  mercury_insights?: Maybe<MercuryInsightsMutationApi>;
153895
154377
  mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
153896
154378
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
154379
+ mercury_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
153897
154380
  mercury_risks?: Maybe<MercuryRisksMutationApi>;
154381
+ mercury_starView?: Maybe<MercuryStarViewPayload>;
153898
154382
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
153899
154383
  mercury_tags?: Maybe<MercuryTagsMutationApi>;
154384
+ mercury_unstarView?: Maybe<MercuryUnstarViewPayload>;
154385
+ mercury_updateViewName?: Maybe<MercuryUpsertViewPayload>;
154386
+ mercury_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
154387
+ mercury_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
153900
154388
  migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
153901
154389
  moveBlog?: Maybe<MoveBlogPayload>;
153902
154390
  movePageAfter?: Maybe<MovePagePayload>;
@@ -154611,6 +155099,9 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
154611
155099
  export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
154612
155100
  input: AgentWorkspaceStartBulkImportInput;
154613
155101
  };
155102
+ export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
155103
+ input: AgentWorkspaceStartGenerateRoutingTableInput;
155104
+ };
154614
155105
  export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
154615
155106
  input: AgentWorkspaceUpdateRoutingConfigInput;
154616
155107
  };
@@ -157574,6 +158065,30 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
157574
158065
  featureKey: Scalars['String']['input'];
157575
158066
  pluginKey: Scalars['String']['input'];
157576
158067
  };
158068
+ export declare type MutationMercury_CreateViewArgs = {
158069
+ input: MercuryCreateViewInput;
158070
+ };
158071
+ export declare type MutationMercury_DeleteViewArgs = {
158072
+ input: MercuryDeleteViewInput;
158073
+ };
158074
+ export declare type MutationMercury_ReorderStarredViewArgs = {
158075
+ input: MercuryReorderStarredViewInput;
158076
+ };
158077
+ export declare type MutationMercury_StarViewArgs = {
158078
+ input: MercuryStarViewInput;
158079
+ };
158080
+ export declare type MutationMercury_UnstarViewArgs = {
158081
+ input: MercuryUnstarViewInput;
158082
+ };
158083
+ export declare type MutationMercury_UpdateViewNameArgs = {
158084
+ input: MercuryUpdateViewNameInput;
158085
+ };
158086
+ export declare type MutationMercury_UpdateViewOwnerArgs = {
158087
+ input: MercuryUpdateViewOwnerInput;
158088
+ };
158089
+ export declare type MutationMercury_UpdateViewSettingsArgs = {
158090
+ input: MercuryUpdateViewSettingsInput;
158091
+ };
157577
158092
  export declare type MutationMigrateSpaceShortcutsArgs = {
157578
158093
  shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
157579
158094
  spaceId: Scalars['ID']['input'];
@@ -161779,6 +162294,7 @@ export declare type Query = {
161779
162294
  admin_permissions?: Maybe<Array<AdminPermission>>;
161780
162295
  admin_scimRule?: Maybe<AdminScimRule>;
161781
162296
  admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
162297
+ admin_test?: Maybe<AdminTest>;
161782
162298
  admin_tokens?: Maybe<AdminTokenConnection>;
161783
162299
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
161784
162300
  admin_unitProfile?: Maybe<AdminUnit>;
@@ -161857,6 +162373,7 @@ export declare type Query = {
161857
162373
  agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
161858
162374
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
161859
162375
  agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
162376
+ agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
161860
162377
  agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
161861
162378
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
161862
162379
  agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
@@ -161864,11 +162381,13 @@ export declare type Query = {
161864
162381
  agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
161865
162382
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
161866
162383
  agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
162384
+ agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
161867
162385
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
161868
162386
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
161869
162387
  agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
161870
162388
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
161871
162389
  agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
162390
+ agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceSkillCategoryConnection>;
161872
162391
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
161873
162392
  agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
161874
162393
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
@@ -161882,6 +162401,7 @@ export declare type Query = {
161882
162401
  aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
161883
162402
  aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
161884
162403
  aiops_echo?: Maybe<Scalars['String']['output']>;
162404
+ aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
161885
162405
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
161886
162406
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
161887
162407
  aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
@@ -161987,6 +162507,7 @@ export declare type Query = {
161987
162507
  assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
161988
162508
  assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
161989
162509
  assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
162510
+ assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
161990
162511
  assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
161991
162512
  assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
161992
162513
  assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
@@ -161999,6 +162520,7 @@ export declare type Query = {
161999
162520
  assetsVertical_verticalRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentConnection>;
162000
162521
  assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
162001
162522
  assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
162523
+ assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
162002
162524
  assets_bundle?: Maybe<AssetsBundleResult>;
162003
162525
  assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
162004
162526
  assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
@@ -162358,6 +162880,7 @@ export declare type Query = {
162358
162880
  csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
162359
162881
  csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
162360
162882
  csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
162883
+ csmAi_getAvailableKnowledgeSources?: Maybe<CsmAiAvailableKnowledgeSourcesResult>;
162361
162884
  csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
162362
162885
  csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
162363
162886
  csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
@@ -162756,6 +163279,9 @@ export declare type Query = {
162756
163279
  mercury_risks?: Maybe<MercuryRisksQueryApi>;
162757
163280
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
162758
163281
  mercury_tags?: Maybe<MercuryTagsQueryApi>;
163282
+ mercury_view?: Maybe<MercuryView>;
163283
+ mercury_views?: Maybe<Array<Maybe<MercuryView>>>;
163284
+ mercury_viewsSearch?: Maybe<MercuryViewConnection>;
162759
163285
  migration: MigrationQuery;
162760
163286
  migrationCatalogue: MigrationCatalogueQuery;
162761
163287
  migrationMediaSession?: Maybe<ContentMediaSession>;
@@ -163730,6 +164256,15 @@ export declare type QueryAgentWorkspace_CapacityArgs = {
163730
164256
  export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
163731
164257
  input: AgentWorkspaceCapacityInput;
163732
164258
  };
164259
+ export declare type QueryAgentWorkspace_CategorySkillsInProjectArgs = {
164260
+ after?: InputMaybe<Scalars['String']['input']>;
164261
+ agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
164262
+ categoryId: Scalars['ID']['input'];
164263
+ first?: InputMaybe<Scalars['Int']['input']>;
164264
+ projectId: Scalars['ID']['input'];
164265
+ skillsQuery?: InputMaybe<Scalars['String']['input']>;
164266
+ teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
164267
+ };
163733
164268
  export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
163734
164269
  cloudId: Scalars['ID']['input'];
163735
164270
  days?: InputMaybe<Scalars['Int']['input']>;
@@ -163760,6 +164295,11 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
163760
164295
  cloudId: Scalars['ID']['input'];
163761
164296
  projectKey: Scalars['String']['input'];
163762
164297
  };
164298
+ export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
164299
+ cloudId: Scalars['ID']['input'];
164300
+ generationId: Scalars['ID']['input'];
164301
+ projectKey: Scalars['String']['input'];
164302
+ };
163763
164303
  export declare type QueryAgentWorkspace_ScheduleArgs = {
163764
164304
  cloudId: Scalars['ID']['input'];
163765
164305
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -163784,9 +164324,19 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
163784
164324
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
163785
164325
  };
163786
164326
  export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
163787
- after?: InputMaybe<Scalars['String']['input']>;
164327
+ categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
163788
164328
  cloudId: Scalars['ID']['input'];
164329
+ query?: InputMaybe<Scalars['String']['input']>;
164330
+ };
164331
+ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
164332
+ after?: InputMaybe<Scalars['String']['input']>;
164333
+ agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
164334
+ categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
163789
164335
  first?: InputMaybe<Scalars['Int']['input']>;
164336
+ limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
164337
+ projectId: Scalars['ID']['input'];
164338
+ skillsQuery?: InputMaybe<Scalars['String']['input']>;
164339
+ teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
163790
164340
  };
163791
164341
  export declare type QueryAgentWorkspace_SkillsArgs = {
163792
164342
  after?: InputMaybe<Scalars['String']['input']>;
@@ -163848,6 +164398,10 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
163848
164398
  export declare type QueryAiops_EchoArgs = {
163849
164399
  input?: InputMaybe<Scalars['String']['input']>;
163850
164400
  };
164401
+ export declare type QueryAiops_IncidentRelatedAlertsArgs = {
164402
+ cloudId: Scalars['ID']['input'];
164403
+ filter: AiOpsIncidentRelatedAlertsInput;
164404
+ };
163851
164405
  export declare type QueryAiops_IncidentSuggestionArgs = {
163852
164406
  cloudId: Scalars['ID']['input'];
163853
164407
  issueKey: Scalars['String']['input'];
@@ -164425,6 +164979,9 @@ export declare type QueryAssetsVertical_ModelItamAttributesArgs = {
164425
164979
  cloudId: Scalars['ID']['input'];
164426
164980
  workspaceId: Scalars['ID']['input'];
164427
164981
  };
164982
+ export declare type QueryAssetsVertical_ModelObjectTypesArgs = {
164983
+ cloudId: Scalars['ID']['input'];
164984
+ };
164428
164985
  export declare type QueryAssetsVertical_ModelObjectsArgs = {
164429
164986
  cloudId: Scalars['ID']['input'];
164430
164987
  input: AssetsVerticalModelObjectsInput;
@@ -164482,6 +165039,11 @@ export declare type QueryAssetsVertical_VerticalTemplateArgs = {
164482
165039
  type: AssetsVerticalVerticalType;
164483
165040
  version?: InputMaybe<Scalars['String']['input']>;
164484
165041
  };
165042
+ export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
165043
+ cloudId: Scalars['ID']['input'];
165044
+ type: AssetsVerticalVerticalType;
165045
+ version?: InputMaybe<Scalars['String']['input']>;
165046
+ };
164485
165047
  export declare type QueryAssets_BundleArgs = {
164486
165048
  cloudId: Scalars['ID']['input'];
164487
165049
  type: AssetsBundleType;
@@ -166109,6 +166671,10 @@ export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
166109
166671
  export declare type QueryCsmAi_GetAvailableByodArgs = {
166110
166672
  helpCenterAri: Scalars['ID']['input'];
166111
166673
  };
166674
+ export declare type QueryCsmAi_GetAvailableKnowledgeSourcesArgs = {
166675
+ csmAiAgentId: Scalars['ID']['input'];
166676
+ helpCenterAri: Scalars['ID']['input'];
166677
+ };
166112
166678
  export declare type QueryCsmAi_GetSupportWidgetArgs = {
166113
166679
  helpCenterAri: Scalars['ID']['input'];
166114
166680
  };
@@ -167579,6 +168145,18 @@ export declare type QueryMedia_ItemsByDescriptorArgs = {
167579
168145
  cloudId: Scalars['String']['input'];
167580
168146
  input: MediaItemsInput;
167581
168147
  };
168148
+ export declare type QueryMercury_ViewArgs = {
168149
+ id: Scalars['ID']['input'];
168150
+ };
168151
+ export declare type QueryMercury_ViewsArgs = {
168152
+ ids: Array<Scalars['ID']['input']>;
168153
+ };
168154
+ export declare type QueryMercury_ViewsSearchArgs = {
168155
+ after?: InputMaybe<Scalars['String']['input']>;
168156
+ cloudId: Scalars['ID']['input'];
168157
+ first?: InputMaybe<Scalars['Int']['input']>;
168158
+ q?: InputMaybe<Scalars['String']['input']>;
168159
+ };
167582
168160
  export declare type QueryMyMarketplaceAppsArgs = {
167583
168161
  after?: InputMaybe<Scalars['String']['input']>;
167584
168162
  filter?: InputMaybe<MarketplaceAppsFilter>;
@@ -193197,6 +193775,7 @@ export declare type SpcsScanBootstrap = {
193197
193775
  region?: Maybe<Scalars['String']['output']>;
193198
193776
  s3Path?: Maybe<Scalars['String']['output']>;
193199
193777
  scanId: Scalars['ID']['output'];
193778
+ scope?: Maybe<Scalars['String']['output']>;
193200
193779
  status?: Maybe<Scalars['String']['output']>;
193201
193780
  workspaceAris: Array<Scalars['String']['output']>;
193202
193781
  workspaces?: Maybe<Array<SpcsBootstrapWorkspace>>;
@@ -193687,6 +194266,7 @@ export declare type SpfCreateViewInput = {
193687
194266
  name: Scalars['String']['input'];
193688
194267
  ownerId?: InputMaybe<Scalars['String']['input']>;
193689
194268
  settings: SpfViewSettingsInput;
194269
+ starred?: InputMaybe<Scalars['Boolean']['input']>;
193690
194270
  };
193691
194271
  export declare type SpfDeleteAskCommentInput = {
193692
194272
  id: Scalars['ID']['input'];
@@ -194528,6 +195108,7 @@ export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
194528
195108
  };
194529
195109
  export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
194530
195110
  __typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
195111
+ alreadySubscribed: Scalars['Boolean']['output'];
194531
195112
  email: Scalars['String']['output'];
194532
195113
  error?: Maybe<Scalars['String']['output']>;
194533
195114
  subscriberId?: Maybe<Scalars['String']['output']>;
@@ -197045,6 +197626,17 @@ export declare type TeamHierarchyErrors = {
197045
197626
  description?: Maybe<Scalars['String']['output']>;
197046
197627
  reason: TeamHierarchyErrorCode;
197047
197628
  };
197629
+ export declare type TeamLinkExternalTeamInput = {
197630
+ externalReference: TeamExternalReferenceInput;
197631
+ scopeId: Scalars['ID']['input'];
197632
+ teamId: Scalars['ID']['input'];
197633
+ };
197634
+ export declare type TeamLinkExternalTeamPayload = Payload & {
197635
+ __typename?: 'TeamLinkExternalTeamPayload';
197636
+ errors?: Maybe<Array<MutationError>>;
197637
+ success: Scalars['Boolean']['output'];
197638
+ teamId?: Maybe<Scalars['ID']['output']>;
197639
+ };
197048
197640
  export declare type TeamMember = {
197049
197641
  __typename?: 'TeamMember';
197050
197642
  member?: Maybe<User>;
@@ -197138,6 +197730,7 @@ export declare type TeamMutation = {
197138
197730
  deleteTeamType?: Maybe<TeamType>;
197139
197731
  linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
197140
197732
  linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
197733
+ linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
197141
197734
  removeChild?: Maybe<TeamV2>;
197142
197735
  removeParent?: Maybe<TeamV2>;
197143
197736
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
@@ -197213,6 +197806,9 @@ export declare type TeamMutationLinkCustomFieldToValueArgs = {
197213
197806
  customFieldValue: Scalars['String']['input'];
197214
197807
  teamId: Scalars['ID']['input'];
197215
197808
  };
197809
+ export declare type TeamMutationLinkExternalTeamArgs = {
197810
+ input: TeamLinkExternalTeamInput;
197811
+ };
197216
197812
  export declare type TeamMutationRemoveChildArgs = {
197217
197813
  childId: Scalars['ID']['input'];
197218
197814
  siteId: Scalars['ID']['input'];
@@ -204430,6 +205026,17 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
204430
205026
  errors?: Maybe<Array<MutationError>>;
204431
205027
  success: Scalars['Boolean']['output'];
204432
205028
  };
205029
+ export declare type TrelloGenerateCardCoverWithAiInput = {
205030
+ cardId: Scalars['ID']['input'];
205031
+ theme?: InputMaybe<Scalars['String']['input']>;
205032
+ userInput: Scalars['String']['input'];
205033
+ };
205034
+ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
205035
+ __typename?: 'TrelloGenerateCardCoverWithAiPayload';
205036
+ card?: Maybe<TrelloBaseCard>;
205037
+ errors?: Maybe<Array<MutationError>>;
205038
+ success: Scalars['Boolean']['output'];
205039
+ };
204433
205040
  export declare type TrelloGenerateCheckItemsForCardInput = {
204434
205041
  cardId: Scalars['ID']['input'];
204435
205042
  checklistTarget: TrelloChecklistTarget;
@@ -204987,10 +205594,12 @@ export declare type TrelloMemberBoardEdge = {
204987
205594
  node?: Maybe<TrelloBoard>;
204988
205595
  };
204989
205596
  export declare type TrelloMemberBoardFilter = {
204990
- filterValue?: InputMaybe<TrelloMemberBoardFilterValue>;
205597
+ filterValues?: InputMaybe<Array<TrelloMemberBoardFilterValue>>;
204991
205598
  };
204992
205599
  export declare enum TrelloMemberBoardFilterValue {
204993
- All = "ALL"
205600
+ All = "ALL",
205601
+ Closed = "CLOSED",
205602
+ Open = "OPEN"
204994
205603
  }
204995
205604
  export declare type TrelloMemberBoardStarConnection = {
204996
205605
  __typename?: 'TrelloMemberBoardStarConnection';
@@ -205322,6 +205931,7 @@ export declare type TrelloMutationApi = {
205322
205931
  enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
205323
205932
  endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
205324
205933
  generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
205934
+ generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
205325
205935
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
205326
205936
  hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
205327
205937
  hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
@@ -205537,6 +206147,9 @@ export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
205537
206147
  export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
205538
206148
  input: TrelloGenerateBoardBackgroundWithAiInput;
205539
206149
  };
206150
+ export declare type TrelloMutationApiGenerateCardCoverWithAiArgs = {
206151
+ input: TrelloGenerateCardCoverWithAiInput;
206152
+ };
205540
206153
  export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
205541
206154
  input: TrelloGenerateCheckItemsForCardInput;
205542
206155
  };
@@ -207180,6 +207793,9 @@ export declare type TrelloSortListCardsPayload = Payload & {
207180
207793
  listId: Scalars['ID']['output'];
207181
207794
  success: Scalars['Boolean']['output'];
207182
207795
  };
207796
+ export declare type TrelloStatefulSessionUpdated = {
207797
+ sessionId: Scalars['ID']['output'];
207798
+ };
207183
207799
  export declare type TrelloSticker = {
207184
207800
  __typename?: 'TrelloSticker';
207185
207801
  image?: Maybe<Scalars['String']['output']>;
@@ -207215,6 +207831,7 @@ export declare type TrelloSubscriptionApi = {
207215
207831
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
207216
207832
  onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
207217
207833
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
207834
+ onStatefulSessionUpdated?: Maybe<TrelloStatefulSessionUpdated>;
207218
207835
  onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJobUpdated>;
207219
207836
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
207220
207837
  };
@@ -207242,6 +207859,10 @@ export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
207242
207859
  id: Scalars['ID']['input'];
207243
207860
  noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
207244
207861
  };
207862
+ export declare type TrelloSubscriptionApiOnStatefulSessionUpdatedArgs = {
207863
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
207864
+ sessionId: Scalars['ID']['input'];
207865
+ };
207245
207866
  export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
207246
207867
  id: Scalars['ID']['input'];
207247
207868
  };
@@ -207898,6 +208519,25 @@ export declare type TrelloUserUnrestrictedAccessSummary = {
207898
208519
  topWorkspaces?: Maybe<Array<TrelloWorkspaceAccessSummary>>;
207899
208520
  totalWorkspaces?: Maybe<Scalars['Int']['output']>;
207900
208521
  };
208522
+ export declare type TrelloVoiceCaptureCardUpdated = {
208523
+ __typename?: 'TrelloVoiceCaptureCardUpdated';
208524
+ due?: Maybe<Scalars['Date']['output']>;
208525
+ name?: Maybe<Scalars['String']['output']>;
208526
+ objectId: Scalars['ID']['output'];
208527
+ };
208528
+ export declare type TrelloVoiceCaptureSessionCardConnectionUpdated = {
208529
+ __typename?: 'TrelloVoiceCaptureSessionCardConnectionUpdated';
208530
+ edges?: Maybe<Array<TrelloVoiceCaptureSessionCardEdgeUpdated>>;
208531
+ };
208532
+ export declare type TrelloVoiceCaptureSessionCardEdgeUpdated = {
208533
+ __typename?: 'TrelloVoiceCaptureSessionCardEdgeUpdated';
208534
+ node?: Maybe<TrelloVoiceCaptureCardUpdated>;
208535
+ };
208536
+ export declare type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
208537
+ __typename?: 'TrelloVoiceCaptureSessionUpdated';
208538
+ cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
208539
+ sessionId: Scalars['ID']['output'];
208540
+ };
207901
208541
  export declare type TrelloWatchCardInput = {
207902
208542
  cardId: Scalars['ID']['input'];
207903
208543
  };
@@ -211642,6 +212282,7 @@ export declare type WebTriggerUrlInput = {
211642
212282
  appId: Scalars['ID']['input'];
211643
212283
  contextId: Scalars['ID']['input'];
211644
212284
  envId: Scalars['ID']['input'];
212285
+ secretKey?: InputMaybe<Scalars['String']['input']>;
211645
212286
  triggerKey: Scalars['String']['input'];
211646
212287
  };
211647
212288
  export declare type WhiteboardFeatures = {