@forge/cli-shared 8.22.0 → 8.22.1-next.1

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'];
@@ -754,17 +824,17 @@ export declare type AvpAnalyticsLiteralValueInput = {
754
824
  };
755
825
  export declare type AvpAnalyticsMetric = {
756
826
  __typename?: 'AVPAnalyticsMetric';
757
- cloudId: Scalars['ID']['output'];
827
+ cloudId?: Maybe<Scalars['ID']['output']>;
758
828
  data?: Maybe<AvpAnalyticsMetricDataConnection>;
759
829
  defaultVisualization?: Maybe<AvpAnalyticsVisualizationConfig>;
760
830
  definition?: Maybe<AvpAnalyticsMetricDefinition>;
761
831
  description?: Maybe<Scalars['String']['output']>;
762
832
  errors?: Maybe<Array<AvpAnalyticsMetricError>>;
763
- id: Scalars['ID']['output'];
833
+ id?: Maybe<Scalars['ID']['output']>;
764
834
  metadata?: Maybe<AvpAnalyticsMetricMetadata>;
765
835
  name?: Maybe<Scalars['String']['output']>;
766
- status: AvpAnalyticsMetricStatus;
767
- version: Scalars['String']['output'];
836
+ status?: Maybe<AvpAnalyticsMetricStatus>;
837
+ version?: Maybe<Scalars['String']['output']>;
768
838
  };
769
839
  export declare type AvpAnalyticsMetricDataArgs = {
770
840
  paginationInput: AvpAnalyticsPaginationInput;
@@ -826,20 +896,45 @@ export declare type AvpAnalyticsMetricEdge = {
826
896
  };
827
897
  export declare type AvpAnalyticsMetricError = {
828
898
  __typename?: 'AVPAnalyticsMetricError';
829
- message: Scalars['String']['output'];
899
+ field?: Maybe<AvpAnalyticsMetricErrorField>;
900
+ message?: Maybe<Scalars['String']['output']>;
830
901
  type?: Maybe<AvpAnalyticsMetricErrorType>;
831
902
  };
903
+ export declare enum AvpAnalyticsMetricErrorField {
904
+ AggregationColumn = "AGGREGATION_COLUMN",
905
+ AggregationType = "AGGREGATION_TYPE",
906
+ ChartType = "CHART_TYPE",
907
+ CloudId = "CLOUD_ID",
908
+ ColumnConfiguration = "COLUMN_CONFIGURATION",
909
+ GroupBy = "GROUP_BY",
910
+ MetricDefinition = "METRIC_DEFINITION",
911
+ MetricFilter = "METRIC_FILTER",
912
+ MetricName = "METRIC_NAME",
913
+ MetricVisualization = "METRIC_VISUALIZATION",
914
+ Model = "MODEL",
915
+ SegmentBy = "SEGMENT_BY",
916
+ VisualizationFilter = "VISUALIZATION_FILTER"
917
+ }
832
918
  export declare enum AvpAnalyticsMetricErrorType {
833
- InvalidAggregationColumn = "INVALID_AGGREGATION_COLUMN",
834
- InvalidAggregationType = "INVALID_AGGREGATION_TYPE",
835
- InvalidChartType = "INVALID_CHART_TYPE",
836
- InvalidCloudId = "INVALID_CLOUD_ID",
837
- InvalidFilter = "INVALID_FILTER",
838
- InvalidGroupBy = "INVALID_GROUP_BY",
839
- InvalidMetricName = "INVALID_METRIC_NAME",
840
- InvalidModel = "INVALID_MODEL",
841
- InvalidSegmentBy = "INVALID_SEGMENT_BY",
842
- InvalidVisualizationColumns = "INVALID_VISUALIZATION_COLUMNS"
919
+ AggregationColumnNotAllowed = "AGGREGATION_COLUMN_NOT_ALLOWED",
920
+ AggregationColumnRequired = "AGGREGATION_COLUMN_REQUIRED",
921
+ AggregationTypeChartConfigMissing = "AGGREGATION_TYPE_CHART_CONFIG_MISSING",
922
+ AggregationTypeChartTypeMismatch = "AGGREGATION_TYPE_CHART_TYPE_MISMATCH",
923
+ AggregationTypeRequired = "AGGREGATION_TYPE_REQUIRED",
924
+ ChartTypeNotSupported = "CHART_TYPE_NOT_SUPPORTED",
925
+ ChartTypeRequired = "CHART_TYPE_REQUIRED",
926
+ CloudIdRequired = "CLOUD_ID_REQUIRED",
927
+ ColumnConfigurationDuplicate = "COLUMN_CONFIGURATION_DUPLICATE",
928
+ GroupByRequired = "GROUP_BY_REQUIRED",
929
+ MetricDefinitionRequired = "METRIC_DEFINITION_REQUIRED",
930
+ MetricFilterLimitExceeded = "METRIC_FILTER_LIMIT_EXCEEDED",
931
+ MetricNameRequired = "METRIC_NAME_REQUIRED",
932
+ MetricVisualizationRequired = "METRIC_VISUALIZATION_REQUIRED",
933
+ ModelRequired = "MODEL_REQUIRED",
934
+ SegmentByDuplicateColumn = "SEGMENT_BY_DUPLICATE_COLUMN",
935
+ SegmentByNotSupported = "SEGMENT_BY_NOT_SUPPORTED",
936
+ SegmentByTooManyColumns = "SEGMENT_BY_TOO_MANY_COLUMNS",
937
+ VisualizationFilterLimitExceeded = "VISUALIZATION_FILTER_LIMIT_EXCEEDED"
843
938
  }
844
939
  export declare type AvpAnalyticsMetricFilter = {
845
940
  __typename?: 'AVPAnalyticsMetricFilter';
@@ -960,6 +1055,31 @@ export declare type AvpAnalyticsModelEdge = {
960
1055
  cursor?: Maybe<Scalars['String']['output']>;
961
1056
  node: AvpAnalyticsModel;
962
1057
  };
1058
+ export declare enum AvpAnalyticsModelErrorField {
1059
+ Column = "COLUMN",
1060
+ JoinLeft = "JOIN_LEFT",
1061
+ JoinRight = "JOIN_RIGHT",
1062
+ ModelDefinition = "MODEL_DEFINITION",
1063
+ ModelFilter = "MODEL_FILTER",
1064
+ ModelName = "MODEL_NAME"
1065
+ }
1066
+ export declare enum AvpAnalyticsModelErrorType {
1067
+ ColumnDuplicateName = "COLUMN_DUPLICATE_NAME",
1068
+ FormulaColumnCircularDependency = "FORMULA_COLUMN_CIRCULAR_DEPENDENCY",
1069
+ FormulaColumnExpressionInvalid = "FORMULA_COLUMN_EXPRESSION_INVALID",
1070
+ FormulaColumnReferenceInvalid = "FORMULA_COLUMN_REFERENCE_INVALID",
1071
+ FormulaColumnReferenceNotFound = "FORMULA_COLUMN_REFERENCE_NOT_FOUND",
1072
+ FormulaColumnReferenceTypeUnsupported = "FORMULA_COLUMN_REFERENCE_TYPE_UNSUPPORTED",
1073
+ JoinDataSourceNotFound = "JOIN_DATA_SOURCE_NOT_FOUND",
1074
+ ModelColumnsRequired = "MODEL_COLUMNS_REQUIRED",
1075
+ ModelDefinitionRequired = "MODEL_DEFINITION_REQUIRED",
1076
+ ModelFilterColumnInvalid = "MODEL_FILTER_COLUMN_INVALID",
1077
+ ModelFilterColumnNotFound = "MODEL_FILTER_COLUMN_NOT_FOUND",
1078
+ ModelNameRequired = "MODEL_NAME_REQUIRED",
1079
+ SimpleColumnDisconnectedJoin = "SIMPLE_COLUMN_DISCONNECTED_JOIN",
1080
+ SimpleColumnDuplicateSource = "SIMPLE_COLUMN_DUPLICATE_SOURCE",
1081
+ SimpleColumnSourceNotFound = "SIMPLE_COLUMN_SOURCE_NOT_FOUND"
1082
+ }
963
1083
  export declare type AvpAnalyticsModelFilter = {
964
1084
  __typename?: 'AVPAnalyticsModelFilter';
965
1085
  columnName: Scalars['String']['output'];
@@ -1523,6 +1643,7 @@ export declare type AvpDashboard = Node & {
1523
1643
  fromTemplate?: Maybe<Scalars['String']['output']>;
1524
1644
  id: Scalars['ID']['output'];
1525
1645
  isReadOnly?: Maybe<Scalars['Boolean']['output']>;
1646
+ isStarred?: Maybe<Scalars['Boolean']['output']>;
1526
1647
  isWrapper?: Maybe<Scalars['Boolean']['output']>;
1527
1648
  settings?: Maybe<AvpDashboardSettings>;
1528
1649
  status?: Maybe<AvpDashboardStatus>;
@@ -1530,6 +1651,7 @@ export declare type AvpDashboard = Node & {
1530
1651
  title?: Maybe<Scalars['String']['output']>;
1531
1652
  trashedAt?: Maybe<Scalars['String']['output']>;
1532
1653
  updatedAt?: Maybe<Scalars['String']['output']>;
1654
+ url?: Maybe<Scalars['String']['output']>;
1533
1655
  };
1534
1656
  export declare type AvpDashboardCanvasLayout = {
1535
1657
  __typename?: 'AVPDashboardCanvasLayout';
@@ -2061,12 +2183,14 @@ export declare type AvpPlatformDimension = {
2061
2183
  dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
2062
2184
  name: Scalars['String']['output'];
2063
2185
  product: Scalars['String']['output'];
2186
+ subProduct?: Maybe<Scalars['String']['output']>;
2064
2187
  };
2065
2188
  export declare type AvpPlatformDimensionInput = {
2066
2189
  datasourceLocator: AvpDatasourceLocatorInput;
2067
2190
  dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
2068
2191
  name: Scalars['String']['input'];
2069
2192
  product: Scalars['String']['input'];
2193
+ subProduct?: InputMaybe<Scalars['String']['input']>;
2070
2194
  };
2071
2195
  export declare type AvpPlatformFilter = {
2072
2196
  __typename?: 'AVPPlatformFilter';
@@ -2813,7 +2937,7 @@ export declare type ActivityObject = {
2813
2937
  subProduct?: Maybe<Scalars['String']['output']>;
2814
2938
  type: Scalars['String']['output'];
2815
2939
  };
2816
- export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
2940
+ export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | ExternalWorkItem | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
2817
2941
  export declare enum ActivityObjectType {
2818
2942
  Blogpost = "BLOGPOST",
2819
2943
  Comment = "COMMENT",
@@ -2974,6 +3098,11 @@ export declare type AdminActiveUserResponsePayload = AdminPayload & {
2974
3098
  errors?: Maybe<Array<AdminMutationError>>;
2975
3099
  success: Scalars['Boolean']['output'];
2976
3100
  };
3101
+ export declare type AdminAddConnectorPayload = AdminPayload & {
3102
+ __typename?: 'AdminAddConnectorPayload';
3103
+ errors?: Maybe<Array<AdminMutationError>>;
3104
+ success: Scalars['Boolean']['output'];
3105
+ };
2977
3106
  export declare type AdminAiPoliciesSearchInput = {
2978
3107
  resources?: InputMaybe<Array<Scalars['String']['input']>>;
2979
3108
  };
@@ -3434,6 +3563,35 @@ export declare type AdminConnectionNode = {
3434
3563
  connectedTo?: Maybe<AdminConnectedTo>;
3435
3564
  id: Scalars['ID']['output'];
3436
3565
  };
3566
+ export declare type AdminConnector = {
3567
+ __typename?: 'AdminConnector';
3568
+ datasources?: Maybe<Array<AdminDataSource>>;
3569
+ enabledForIntegrationHub?: Maybe<Scalars['Boolean']['output']>;
3570
+ enabledResourceIds?: Maybe<Array<Scalars['String']['output']>>;
3571
+ formConfiguration?: Maybe<AdminFormConfiguration>;
3572
+ type: Scalars['String']['output'];
3573
+ ugcReviewStatus: Scalars['String']['output'];
3574
+ };
3575
+ export declare type AdminConnectorConnection = {
3576
+ __typename?: 'AdminConnectorConnection';
3577
+ edges?: Maybe<Array<AdminConnectorEdge>>;
3578
+ pageInfo: PageInfo;
3579
+ };
3580
+ export declare type AdminConnectorEdge = {
3581
+ __typename?: 'AdminConnectorEdge';
3582
+ cursor: Scalars['String']['output'];
3583
+ node?: Maybe<AdminConnector>;
3584
+ };
3585
+ export declare type AdminConnectorIcon = {
3586
+ __typename?: 'AdminConnectorIcon';
3587
+ dark?: Maybe<Scalars['String']['output']>;
3588
+ light?: Maybe<Scalars['String']['output']>;
3589
+ };
3590
+ export declare type AdminConnectorPropertyInput = {
3591
+ isUpdated?: InputMaybe<Scalars['Boolean']['input']>;
3592
+ key: Scalars['String']['input'];
3593
+ value?: InputMaybe<Scalars['JSON']['input']>;
3594
+ };
3437
3595
  export declare type AdminCreateAiPolicyInput = {
3438
3596
  consented?: InputMaybe<Scalars['Boolean']['input']>;
3439
3597
  name?: InputMaybe<Scalars['String']['input']>;
@@ -3460,6 +3618,11 @@ export declare type AdminCreateInvitePolicyResponsePayload = {
3460
3618
  invitePolicy?: Maybe<AdminInvitePolicy>;
3461
3619
  success: Scalars['Boolean']['output'];
3462
3620
  };
3621
+ export declare type AdminCreateOutboundAuthServicePayload = AdminPayload & {
3622
+ __typename?: 'AdminCreateOutboundAuthServicePayload';
3623
+ errors?: Maybe<Array<AdminMutationError>>;
3624
+ success: Scalars['Boolean']['output'];
3625
+ };
3463
3626
  export declare type AdminCustomDomains = {
3464
3627
  __typename?: 'AdminCustomDomains';
3465
3628
  parent?: Maybe<AdminLimit>;
@@ -3479,6 +3642,38 @@ export declare type AdminDataResidencyFeature = {
3479
3642
  export declare type AdminDataResidencyInput = {
3480
3643
  realm: Scalars['String']['input'];
3481
3644
  };
3645
+ export declare type AdminDataSource = {
3646
+ __typename?: 'AdminDataSource';
3647
+ actionRequired: Scalars['Boolean']['output'];
3648
+ connectionId?: Maybe<Scalars['String']['output']>;
3649
+ connectorId: Scalars['ID']['output'];
3650
+ connectorName: Scalars['String']['output'];
3651
+ connectorSyncType?: Maybe<Scalars['String']['output']>;
3652
+ enabled: Scalars['Boolean']['output'];
3653
+ failureReasons?: Maybe<Array<AdminDataSourceFailureReason>>;
3654
+ healthy: Scalars['Boolean']['output'];
3655
+ orgId: Scalars['ID']['output'];
3656
+ properties: Array<AdminDataSourceProperty>;
3657
+ providerId?: Maybe<Scalars['String']['output']>;
3658
+ resourceId: Scalars['ID']['output'];
3659
+ thirdPartyAppId?: Maybe<Scalars['String']['output']>;
3660
+ workspaceName?: Maybe<Scalars['String']['output']>;
3661
+ };
3662
+ export declare type AdminDataSourceFailureReason = {
3663
+ __typename?: 'AdminDataSourceFailureReason';
3664
+ failureReasonCode: Scalars['Int']['output'];
3665
+ failureReasonMessageValues: Array<AdminDataSourceMessageValue>;
3666
+ };
3667
+ export declare type AdminDataSourceMessageValue = {
3668
+ __typename?: 'AdminDataSourceMessageValue';
3669
+ name: Scalars['String']['output'];
3670
+ value: Scalars['String']['output'];
3671
+ };
3672
+ export declare type AdminDataSourceProperty = {
3673
+ __typename?: 'AdminDataSourceProperty';
3674
+ key?: Maybe<Scalars['String']['output']>;
3675
+ value?: Maybe<Scalars['JSON']['output']>;
3676
+ };
3482
3677
  export declare type AdminDateFilterInput = {
3483
3678
  absoluteFrom?: InputMaybe<Scalars['DateTime']['input']>;
3484
3679
  absoluteTo?: InputMaybe<Scalars['DateTime']['input']>;
@@ -3586,6 +3781,43 @@ export declare type AdminFieldMapping = {
3586
3781
  field: Scalars['String']['input'];
3587
3782
  path: Scalars['String']['input'];
3588
3783
  };
3784
+ export declare type AdminFormConfiguration = {
3785
+ __typename?: 'AdminFormConfiguration';
3786
+ beforeYouBeginList?: Maybe<Array<Scalars['String']['output']>>;
3787
+ connectorDisplayName?: Maybe<Scalars['String']['output']>;
3788
+ doesFetchConnectorFormData?: Maybe<Scalars['Boolean']['output']>;
3789
+ icon?: Maybe<AdminConnectorIcon>;
3790
+ properties?: Maybe<Array<AdminFormConfigurationProperty>>;
3791
+ };
3792
+ export declare type AdminFormConfigurationProperty = {
3793
+ __typename?: 'AdminFormConfigurationProperty';
3794
+ description?: Maybe<Scalars['String']['output']>;
3795
+ fieldLabel?: Maybe<Scalars['String']['output']>;
3796
+ hideInEditView?: Maybe<Scalars['Boolean']['output']>;
3797
+ isRequired?: Maybe<Scalars['Boolean']['output']>;
3798
+ isSensitive?: Maybe<Scalars['Boolean']['output']>;
3799
+ key: Scalars['String']['output'];
3800
+ placeholder?: Maybe<Scalars['String']['output']>;
3801
+ propertyName?: Maybe<Scalars['String']['output']>;
3802
+ title?: Maybe<Scalars['String']['output']>;
3803
+ type?: Maybe<Scalars['String']['output']>;
3804
+ value?: Maybe<Scalars['JSON']['output']>;
3805
+ };
3806
+ export declare type AdminFormField = {
3807
+ __typename?: 'AdminFormField';
3808
+ key: Scalars['String']['output'];
3809
+ value?: Maybe<Scalars['JSON']['output']>;
3810
+ };
3811
+ export declare type AdminFormFieldConnection = {
3812
+ __typename?: 'AdminFormFieldConnection';
3813
+ edges?: Maybe<Array<AdminFormFieldEdge>>;
3814
+ pageInfo: PageInfo;
3815
+ };
3816
+ export declare type AdminFormFieldEdge = {
3817
+ __typename?: 'AdminFormFieldEdge';
3818
+ cursor: Scalars['String']['output'];
3819
+ node?: Maybe<AdminFormField>;
3820
+ };
3589
3821
  export declare type AdminFreezeWindowsFeature = {
3590
3822
  __typename?: 'AdminFreezeWindowsFeature';
3591
3823
  isEntitled?: Maybe<Scalars['Boolean']['output']>;
@@ -3983,6 +4215,12 @@ export declare type AdminQueryableField = {
3983
4215
  name: Scalars['String']['input'];
3984
4216
  values: Array<Scalars['String']['input']>;
3985
4217
  };
4218
+ export declare type AdminRegisterNewDataSourceIdPayload = AdminPayload & {
4219
+ __typename?: 'AdminRegisterNewDataSourceIdPayload';
4220
+ errors?: Maybe<Array<AdminMutationError>>;
4221
+ id?: Maybe<Scalars['ID']['output']>;
4222
+ success: Scalars['Boolean']['output'];
4223
+ };
3986
4224
  export declare type AdminRelationships = {
3987
4225
  __typename?: 'AdminRelationships';
3988
4226
  connections?: Maybe<Array<AdminConnectionNode>>;
@@ -4306,6 +4544,11 @@ export declare type AdminStringKeyValuePair = {
4306
4544
  key: Scalars['String']['output'];
4307
4545
  value: Scalars['String']['output'];
4308
4546
  };
4547
+ export declare type AdminTest = {
4548
+ __typename?: 'AdminTest';
4549
+ message?: Maybe<Scalars['String']['output']>;
4550
+ timestamp?: Maybe<Scalars['String']['output']>;
4551
+ };
4309
4552
  export declare enum AdminTimeSearchType {
4310
4553
  BetweenAbsolute = "BETWEEN_ABSOLUTE",
4311
4554
  BetweenRelative = "BETWEEN_RELATIVE",
@@ -6519,6 +6762,10 @@ export declare type AgentWorkspaceAgentCapacityEdge = {
6519
6762
  cursor: Scalars['String']['output'];
6520
6763
  node: AgentWorkspaceAgentCapacity;
6521
6764
  };
6765
+ export declare type AgentWorkspaceAgentRebalancingRecommendationsInput = {
6766
+ agentId: Scalars['ID']['input'];
6767
+ projectARI: Scalars['ID']['input'];
6768
+ };
6522
6769
  export declare type AgentWorkspaceAgentRecommendation = {
6523
6770
  __typename?: 'AgentWorkspaceAgentRecommendation';
6524
6771
  accountId: Scalars['ID']['output'];
@@ -6550,7 +6797,6 @@ export declare type AgentWorkspaceAppliedFilters = {
6550
6797
  scheduleIds?: Maybe<Array<Scalars['ID']['output']>>;
6551
6798
  };
6552
6799
  export declare type AgentWorkspaceArchiveSkillInput = {
6553
- cloudId: Scalars['ID']['input'];
6554
6800
  skillId: Scalars['ID']['input'];
6555
6801
  };
6556
6802
  export declare type AgentWorkspaceArchiveSkillPayload = {
@@ -6574,7 +6820,6 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
6574
6820
  success: Scalars['Boolean']['output'];
6575
6821
  };
6576
6822
  export declare type AgentWorkspaceAssignAgentsToSkillInput = {
6577
- cloudId: Scalars['ID']['input'];
6578
6823
  projectId?: InputMaybe<Scalars['ID']['input']>;
6579
6824
  skillId: Scalars['ID']['input'];
6580
6825
  userAris: Array<Scalars['ID']['input']>;
@@ -6690,6 +6935,15 @@ export declare enum AgentWorkspaceBulkImportJobStatus {
6690
6935
  ValidationInProgress = "VALIDATION_IN_PROGRESS",
6691
6936
  ValidationSuccessful = "VALIDATION_SUCCESSFUL"
6692
6937
  }
6938
+ export declare type AgentWorkspaceCancelRoutingTableGenerationInput = {
6939
+ generationId: Scalars['ID']['input'];
6940
+ projectAri: Scalars['ID']['input'];
6941
+ };
6942
+ export declare type AgentWorkspaceCancelRoutingTableGenerationPayload = {
6943
+ __typename?: 'AgentWorkspaceCancelRoutingTableGenerationPayload';
6944
+ generationId: Scalars['ID']['output'];
6945
+ status: AgentWorkspaceRoutingTableGenerationStatus;
6946
+ };
6693
6947
  export declare type AgentWorkspaceCapacityConnection = {
6694
6948
  __typename?: 'AgentWorkspaceCapacityConnection';
6695
6949
  edges: Array<AgentWorkspaceAgentCapacityEdge>;
@@ -6752,6 +7006,17 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
6752
7006
  teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
6753
7007
  teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
6754
7008
  };
7009
+ export declare type AgentWorkspaceCreateDraftedRoutingTableInput = {
7010
+ cursor?: InputMaybe<Scalars['String']['input']>;
7011
+ fieldId: Scalars['String']['input'];
7012
+ projectAri: Scalars['ID']['input'];
7013
+ };
7014
+ export declare type AgentWorkspaceCreateDraftedRoutingTablePayload = {
7015
+ __typename?: 'AgentWorkspaceCreateDraftedRoutingTablePayload';
7016
+ pageInfo: AgentWorkspacePageInfo;
7017
+ rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
7018
+ rowsInserted: Scalars['Int']['output'];
7019
+ };
6755
7020
  export declare type AgentWorkspaceCreateScheduleInput = {
6756
7021
  agentIds: Array<Scalars['ID']['input']>;
6757
7022
  cloudId: Scalars['ID']['input'];
@@ -6817,6 +7082,31 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
6817
7082
  shift?: Maybe<AgentWorkspaceShift>;
6818
7083
  success: Scalars['Boolean']['output'];
6819
7084
  };
7085
+ export declare type AgentWorkspaceDraftedRoutingTable = {
7086
+ __typename?: 'AgentWorkspaceDraftedRoutingTable';
7087
+ entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
7088
+ };
7089
+ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
7090
+ __typename?: 'AgentWorkspaceDraftedRoutingTableEntry';
7091
+ confidence?: Maybe<Scalars['Float']['output']>;
7092
+ description?: Maybe<Scalars['String']['output']>;
7093
+ serviceId: Scalars['ID']['output'];
7094
+ serviceName: Scalars['String']['output'];
7095
+ teamAri?: Maybe<Scalars['ID']['output']>;
7096
+ teamName?: Maybe<Scalars['String']['output']>;
7097
+ };
7098
+ export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
7099
+ confidence?: InputMaybe<Scalars['Float']['input']>;
7100
+ description?: InputMaybe<Scalars['String']['input']>;
7101
+ serviceName?: InputMaybe<Scalars['String']['input']>;
7102
+ source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
7103
+ teamAri?: InputMaybe<Scalars['ID']['input']>;
7104
+ teamName?: InputMaybe<Scalars['String']['input']>;
7105
+ };
7106
+ export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
7107
+ Manual = "MANUAL",
7108
+ Rovo = "ROVO"
7109
+ }
6820
7110
  export declare type AgentWorkspaceEditShiftInput = {
6821
7111
  agentId: Scalars['ID']['input'];
6822
7112
  newEndTime: Scalars['DateTime']['input'];
@@ -6852,6 +7142,21 @@ export declare type AgentWorkspaceGroupTooLarge = {
6852
7142
  group?: Maybe<IdentityGroup>;
6853
7143
  groupAri: Scalars['ID']['output'];
6854
7144
  };
7145
+ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
7146
+ __typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
7147
+ issueARI: Scalars['ID']['output'];
7148
+ recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
7149
+ };
7150
+ export declare type AgentWorkspaceMutationError = {
7151
+ __typename?: 'AgentWorkspaceMutationError';
7152
+ code?: Maybe<Scalars['String']['output']>;
7153
+ message: Scalars['String']['output'];
7154
+ };
7155
+ export declare type AgentWorkspacePageInfo = {
7156
+ __typename?: 'AgentWorkspacePageInfo';
7157
+ endCursor?: Maybe<Scalars['String']['output']>;
7158
+ hasNextPage: Scalars['Boolean']['output'];
7159
+ };
6855
7160
  export declare type AgentWorkspaceProjectDefaultAvailability = {
6856
7161
  __typename?: 'AgentWorkspaceProjectDefaultAvailability';
6857
7162
  projectId: Scalars['ID']['output'];
@@ -6865,6 +7170,10 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
6865
7170
  projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
6866
7171
  success: Scalars['Boolean']['output'];
6867
7172
  };
7173
+ export declare type AgentWorkspaceRebalancingRecommendation = {
7174
+ __typename?: 'AgentWorkspaceRebalancingRecommendation';
7175
+ toAgentId: Scalars['ID']['output'];
7176
+ };
6868
7177
  export declare type AgentWorkspaceRecommendationError = {
6869
7178
  __typename?: 'AgentWorkspaceRecommendationError';
6870
7179
  message: Scalars['String']['output'];
@@ -6909,7 +7218,6 @@ export declare type AgentWorkspaceResolvedDateRange = {
6909
7218
  startTime: Scalars['DateTime']['output'];
6910
7219
  };
6911
7220
  export declare type AgentWorkspaceRestoreSkillInput = {
6912
- cloudId: Scalars['ID']['input'];
6913
7221
  skillId: Scalars['ID']['input'];
6914
7222
  };
6915
7223
  export declare type AgentWorkspaceRestoreSkillPayload = {
@@ -6917,6 +7225,50 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
6917
7225
  errors?: Maybe<Array<MutationError>>;
6918
7226
  success: Scalars['Boolean']['output'];
6919
7227
  };
7228
+ export declare type AgentWorkspaceRoutingSetupState = {
7229
+ __typename?: 'AgentWorkspaceRoutingSetupState';
7230
+ hasCommittedTable: Scalars['Boolean']['output'];
7231
+ hasDraft: Scalars['Boolean']['output'];
7232
+ hasField: Scalars['Boolean']['output'];
7233
+ };
7234
+ export declare type AgentWorkspaceRoutingTableEntries = {
7235
+ __typename?: 'AgentWorkspaceRoutingTableEntries';
7236
+ entries: Array<AgentWorkspaceRoutingTableEntry>;
7237
+ };
7238
+ export declare type AgentWorkspaceRoutingTableEntry = {
7239
+ __typename?: 'AgentWorkspaceRoutingTableEntry';
7240
+ description: Scalars['String']['output'];
7241
+ id: Scalars['ID']['output'];
7242
+ serviceFieldValue: Scalars['String']['output'];
7243
+ serviceName: Scalars['String']['output'];
7244
+ teamAri: Scalars['ID']['output'];
7245
+ };
7246
+ export declare type AgentWorkspaceRoutingTableGeneration = {
7247
+ __typename?: 'AgentWorkspaceRoutingTableGeneration';
7248
+ completedServices: Scalars['Int']['output'];
7249
+ currentPhase?: Maybe<AgentWorkspaceRoutingTableGenerationPhase>;
7250
+ endedAt?: Maybe<Scalars['DateTime']['output']>;
7251
+ errorMessage?: Maybe<Scalars['String']['output']>;
7252
+ generationId: Scalars['ID']['output'];
7253
+ selectedRowServiceIds: Array<Scalars['String']['output']>;
7254
+ startedAt: Scalars['DateTime']['output'];
7255
+ status: AgentWorkspaceRoutingTableGenerationStatus;
7256
+ totalServices: Scalars['Int']['output'];
7257
+ triggeredBy?: Maybe<Scalars['String']['output']>;
7258
+ };
7259
+ export declare enum AgentWorkspaceRoutingTableGenerationPhase {
7260
+ AnalysingWithAi = "ANALYSING_WITH_AI",
7261
+ SavingResults = "SAVING_RESULTS",
7262
+ ScanningTickets = "SCANNING_TICKETS"
7263
+ }
7264
+ export declare enum AgentWorkspaceRoutingTableGenerationStatus {
7265
+ Cancelled = "CANCELLED",
7266
+ Cancelling = "CANCELLING",
7267
+ Completed = "COMPLETED",
7268
+ Failed = "FAILED",
7269
+ InProgress = "IN_PROGRESS",
7270
+ Timeout = "TIMEOUT"
7271
+ }
6920
7272
  export declare type AgentWorkspaceSchedule = {
6921
7273
  __typename?: 'AgentWorkspaceSchedule';
6922
7274
  agents: Array<AgentWorkspaceAgent>;
@@ -7141,6 +7493,7 @@ export declare type AgentWorkspaceSkillCategory = {
7141
7493
  description?: Maybe<Scalars['String']['output']>;
7142
7494
  id: Scalars['ID']['output'];
7143
7495
  name?: Maybe<Scalars['String']['output']>;
7496
+ skillCount?: Maybe<Scalars['Int']['output']>;
7144
7497
  skills?: Maybe<Array<AgentWorkspaceSkill>>;
7145
7498
  };
7146
7499
  export declare type AgentWorkspaceSkillCategoryConnection = {
@@ -7207,6 +7560,29 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
7207
7560
  jobId?: Maybe<Scalars['ID']['output']>;
7208
7561
  status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
7209
7562
  };
7563
+ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
7564
+ cloudId: Scalars['ID']['input'];
7565
+ days?: InputMaybe<Scalars['Int']['input']>;
7566
+ maxIssues?: InputMaybe<Scalars['Int']['input']>;
7567
+ projectKey: Scalars['String']['input'];
7568
+ selectedRowServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
7569
+ serviceFieldId: Scalars['String']['input'];
7570
+ };
7571
+ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
7572
+ __typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
7573
+ generationId: Scalars['ID']['output'];
7574
+ status: AgentWorkspaceRoutingTableGenerationStatus;
7575
+ };
7576
+ export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
7577
+ fieldId: Scalars['String']['input'];
7578
+ generationId: Scalars['ID']['input'];
7579
+ projectAri: Scalars['ID']['input'];
7580
+ };
7581
+ export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
7582
+ __typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
7583
+ rowsWritten: Scalars['Int']['output'];
7584
+ teamsNewlyConnected: Scalars['Int']['output'];
7585
+ };
7210
7586
  export declare type AgentWorkspaceTeamCapacitiesInput = {
7211
7587
  cloudId: Scalars['ID']['input'];
7212
7588
  projectKey: Scalars['String']['input'];
@@ -7235,6 +7611,22 @@ export declare type AgentWorkspaceTeamLinkFailure = {
7235
7611
  message: Scalars['String']['output'];
7236
7612
  teamId: Scalars['ID']['output'];
7237
7613
  };
7614
+ export declare type AgentWorkspaceTeamRebalancingRecommendationsInput = {
7615
+ projectARI: Scalars['ID']['input'];
7616
+ teamARI: Scalars['ID']['input'];
7617
+ };
7618
+ export declare type AgentWorkspaceTeamRebalancingSummariesInput = {
7619
+ projectARI: Scalars['ID']['input'];
7620
+ };
7621
+ export declare type AgentWorkspaceTeamRebalancingSummary = {
7622
+ __typename?: 'AgentWorkspaceTeamRebalancingSummary';
7623
+ averageUtilizationPercent: Scalars['Float']['output'];
7624
+ overloadedAgentCount: Scalars['Int']['output'];
7625
+ teamARI: Scalars['ID']['output'];
7626
+ totalCapacity: Scalars['Int']['output'];
7627
+ totalCurrentLoad: Scalars['Int']['output'];
7628
+ totalWorkItemCount: Scalars['Int']['output'];
7629
+ };
7238
7630
  export declare type AgentWorkspaceTeamSchedules = {
7239
7631
  __typename?: 'AgentWorkspaceTeamSchedules';
7240
7632
  hasSchedules: Scalars['Boolean']['output'];
@@ -7336,6 +7728,17 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
7336
7728
  smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
7337
7729
  success: Scalars['Boolean']['output'];
7338
7730
  };
7731
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
7732
+ included?: InputMaybe<Scalars['Boolean']['input']>;
7733
+ projectAri: Scalars['ID']['input'];
7734
+ row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
7735
+ serviceId: Scalars['ID']['input'];
7736
+ };
7737
+ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
7738
+ __typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
7739
+ entry: AgentWorkspaceDraftedRoutingTableEntry;
7740
+ errors?: Maybe<Array<AgentWorkspaceMutationError>>;
7741
+ };
7339
7742
  export declare type AiCoreApiCsvExportInput = {
7340
7743
  cloudId?: InputMaybe<Scalars['ID']['input']>;
7341
7744
  fromDate?: InputMaybe<Scalars['String']['input']>;
@@ -7625,6 +8028,7 @@ export declare enum ApiGroup {
7625
8028
  AgentStudio = "AGENT_STUDIO",
7626
8029
  AppRecommendations = "APP_RECOMMENDATIONS",
7627
8030
  AtlassianStudio = "ATLASSIAN_STUDIO",
8031
+ Avp = "AVP",
7628
8032
  Caas = "CAAS",
7629
8033
  CloudAdmin = "CLOUD_ADMIN",
7630
8034
  CollaborationGraph = "COLLABORATION_GRAPH",
@@ -12449,6 +12853,15 @@ export declare type AssetsVerticalDefaultAttributeOnObject = AssetsVerticalAttri
12449
12853
  searchValue?: Maybe<Scalars['String']['output']>;
12450
12854
  value?: Maybe<Scalars['String']['output']>;
12451
12855
  };
12856
+ export declare type AssetsVerticalDefaultError = AssetsVerticalProblemDetail & {
12857
+ __typename?: 'AssetsVerticalDefaultError';
12858
+ correctionGuidance?: Maybe<Scalars['String']['output']>;
12859
+ detail: Scalars['String']['output'];
12860
+ instance?: Maybe<Scalars['String']['output']>;
12861
+ status?: Maybe<Scalars['Int']['output']>;
12862
+ title: Scalars['String']['output'];
12863
+ type?: Maybe<Scalars['String']['output']>;
12864
+ };
12452
12865
  export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
12453
12866
  cloudId: Scalars['ID']['input'];
12454
12867
  id: Scalars['ID']['input'];
@@ -12741,6 +13154,7 @@ export declare type AssetsVerticalKeyValueInput = {
12741
13154
  value: Scalars['String']['input'];
12742
13155
  };
12743
13156
  export declare type AssetsVerticalModelItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
13157
+ export declare type AssetsVerticalModelObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
12744
13158
  export declare type AssetsVerticalModelObjects = AssetsVerticalObjects & {
12745
13159
  __typename?: 'AssetsVerticalModelObjects';
12746
13160
  itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
@@ -12828,6 +13242,14 @@ export declare type AssetsVerticalObjectsSuccess = {
12828
13242
  pageInfo?: Maybe<PageInfo>;
12829
13243
  totalCount?: Maybe<Scalars['Int']['output']>;
12830
13244
  };
13245
+ export declare type AssetsVerticalProblemDetail = {
13246
+ correctionGuidance?: Maybe<Scalars['String']['output']>;
13247
+ detail: Scalars['String']['output'];
13248
+ instance?: Maybe<Scalars['String']['output']>;
13249
+ status?: Maybe<Scalars['Int']['output']>;
13250
+ title: Scalars['String']['output'];
13251
+ type?: Maybe<Scalars['String']['output']>;
13252
+ };
12831
13253
  export declare type AssetsVerticalRole = {
12832
13254
  __typename?: 'AssetsVerticalRole';
12833
13255
  description?: Maybe<Scalars['String']['output']>;
@@ -13084,7 +13506,8 @@ export declare enum AssetsVerticalVerticalInstantiationErrorCode {
13084
13506
  ValidationFailed = "VALIDATION_FAILED"
13085
13507
  }
13086
13508
  export declare type AssetsVerticalVerticalInstantiationInlineCategoryInput = {
13087
- type: AssetsVerticalVerticalInstantiationCategoryType;
13509
+ category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
13510
+ type?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
13088
13511
  };
13089
13512
  export declare type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
13090
13513
  __typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
@@ -13150,6 +13573,7 @@ export declare type AssetsVerticalVerticalTemplateQueryErrorExtension = QueryErr
13150
13573
  statusCode?: Maybe<Scalars['Int']['output']>;
13151
13574
  };
13152
13575
  export declare type AssetsVerticalVerticalTemplateResult = AssetsVerticalVerticalTemplate | QueryError;
13576
+ export declare type AssetsVerticalVerticalTemplateV2Result = AssetsVerticalDefaultError | AssetsVerticalVerticalTemplate;
13153
13577
  export declare enum AssetsVerticalVerticalType {
13154
13578
  Ham = "HAM"
13155
13579
  }
@@ -14294,19 +14718,6 @@ export declare enum CcpAllowancePoolAllocationDetailsType {
14294
14718
  Custom = "CUSTOM",
14295
14719
  Default = "DEFAULT"
14296
14720
  }
14297
- export declare type CcpAllowancePoolAllocationUpdateInput = {
14298
- allocationId: Scalars['ID']['input'];
14299
- billingEntity?: InputMaybe<Scalars['String']['input']>;
14300
- enforcementMode?: InputMaybe<CcpLatestAllowanceEnforcementModeType>;
14301
- overageCap?: InputMaybe<Scalars['Float']['input']>;
14302
- poolShare?: InputMaybe<Scalars['Float']['input']>;
14303
- };
14304
- export declare type CcpAllowancePoolAllocationUpdateResult = {
14305
- __typename?: 'CcpAllowancePoolAllocationUpdateResult';
14306
- allocationId?: Maybe<Scalars['ID']['output']>;
14307
- poolId?: Maybe<Scalars['ID']['output']>;
14308
- transactionId?: Maybe<Scalars['ID']['output']>;
14309
- };
14310
14721
  export declare type CcpAllowancePoolAllocationsResponse = {
14311
14722
  __typename?: 'CcpAllowancePoolAllocationsResponse';
14312
14723
  allowance?: Maybe<Scalars['Float']['output']>;
@@ -17588,7 +17999,7 @@ export declare type CommerceExpAchInfo = {
17588
17999
  routingNumber: Scalars['String']['output'];
17589
18000
  valid: Scalars['Boolean']['output'];
17590
18001
  };
17591
- export declare type CommerceExpAchPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
18002
+ export declare type CommerceExpAchPaymentMethod = CommerceExpPaymentMethod & {
17592
18003
  __typename?: 'CommerceExpAchPaymentMethod';
17593
18004
  ach?: Maybe<CommerceExpAchInfo>;
17594
18005
  ari: Scalars['ID']['output'];
@@ -17968,7 +18379,7 @@ export declare type CommerceExpCardDetails = {
17968
18379
  last4?: Maybe<Scalars['String']['output']>;
17969
18380
  postalCode?: Maybe<Scalars['String']['output']>;
17970
18381
  };
17971
- export declare type CommerceExpCardPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
18382
+ export declare type CommerceExpCardPaymentMethod = CommerceExpPaymentMethod & {
17972
18383
  __typename?: 'CommerceExpCardPaymentMethod';
17973
18384
  ari: Scalars['ID']['output'];
17974
18385
  card?: Maybe<CommerceExpCardDetails>;
@@ -18008,7 +18419,7 @@ export declare type CommerceExpCcpCreditNote = {
18008
18419
  refundType?: Maybe<CommerceExpCreditNoteDtoRefundTypeEnum>;
18009
18420
  version?: Maybe<Scalars['Int']['output']>;
18010
18421
  };
18011
- export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
18422
+ export declare type CommerceExpCcpEntitlement = {
18012
18423
  __typename?: 'CommerceExpCcpEntitlement';
18013
18424
  accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
18014
18425
  actions?: Maybe<CommerceExpEntitlementActions>;
@@ -18178,7 +18589,7 @@ export declare type CommerceExpCcpInvoice = {
18178
18589
  total?: Maybe<Scalars['Float']['output']>;
18179
18590
  uncollectibleAt?: Maybe<Scalars['Float']['output']>;
18180
18591
  };
18181
- export declare type CommerceExpCcpInvoiceGroup = CommerceExpNode & {
18592
+ export declare type CommerceExpCcpInvoiceGroup = {
18182
18593
  __typename?: 'CommerceExpCcpInvoiceGroup';
18183
18594
  active?: Maybe<Scalars['Boolean']['output']>;
18184
18595
  billToParty?: Maybe<CommerceExpBillToParty>;
@@ -18371,7 +18782,7 @@ export declare enum CommerceExpCcpOfferingStatus {
18371
18782
  Draft = "DRAFT",
18372
18783
  Expired = "EXPIRED"
18373
18784
  }
18374
- export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase & CommerceExpNode & {
18785
+ export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase & {
18375
18786
  __typename?: 'CommerceExpCcpOrder';
18376
18787
  additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
18377
18788
  createdDate?: Maybe<Scalars['Float']['output']>;
@@ -18438,7 +18849,7 @@ export declare type CommerceExpCcpPreDunning = {
18438
18849
  endAt?: Maybe<Scalars['Float']['output']>;
18439
18850
  preDunningAttempts?: Maybe<Array<Maybe<CommerceExpPreDunningAttempt>>>;
18440
18851
  };
18441
- export declare type CommerceExpCcpPricingPlan = CommerceExpNode & {
18852
+ export declare type CommerceExpCcpPricingPlan = {
18442
18853
  __typename?: 'CommerceExpCcpPricingPlan';
18443
18854
  activatedWithReason?: Maybe<CommerceExpPricingPlanActivatedReason>;
18444
18855
  currency?: Maybe<CommerceExpPricingPlanCurrency>;
@@ -18474,7 +18885,7 @@ export declare enum CommerceExpCcpPricingType {
18474
18885
  LimitedFree = "LIMITED_FREE",
18475
18886
  Paid = "PAID"
18476
18887
  }
18477
- export declare type CommerceExpCcpProduct = CommerceExpNode & {
18888
+ export declare type CommerceExpCcpProduct = {
18478
18889
  __typename?: 'CommerceExpCcpProduct';
18479
18890
  chargeElements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
18480
18891
  id: Scalars['ID']['output'];
@@ -18597,7 +19008,7 @@ export declare type CommerceExpCcpQueryTransactionAccountArgs = {
18597
19008
  export declare type CommerceExpCcpQueryTransactionAccountsArgs = {
18598
19009
  ids: Array<Scalars['ID']['input']>;
18599
19010
  };
18600
- export declare type CommerceExpCcpQuote = CommerceExpNode & {
19011
+ export declare type CommerceExpCcpQuote = {
18601
19012
  __typename?: 'CommerceExpCcpQuote';
18602
19013
  aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
18603
19014
  aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
@@ -18720,7 +19131,7 @@ export declare type CommerceExpCcpSubscriptionTrial = {
18720
19131
  pricingPlanId?: Maybe<Scalars['String']['output']>;
18721
19132
  startTimestamp?: Maybe<Scalars['Float']['output']>;
18722
19133
  };
18723
- export declare type CommerceExpCcpTransactionAccount = CommerceExpNode & {
19134
+ export declare type CommerceExpCcpTransactionAccount = {
18724
19135
  __typename?: 'CommerceExpCcpTransactionAccount';
18725
19136
  aggCcpTransactionAccount?: Maybe<CcpTransactionAccount>;
18726
19137
  billToParty?: Maybe<CommerceExpBillToParty>;
@@ -19265,7 +19676,7 @@ export declare type CommerceExpDefaultAllowance = {
19265
19676
  type?: Maybe<CommerceExpAllowanceType>;
19266
19677
  unit?: Maybe<Scalars['String']['output']>;
19267
19678
  };
19268
- export declare type CommerceExpDeferredPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
19679
+ export declare type CommerceExpDeferredPaymentMethod = CommerceExpPaymentMethod & {
19269
19680
  __typename?: 'CommerceExpDeferredPaymentMethod';
19270
19681
  ari: Scalars['ID']['output'];
19271
19682
  currency?: Maybe<Scalars['String']['output']>;
@@ -19800,7 +20211,7 @@ export declare type CommerceExpInvoiceList = {
19800
20211
  invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
19801
20212
  };
19802
20213
  export declare type CommerceExpInvoiceOrNoPermissions = CommerceExpInvoiceErrorObject | CommerceExpInvoiceList;
19803
- export declare type CommerceExpInvoiceRequest = CommerceExpNode & {
20214
+ export declare type CommerceExpInvoiceRequest = {
19804
20215
  __typename?: 'CommerceExpInvoiceRequest';
19805
20216
  createdAt?: Maybe<Scalars['Float']['output']>;
19806
20217
  currency?: Maybe<Scalars['String']['output']>;
@@ -20032,9 +20443,6 @@ export declare type CommerceExpMutationPayload = {
20032
20443
  errors?: Maybe<Array<MutationError>>;
20033
20444
  success: Scalars['Boolean']['output'];
20034
20445
  };
20035
- export declare type CommerceExpNode = {
20036
- id: Scalars['ID']['output'];
20037
- };
20038
20446
  export declare type CommerceExpNoteDto = {
20039
20447
  __typename?: 'CommerceExpNoteDto';
20040
20448
  createdAt?: Maybe<Scalars['Float']['output']>;
@@ -20370,7 +20778,7 @@ export declare enum CommerceExpOrderType {
20370
20778
  TransitionOrder = "TRANSITION_ORDER"
20371
20779
  }
20372
20780
  export declare type CommerceExpOrgItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
20373
- export declare type CommerceExpOrganisation = CommerceExpNode & {
20781
+ export declare type CommerceExpOrganisation = {
20374
20782
  __typename?: 'CommerceExpOrganisation';
20375
20783
  id: Scalars['ID']['output'];
20376
20784
  name?: Maybe<Scalars['String']['output']>;
@@ -20485,7 +20893,7 @@ export declare enum CommerceExpPaymentStatusType {
20485
20893
  RequiresAction = "REQUIRES_ACTION",
20486
20894
  RequiresDifferentPaymentMethod = "REQUIRES_DIFFERENT_PAYMENT_METHOD"
20487
20895
  }
20488
- export declare type CommerceExpPaypalPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
20896
+ export declare type CommerceExpPaypalPaymentMethod = CommerceExpPaymentMethod & {
20489
20897
  __typename?: 'CommerceExpPaypalPaymentMethod';
20490
20898
  ari: Scalars['ID']['output'];
20491
20899
  currency?: Maybe<Scalars['String']['output']>;
@@ -21044,7 +21452,7 @@ export declare type CommerceExpSetupIntentPayload = CommerceExpMutationPayload &
21044
21452
  setupIntent?: Maybe<CommerceExpSetupIntent>;
21045
21453
  success: Scalars['Boolean']['output'];
21046
21454
  };
21047
- export declare type CommerceExpShipToParty = CommerceExpNode & {
21455
+ export declare type CommerceExpShipToParty = {
21048
21456
  __typename?: 'CommerceExpShipToParty';
21049
21457
  createdAt?: Maybe<Scalars['Float']['output']>;
21050
21458
  id: Scalars['ID']['output'];
@@ -26984,9 +27392,13 @@ export declare type ConfluenceApprovalAgentPayload = Payload & {
26984
27392
  };
26985
27393
  export declare type ConfluenceApprovalReviewerConfig = {
26986
27394
  __typename?: 'ConfluenceApprovalReviewerConfig';
26987
- hasReviewers: Scalars['Boolean']['output'];
27395
+ isEnabled: Scalars['Boolean']['output'];
26988
27396
  reviewers: Array<Maybe<ConfluenceSpaceApprovalReviewerEntry>>;
26989
27397
  };
27398
+ export declare type ConfluenceApprovalReviewerConfigInput = {
27399
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
27400
+ reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
27401
+ };
26990
27402
  export declare enum ConfluenceApprovalTransitionType {
26991
27403
  Directed = "DIRECTED",
26992
27404
  Initial = "INITIAL"
@@ -27609,10 +28021,10 @@ export declare type ConfluenceContentApprovalsSpaceSettingConfig = {
27609
28021
  enforcedApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
27610
28022
  };
27611
28023
  export declare type ConfluenceContentApprovalsSpaceSettingConfigInput = {
27612
- defaultReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
28024
+ defaultReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
27613
28025
  disallowFirstPublish?: InputMaybe<Scalars['Boolean']['input']>;
27614
- enabled: Scalars['Boolean']['input'];
27615
- enforcedReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
28026
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
28027
+ enforcedReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
27616
28028
  };
27617
28029
  export declare type ConfluenceContentApprovalsSpaceSettingConfigPayload = Payload & {
27618
28030
  __typename?: 'ConfluenceContentApprovalsSpaceSettingConfigPayload';
@@ -27728,6 +28140,7 @@ export declare type ConfluenceContentModified = {
27728
28140
  inlineReactionAdded?: Maybe<ConfluenceInlineReactionAdded>;
27729
28141
  inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
27730
28142
  inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
28143
+ markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
27731
28144
  pageBlogified?: Maybe<ConfluencePageBlogified>;
27732
28145
  pageMigrated?: Maybe<ConfluencePageMigrated>;
27733
28146
  pageMoved?: Maybe<ConfluencePageMoved>;
@@ -28430,6 +28843,10 @@ export declare type ConfluenceCustomPageSpaceSettings = {
28430
28843
  footerText?: Maybe<Scalars['String']['output']>;
28431
28844
  headerText?: Maybe<Scalars['String']['output']>;
28432
28845
  };
28846
+ export declare type ConfluenceCutoverDate = {
28847
+ __typename?: 'ConfluenceCutoverDate';
28848
+ date?: Maybe<Scalars['String']['output']>;
28849
+ };
28433
28850
  export declare type ConfluenceCutoverRoleConfig = {
28434
28851
  __typename?: 'ConfluenceCutoverRoleConfig';
28435
28852
  eligibleRoles: Array<Maybe<SpaceRole>>;
@@ -28857,6 +29274,7 @@ export declare type ConfluenceExtensionPrincipal = {
28857
29274
  id?: Maybe<Scalars['ID']['output']>;
28858
29275
  };
28859
29276
  export declare type ConfluenceExtensionRenderingContextInput = {
29277
+ attachmentId?: InputMaybe<Scalars['String']['input']>;
28860
29278
  contentId?: InputMaybe<Scalars['Long']['input']>;
28861
29279
  spaceId?: InputMaybe<Scalars['Long']['input']>;
28862
29280
  spaceKey?: InputMaybe<Scalars['String']['input']>;
@@ -29559,6 +29977,10 @@ export declare type ConfluenceMarkdownDroppedElement = {
29559
29977
  detail?: Maybe<Scalars['String']['output']>;
29560
29978
  occurrences?: Maybe<Scalars['Int']['output']>;
29561
29979
  };
29980
+ export declare type ConfluenceMarkdownModeUpdated = {
29981
+ __typename?: 'ConfluenceMarkdownModeUpdated';
29982
+ isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
29983
+ };
29562
29984
  export declare type ConfluenceMediaTokenData = {
29563
29985
  __typename?: 'ConfluenceMediaTokenData';
29564
29986
  clientId: Scalars['String']['output'];
@@ -31805,6 +32227,21 @@ export declare type ConfluenceRoleRecommendation = {
31805
32227
  action: ConfluenceRecommendedAction;
31806
32228
  roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
31807
32229
  };
32230
+ export declare enum ConfluenceRolesHubTransitionStep {
32231
+ AssignByUserOrGroup = "ASSIGN_BY_USER_OR_GROUP",
32232
+ AuditUserAccess = "AUDIT_USER_ACCESS",
32233
+ ChooseFallbackRole = "CHOOSE_FALLBACK_ROLE",
32234
+ CreateCustomRoles = "CREATE_CUSTOM_ROLES",
32235
+ EnforceRoleBasedAccess = "ENFORCE_ROLE_BASED_ACCESS",
32236
+ ReplaceLegacyCombinations = "REPLACE_LEGACY_COMBINATIONS",
32237
+ UpdateDefaultAccess = "UPDATE_DEFAULT_ACCESS",
32238
+ ViewPermissionsCombinations = "VIEW_PERMISSIONS_COMBINATIONS"
32239
+ }
32240
+ export declare type ConfluenceRolesHubTransitionStepState = {
32241
+ __typename?: 'ConfluenceRolesHubTransitionStepState';
32242
+ completed: Scalars['Boolean']['output'];
32243
+ step: ConfluenceRolesHubTransitionStep;
32244
+ };
31808
32245
  export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
31809
32246
  ownerId: Scalars['ID']['input'];
31810
32247
  spaceId: Scalars['Long']['input'];
@@ -31894,6 +32331,12 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
31894
32331
  errors?: Maybe<Array<MutationError>>;
31895
32332
  success: Scalars['Boolean']['output'];
31896
32333
  };
32334
+ export declare type ConfluenceSetRolesHubTransitionStepPayload = Payload & {
32335
+ __typename?: 'ConfluenceSetRolesHubTransitionStepPayload';
32336
+ errors?: Maybe<Array<MutationError>>;
32337
+ steps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
32338
+ success: Scalars['Boolean']['output'];
32339
+ };
31897
32340
  export declare type ConfluenceSetSubCalendarReminderInput = {
31898
32341
  isReminder: Scalars['Boolean']['input'];
31899
32342
  subCalendarId: Scalars['ID']['input'];
@@ -31985,6 +32428,33 @@ export declare enum ConfluenceShareableLinkSpacesByCriteriaOrder {
31985
32428
  ActiveLinks = "ACTIVE_LINKS",
31986
32429
  Name = "NAME"
31987
32430
  }
32431
+ export declare type ConfluenceShortcutSmartLink = {
32432
+ __typename?: 'ConfluenceShortcutSmartLink';
32433
+ canView?: Maybe<Scalars['Boolean']['output']>;
32434
+ customTitle?: Maybe<Scalars['String']['output']>;
32435
+ emojiTitle?: Maybe<Scalars['String']['output']>;
32436
+ iconUrl?: Maybe<Scalars['String']['output']>;
32437
+ id: Scalars['Long']['output'];
32438
+ position: Scalars['Int']['output'];
32439
+ product?: Maybe<Scalars['String']['output']>;
32440
+ resolved?: Maybe<Scalars['Boolean']['output']>;
32441
+ resourceType?: Maybe<Scalars['String']['output']>;
32442
+ styleClass?: Maybe<Scalars['String']['output']>;
32443
+ subType?: Maybe<Scalars['String']['output']>;
32444
+ title?: Maybe<Scalars['String']['output']>;
32445
+ url?: Maybe<Scalars['String']['output']>;
32446
+ };
32447
+ export declare type ConfluenceShortcutSmartLinkConnection = {
32448
+ __typename?: 'ConfluenceShortcutSmartLinkConnection';
32449
+ edges?: Maybe<Array<Maybe<ConfluenceShortcutSmartLinkEdge>>>;
32450
+ nodes?: Maybe<Array<Maybe<ConfluenceShortcutSmartLink>>>;
32451
+ pageInfo: ConfluencePageInfo;
32452
+ };
32453
+ export declare type ConfluenceShortcutSmartLinkEdge = {
32454
+ __typename?: 'ConfluenceShortcutSmartLinkEdge';
32455
+ cursor: Scalars['String']['output'];
32456
+ node?: Maybe<ConfluenceShortcutSmartLink>;
32457
+ };
31988
32458
  export declare type ConfluenceSiteConfiguration = {
31989
32459
  __typename?: 'ConfluenceSiteConfiguration';
31990
32460
  attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
@@ -32005,6 +32475,7 @@ export declare type ConfluenceSiteConfiguration = {
32005
32475
  isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
32006
32476
  isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
32007
32477
  isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
32478
+ isHideTitleInUrlEnabled?: Maybe<Scalars['Boolean']['output']>;
32008
32479
  isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
32009
32480
  isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
32010
32481
  isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -32160,6 +32631,7 @@ export declare type ConfluenceSpaceApprovalReviewerEntry = {
32160
32631
  __typename?: 'ConfluenceSpaceApprovalReviewerEntry';
32161
32632
  principalId: Scalars['String']['output'];
32162
32633
  principalType: ConfluencePrincipalType;
32634
+ user?: Maybe<AtlassianUser>;
32163
32635
  };
32164
32636
  export declare type ConfluenceSpaceConnection = {
32165
32637
  __typename?: 'ConfluenceSpaceConnection';
@@ -33313,6 +33785,7 @@ export declare type ConfluenceUpdateSiteSecurityConfigurationInput = {
33313
33785
  isAddWildcardsToUserAndGroupSearchesEnabled: Scalars['Boolean']['input'];
33314
33786
  isAnonymousAccessToRemoteApiEnabled: Scalars['Boolean']['input'];
33315
33787
  isElevatedSecurityCheckEnabled: Scalars['Boolean']['input'];
33788
+ isHideTitleInUrlEnabled?: InputMaybe<Scalars['Boolean']['input']>;
33316
33789
  isNofollowExternalLinksEnabled: Scalars['Boolean']['input'];
33317
33790
  isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
33318
33791
  isXsrfAddCommentsEnabled: Scalars['Boolean']['input'];
@@ -34913,6 +35386,8 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
34913
35386
  };
34914
35387
  export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
34915
35388
  minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
35389
+ topK?: InputMaybe<Scalars['Int']['input']>;
35390
+ useThreshold?: InputMaybe<Scalars['Boolean']['input']>;
34916
35391
  };
34917
35392
  export declare type ConvoAiMessageArtifact = {
34918
35393
  __typename?: 'ConvoAiMessageArtifact';
@@ -36724,6 +37199,17 @@ export declare type CsmAiAuthoredCoachingContentInput = {
36724
37199
  triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
36725
37200
  triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
36726
37201
  };
37202
+ export declare type CsmAiAvailableKnowledgeSource = {
37203
+ __typename?: 'CsmAiAvailableKnowledgeSource';
37204
+ isConfigured: Scalars['Boolean']['output'];
37205
+ isConnected: Scalars['Boolean']['output'];
37206
+ sourceType: Scalars['String']['output'];
37207
+ };
37208
+ export declare type CsmAiAvailableKnowledgeSourcesPayload = {
37209
+ __typename?: 'CsmAiAvailableKnowledgeSourcesPayload';
37210
+ sources: Array<CsmAiAvailableKnowledgeSource>;
37211
+ };
37212
+ export declare type CsmAiAvailableKnowledgeSourcesResult = CsmAiAvailableKnowledgeSourcesPayload | QueryError;
36727
37213
  export declare type CsmAiByodContent = {
36728
37214
  __typename?: 'CsmAiByodContent';
36729
37215
  datasourceId: Scalars['String']['output'];
@@ -37096,6 +37582,7 @@ export declare type CsmAiWidgetBrandingTheme = {
37096
37582
  icon: CsmAiWidgetIcon;
37097
37583
  radius: CsmAiWidgetBrandingRadius;
37098
37584
  space: CsmAiWidgetBrandingSpaceVariant;
37585
+ welcomeMessage?: Maybe<Scalars['String']['output']>;
37099
37586
  };
37100
37587
  export declare type CsmAiWidgetBrandingThemeUpdateInput = {
37101
37588
  attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
@@ -37104,6 +37591,7 @@ export declare type CsmAiWidgetBrandingThemeUpdateInput = {
37104
37591
  icon?: InputMaybe<CsmAiWidgetIconUpdateInput>;
37105
37592
  radius: CsmAiWidgetBrandingRadius;
37106
37593
  space: CsmAiWidgetBrandingSpaceVariant;
37594
+ welcomeMessage?: InputMaybe<Scalars['String']['input']>;
37107
37595
  };
37108
37596
  export declare type CsmAiWidgetClientKey = {
37109
37597
  __typename?: 'CsmAiWidgetClientKey';
@@ -37451,6 +37939,7 @@ export declare type CustomerServiceAiSuggestionsInput = {
37451
37939
  export declare type CustomerServiceAiSuggestionsQueryResult = CustomerServiceAiSuggestionsResponse | QueryError;
37452
37940
  export declare type CustomerServiceAiSuggestionsResponse = {
37453
37941
  __typename?: 'CustomerServiceAiSuggestionsResponse';
37942
+ id: Scalars['ID']['output'];
37454
37943
  requestId: Scalars['ID']['output'];
37455
37944
  status: CustomerServiceAiResultStatus;
37456
37945
  suggestion?: Maybe<CustomerServiceAiSuggestion>;
@@ -37832,6 +38321,29 @@ export declare type CustomerServiceDeleteCustomerPayload = Payload & {
37832
38321
  errors?: Maybe<Array<MutationError>>;
37833
38322
  success: Scalars['Boolean']['output'];
37834
38323
  };
38324
+ export declare type CustomerServiceEmailChannelConfig = {
38325
+ __typename?: 'CustomerServiceEmailChannelConfig';
38326
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
38327
+ enabledBy?: Maybe<Scalars['String']['output']>;
38328
+ helpCenterId: Scalars['ID']['output'];
38329
+ id: Scalars['ID']['output'];
38330
+ isEnabled: Scalars['Boolean']['output'];
38331
+ replyToAddress?: Maybe<Scalars['String']['output']>;
38332
+ supportEmail?: Maybe<Scalars['String']['output']>;
38333
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
38334
+ };
38335
+ export declare type CustomerServiceEmailChannelConfigQueryResult = CustomerServiceEmailChannelConfig | QueryError;
38336
+ export declare type CustomerServiceEmailChannelConfigUpsertInput = {
38337
+ isEnabled: Scalars['Boolean']['input'];
38338
+ replyToAddress?: InputMaybe<Scalars['String']['input']>;
38339
+ supportEmail?: InputMaybe<Scalars['String']['input']>;
38340
+ };
38341
+ export declare type CustomerServiceEmailChannelConfigUpsertPayload = {
38342
+ __typename?: 'CustomerServiceEmailChannelConfigUpsertPayload';
38343
+ emailChannelConfig?: Maybe<CustomerServiceEmailChannelConfig>;
38344
+ errors?: Maybe<Array<MutationError>>;
38345
+ success: Scalars['Boolean']['output'];
38346
+ };
37835
38347
  export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
37836
38348
  export declare type CustomerServiceEntitlement = Node & {
37837
38349
  __typename?: 'CustomerServiceEntitlement';
@@ -39560,6 +40072,7 @@ export declare type DevAiAutodevNextCreateWorkstreamInput = {
39560
40072
  members?: InputMaybe<Array<DevAiAutodevNextMemberItemInput>>;
39561
40073
  name: Scalars['String']['input'];
39562
40074
  projects?: InputMaybe<Array<DevAiAutodevNextProjectItemInput>>;
40075
+ scanTargets?: InputMaybe<Array<DevAiAutodevNextScanTargetItemInput>>;
39563
40076
  settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
39564
40077
  status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
39565
40078
  };
@@ -39688,6 +40201,10 @@ export declare type DevAiAutodevNextScanScheduleInput = {
39688
40201
  dayOfWeek: DevAiAutodevNextDayOfWeek;
39689
40202
  timezone?: InputMaybe<Scalars['String']['input']>;
39690
40203
  };
40204
+ export declare type DevAiAutodevNextScanTargetItemInput = {
40205
+ repositoryAris: Array<Scalars['ID']['input']>;
40206
+ standardId: Scalars['ID']['input'];
40207
+ };
39691
40208
  export declare type DevAiAutodevNextSendWorkstreamNudgesInput = {
39692
40209
  cloudId: Scalars['ID']['input'];
39693
40210
  message?: InputMaybe<Scalars['String']['input']>;
@@ -40952,6 +41469,7 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
40952
41469
  llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40953
41470
  llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40954
41471
  logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
41472
+ osRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40955
41473
  sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40956
41474
  sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40957
41475
  sqlStorage?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
@@ -41160,6 +41678,7 @@ export declare enum DevConsoleResource {
41160
41678
  LlmInput = "LLM_INPUT",
41161
41679
  LlmOutput = "LLM_OUTPUT",
41162
41680
  LogsWrite = "LOGS_WRITE",
41681
+ OsRequests = "OS_REQUESTS",
41163
41682
  SqlCompute = "SQL_COMPUTE",
41164
41683
  SqlRequests = "SQL_REQUESTS",
41165
41684
  SqlStorage = "SQL_STORAGE"
@@ -41181,6 +41700,7 @@ export declare type DevConsoleResourceUsageData = {
41181
41700
  llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
41182
41701
  llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
41183
41702
  logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
41703
+ osRequests?: Maybe<Array<DevConsoleResourceUsage>>;
41184
41704
  sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
41185
41705
  sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
41186
41706
  sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
@@ -43100,7 +43620,7 @@ export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
43100
43620
  };
43101
43621
  export declare type EcosystemMutationCreateRollingReleaseArgs = {
43102
43622
  appId: Scalars['ID']['input'];
43103
- envId: Scalars['ID']['input'];
43623
+ environmentId: Scalars['ID']['input'];
43104
43624
  targetVersionId?: InputMaybe<Scalars['ID']['input']>;
43105
43625
  };
43106
43626
  export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
@@ -43152,6 +43672,10 @@ export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
43152
43672
  export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
43153
43673
  input: UpdateUserInstallationRulesInput;
43154
43674
  };
43675
+ export declare type EcosystemOrgUnit = {
43676
+ __typename?: 'EcosystemOrgUnit';
43677
+ id: Scalars['ID']['output'];
43678
+ };
43155
43679
  export declare type EcosystemQuery = {
43156
43680
  __typename?: 'EcosystemQuery';
43157
43681
  appByOauthClient?: Maybe<App>;
@@ -43174,6 +43698,7 @@ export declare type EcosystemQuery = {
43174
43698
  globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
43175
43699
  marketplaceData?: Maybe<EcosystemMarketplaceData>;
43176
43700
  rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
43701
+ unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
43177
43702
  userAccess?: Maybe<UserAccess>;
43178
43703
  userGrants?: Maybe<UserGrantConnection>;
43179
43704
  userInstallationRules?: Maybe<UserInstallationRules>;
@@ -43260,6 +43785,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
43260
43785
  environmentId?: InputMaybe<Scalars['ID']['input']>;
43261
43786
  first?: InputMaybe<Scalars['Int']['input']>;
43262
43787
  };
43788
+ export declare type EcosystemQueryUnitsForOrgArgs = {
43789
+ orgId: Scalars['ID']['input'];
43790
+ };
43263
43791
  export declare type EcosystemQueryUserAccessArgs = {
43264
43792
  contextId: Scalars['ID']['input'];
43265
43793
  definitionId: Scalars['ID']['input'];
@@ -43340,6 +43868,10 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
43340
43868
  name: Scalars['String']['input'];
43341
43869
  token?: InputMaybe<Scalars['String']['input']>;
43342
43870
  };
43871
+ export declare type EcosystemUnitsForOrgResponse = {
43872
+ __typename?: 'EcosystemUnitsForOrgResponse';
43873
+ units: Array<EcosystemOrgUnit>;
43874
+ };
43343
43875
  export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
43344
43876
  __typename?: 'EcosystemUpdateAppOAuthClientResult';
43345
43877
  errors?: Maybe<Array<MutationError>>;
@@ -44823,6 +45355,7 @@ export declare type ExternalMessage = Node & {
44823
45355
  lastUpdated?: Maybe<Scalars['String']['output']>;
44824
45356
  lastUpdatedBy?: Maybe<ExternalUser>;
44825
45357
  links?: Maybe<Array<Maybe<ExternalMessageLink>>>;
45358
+ messageType?: Maybe<Scalars['String']['output']>;
44826
45359
  owners?: Maybe<Array<Maybe<ExternalUser>>>;
44827
45360
  parent?: Maybe<ExternalEntity>;
44828
45361
  parentId?: Maybe<Scalars['ID']['output']>;
@@ -51412,6 +51945,9 @@ export declare type GraphStore = {
51412
51945
  atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
51413
51946
  atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
51414
51947
  atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
51948
+ atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
51949
+ atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
51950
+ atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
51415
51951
  atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
51416
51952
  atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
51417
51953
  atlassianUserCreatedAtlassianProjectUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection>;
@@ -51469,6 +52005,7 @@ export declare type GraphStore = {
51469
52005
  atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
51470
52006
  atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
51471
52007
  atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
52008
+ atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
51472
52009
  atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
51473
52010
  atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
51474
52011
  atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
@@ -51535,6 +52072,7 @@ export declare type GraphStore = {
51535
52072
  confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
51536
52073
  confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
51537
52074
  confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
52075
+ confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
51538
52076
  confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
51539
52077
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
51540
52078
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -52296,6 +52834,7 @@ export declare type GraphStore = {
52296
52834
  userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
52297
52835
  userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
52298
52836
  userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
52837
+ userMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection>;
52299
52838
  userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
52300
52839
  userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
52301
52840
  userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
@@ -52963,6 +53502,30 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
52963
53502
  queryContext?: InputMaybe<Scalars['String']['input']>;
52964
53503
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
52965
53504
  };
53505
+ export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamArgs = {
53506
+ after?: InputMaybe<Scalars['String']['input']>;
53507
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53508
+ first?: InputMaybe<Scalars['Int']['input']>;
53509
+ id: Scalars['ID']['input'];
53510
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53511
+ sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
53512
+ };
53513
+ export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
53514
+ after?: InputMaybe<Scalars['String']['input']>;
53515
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53516
+ first?: InputMaybe<Scalars['Int']['input']>;
53517
+ id: Scalars['ID']['input'];
53518
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53519
+ sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
53520
+ };
53521
+ export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalInverseArgs = {
53522
+ after?: InputMaybe<Scalars['String']['input']>;
53523
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53524
+ first?: InputMaybe<Scalars['Int']['input']>;
53525
+ id: Scalars['ID']['input'];
53526
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53527
+ sort?: InputMaybe<GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput>;
53528
+ };
52966
53529
  export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateArgs = {
52967
53530
  after?: InputMaybe<Scalars['String']['input']>;
52968
53531
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53419,6 +53982,14 @@ export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
53419
53982
  queryContext?: InputMaybe<Scalars['String']['input']>;
53420
53983
  sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
53421
53984
  };
53985
+ export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
53986
+ after?: InputMaybe<Scalars['String']['input']>;
53987
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
53988
+ first?: InputMaybe<Scalars['Int']['input']>;
53989
+ id: Scalars['ID']['input'];
53990
+ queryContext?: InputMaybe<Scalars['String']['input']>;
53991
+ sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
53992
+ };
53422
53993
  export declare type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
53423
53994
  after?: InputMaybe<Scalars['String']['input']>;
53424
53995
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -53929,6 +54500,14 @@ export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
53929
54500
  queryContext?: InputMaybe<Scalars['String']['input']>;
53930
54501
  sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
53931
54502
  };
54503
+ export declare type GraphStoreConfluencePageHasConfluenceApprovalInverseArgs = {
54504
+ after?: InputMaybe<Scalars['String']['input']>;
54505
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54506
+ first?: InputMaybe<Scalars['Int']['input']>;
54507
+ id: Scalars['ID']['input'];
54508
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54509
+ sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceApprovalSortInput>;
54510
+ };
53932
54511
  export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
53933
54512
  after?: InputMaybe<Scalars['String']['input']>;
53934
54513
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -59793,6 +60372,14 @@ export declare type GraphStoreUserMentionedInMessageInverseArgs = {
59793
60372
  queryContext?: InputMaybe<Scalars['String']['input']>;
59794
60373
  sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
59795
60374
  };
60375
+ export declare type GraphStoreUserMentionedInThirdPartyDocumentInverseArgs = {
60376
+ after?: InputMaybe<Scalars['String']['input']>;
60377
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
60378
+ first?: InputMaybe<Scalars['Int']['input']>;
60379
+ id: Scalars['ID']['input'];
60380
+ queryContext?: InputMaybe<Scalars['String']['input']>;
60381
+ sort?: InputMaybe<GraphStoreUserMentionedInThirdPartyDocumentSortInput>;
60382
+ };
59796
60383
  export declare type GraphStoreUserMentionedInVideoCommentArgs = {
59797
60384
  after?: InputMaybe<Scalars['String']['input']>;
59798
60385
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -61379,6 +61966,12 @@ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
61379
61966
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
61380
61967
  lastModified?: InputMaybe<GraphStoreSortInput>;
61381
61968
  };
61969
+ export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput = {
61970
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61971
+ };
61972
+ export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput = {
61973
+ lastModified?: InputMaybe<GraphStoreSortInput>;
61974
+ };
61382
61975
  export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput = {
61383
61976
  lastModified?: InputMaybe<GraphStoreSortInput>;
61384
61977
  };
@@ -61504,6 +62097,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
61504
62097
  export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
61505
62098
  lastModified?: InputMaybe<GraphStoreSortInput>;
61506
62099
  };
62100
+ export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
62101
+ lastModified?: InputMaybe<GraphStoreSortInput>;
62102
+ };
61507
62103
  export declare type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
61508
62104
  lastModified?: InputMaybe<GraphStoreSortInput>;
61509
62105
  };
@@ -63299,6 +63895,9 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
63299
63895
  export declare type GraphStoreConfluencePageHasCommentSortInput = {
63300
63896
  lastModified?: InputMaybe<GraphStoreSortInput>;
63301
63897
  };
63898
+ export declare type GraphStoreConfluencePageHasConfluenceApprovalSortInput = {
63899
+ lastModified?: InputMaybe<GraphStoreSortInput>;
63900
+ };
63302
63901
  export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
63303
63902
  lastModified?: InputMaybe<GraphStoreSortInput>;
63304
63903
  };
@@ -70336,6 +70935,48 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
70336
70935
  };
70337
70936
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
70338
70937
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
70938
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
70939
+ __typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
70940
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
70941
+ pageInfo: PageInfo;
70942
+ };
70943
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
70944
+ __typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
70945
+ createdAt: Scalars['DateTime']['output'];
70946
+ cursor?: Maybe<Scalars['String']['output']>;
70947
+ id: Scalars['ID']['output'];
70948
+ lastUpdated: Scalars['DateTime']['output'];
70949
+ node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
70950
+ };
70951
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
70952
+ __typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
70953
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
70954
+ pageInfo: PageInfo;
70955
+ };
70956
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
70957
+ __typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
70958
+ createdAt: Scalars['DateTime']['output'];
70959
+ cursor?: Maybe<Scalars['String']['output']>;
70960
+ id: Scalars['ID']['output'];
70961
+ lastUpdated: Scalars['DateTime']['output'];
70962
+ node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
70963
+ };
70964
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
70965
+ export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
70966
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
70967
+ __typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
70968
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
70969
+ pageInfo: PageInfo;
70970
+ };
70971
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
70972
+ __typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
70973
+ createdAt: Scalars['DateTime']['output'];
70974
+ cursor?: Maybe<Scalars['String']['output']>;
70975
+ id: Scalars['ID']['output'];
70976
+ lastUpdated: Scalars['DateTime']['output'];
70977
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
70978
+ };
70979
+ export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
70339
70980
  export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection = HasPageInfo & {
70340
70981
  __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection';
70341
70982
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge>>>;
@@ -71082,6 +71723,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseE
71082
71723
  node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
71083
71724
  };
71084
71725
  export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
71726
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
71727
+ __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
71728
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
71729
+ pageInfo: PageInfo;
71730
+ };
71731
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
71732
+ __typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
71733
+ createdAt: Scalars['DateTime']['output'];
71734
+ cursor?: Maybe<Scalars['String']['output']>;
71735
+ id: Scalars['ID']['output'];
71736
+ lastUpdated: Scalars['DateTime']['output'];
71737
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
71738
+ };
71739
+ export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
71085
71740
  export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
71086
71741
  __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
71087
71742
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
@@ -71842,6 +72497,20 @@ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
71842
72497
  };
71843
72498
  export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
71844
72499
  export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
72500
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
72501
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
72502
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
72503
+ pageInfo: PageInfo;
72504
+ };
72505
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
72506
+ __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
72507
+ createdAt: Scalars['DateTime']['output'];
72508
+ cursor?: Maybe<Scalars['String']['output']>;
72509
+ id: Scalars['ID']['output'];
72510
+ lastUpdated: Scalars['DateTime']['output'];
72511
+ node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
72512
+ };
72513
+ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
71845
72514
  export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
71846
72515
  __typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
71847
72516
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -74109,7 +74778,7 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
74109
74778
  lastUpdated: Scalars['DateTime']['output'];
74110
74779
  node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
74111
74780
  };
74112
- export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
74781
+ export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
74113
74782
  export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
74114
74783
  __typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
74115
74784
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -80016,6 +80685,20 @@ export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
80016
80685
  };
80017
80686
  export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
80018
80687
  export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
80688
+ export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
80689
+ __typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection';
80690
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge>>>;
80691
+ pageInfo: PageInfo;
80692
+ };
80693
+ export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge = {
80694
+ __typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge';
80695
+ createdAt: Scalars['DateTime']['output'];
80696
+ cursor?: Maybe<Scalars['String']['output']>;
80697
+ id: Scalars['ID']['output'];
80698
+ lastUpdated: Scalars['DateTime']['output'];
80699
+ node?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion>;
80700
+ };
80701
+ export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
80019
80702
  export declare type GraphStoreSimplifiedUserMentionedInVideoCommentConnection = HasPageInfo & {
80020
80703
  __typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentConnection';
80021
80704
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentEdge>>>;
@@ -82903,6 +83586,9 @@ export declare type GraphStoreUserMentionedInConversationSortInput = {
82903
83586
  export declare type GraphStoreUserMentionedInMessageSortInput = {
82904
83587
  lastModified?: InputMaybe<GraphStoreSortInput>;
82905
83588
  };
83589
+ export declare type GraphStoreUserMentionedInThirdPartyDocumentSortInput = {
83590
+ lastModified?: InputMaybe<GraphStoreSortInput>;
83591
+ };
82906
83592
  export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
82907
83593
  lastModified?: InputMaybe<GraphStoreSortInput>;
82908
83594
  };
@@ -83164,12 +83850,15 @@ export declare type GraphStoreV2 = {
83164
83850
  atlassianTeamLinksOpsgenieTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection>;
83165
83851
  atlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection>;
83166
83852
  atlassianTeamLinksSpaceEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseConnection>;
83853
+ atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
83854
+ atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
83167
83855
  atlassianTeamOwnsCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection>;
83168
83856
  atlassianTeamOwnsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentInverseConnection>;
83169
83857
  atlassianTeamReceivedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskConnection>;
83170
83858
  atlassianTeamReceivedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskInverseConnection>;
83171
83859
  atlassianTeamSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskConnection>;
83172
83860
  atlassianTeamSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseConnection>;
83861
+ atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
83173
83862
  atlassianUserApprovesFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection>;
83174
83863
  atlassianUserApprovesFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection>;
83175
83864
  atlassianUserAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection>;
@@ -83322,6 +84011,7 @@ export declare type GraphStoreV2 = {
83322
84011
  atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
83323
84012
  atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
83324
84013
  atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
84014
+ atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
83325
84015
  atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
83326
84016
  atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
83327
84017
  atlassianUserSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskConnection>;
@@ -83400,6 +84090,7 @@ export declare type GraphStoreV2 = {
83400
84090
  confluenceCommentHasChildConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentInverseConnection>;
83401
84091
  confluencePageHasChildConfluencePage?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection>;
83402
84092
  confluencePageHasChildConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseConnection>;
84093
+ confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
83403
84094
  confluencePageHasConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection>;
83404
84095
  confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
83405
84096
  confluencePageHasConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceDatabaseConnection>;
@@ -83626,6 +84317,7 @@ export declare type GraphStoreV2 = {
83626
84317
  externalUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection>;
83627
84318
  externalUserMentionedInExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection>;
83628
84319
  externalUserMentionedInExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseConnection>;
84320
+ externalUserMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection>;
83629
84321
  externalUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection>;
83630
84322
  externalUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection>;
83631
84323
  externalUserOwnsExternalCampaign?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCampaignConnection>;
@@ -84242,6 +84934,20 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntityInverseArgs = {
84242
84934
  id: Scalars['ID']['input'];
84243
84935
  sort?: InputMaybe<GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput>;
84244
84936
  };
84937
+ export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamArgs = {
84938
+ after?: InputMaybe<Scalars['String']['input']>;
84939
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
84940
+ first?: InputMaybe<Scalars['Int']['input']>;
84941
+ id: Scalars['ID']['input'];
84942
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
84943
+ };
84944
+ export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
84945
+ after?: InputMaybe<Scalars['String']['input']>;
84946
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
84947
+ first?: InputMaybe<Scalars['Int']['input']>;
84948
+ id: Scalars['ID']['input'];
84949
+ sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
84950
+ };
84245
84951
  export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentArgs = {
84246
84952
  after?: InputMaybe<Scalars['String']['input']>;
84247
84953
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -84284,6 +84990,13 @@ export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskInverseArgs = {
84284
84990
  id: Scalars['ID']['input'];
84285
84991
  sort?: InputMaybe<GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput>;
84286
84992
  };
84993
+ export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalInverseArgs = {
84994
+ after?: InputMaybe<Scalars['String']['input']>;
84995
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
84996
+ first?: InputMaybe<Scalars['Int']['input']>;
84997
+ id: Scalars['ID']['input'];
84998
+ sort?: InputMaybe<GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput>;
84999
+ };
84287
85000
  export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanArgs = {
84288
85001
  after?: InputMaybe<Scalars['String']['input']>;
84289
85002
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -85356,6 +86069,13 @@ export declare type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
85356
86069
  id: Scalars['ID']['input'];
85357
86070
  sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
85358
86071
  };
86072
+ export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
86073
+ after?: InputMaybe<Scalars['String']['input']>;
86074
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
86075
+ first?: InputMaybe<Scalars['Int']['input']>;
86076
+ id: Scalars['ID']['input'];
86077
+ sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput>;
86078
+ };
85359
86079
  export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageArgs = {
85360
86080
  after?: InputMaybe<Scalars['String']['input']>;
85361
86081
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -85902,6 +86622,13 @@ export declare type GraphStoreV2ConfluencePageHasChildConfluencePageInverseArgs
85902
86622
  id: Scalars['ID']['input'];
85903
86623
  sort?: InputMaybe<GraphStoreV2ConfluencePageHasChildConfluencePageSortInput>;
85904
86624
  };
86625
+ export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalInverseArgs = {
86626
+ after?: InputMaybe<Scalars['String']['input']>;
86627
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
86628
+ first?: InputMaybe<Scalars['Int']['input']>;
86629
+ id: Scalars['ID']['input'];
86630
+ sort?: InputMaybe<GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput>;
86631
+ };
85905
86632
  export declare type GraphStoreV2ConfluencePageHasConfluenceCommentArgs = {
85906
86633
  after?: InputMaybe<Scalars['String']['input']>;
85907
86634
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -87491,6 +88218,13 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalMessageInverseArg
87491
88218
  id: Scalars['ID']['input'];
87492
88219
  sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalMessageSortInput>;
87493
88220
  };
88221
+ export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentInverseArgs = {
88222
+ after?: InputMaybe<Scalars['String']['input']>;
88223
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
88224
+ first?: InputMaybe<Scalars['Int']['input']>;
88225
+ id: Scalars['ID']['input'];
88226
+ sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput>;
88227
+ };
87494
88228
  export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventArgs = {
87495
88229
  after?: InputMaybe<Scalars['String']['input']>;
87496
88230
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -89710,6 +90444,9 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput = {
89710
90444
  relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
89711
90445
  toAti?: InputMaybe<GraphStoreSortInput>;
89712
90446
  };
90447
+ export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput = {
90448
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90449
+ };
89713
90450
  export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentSortInput = {
89714
90451
  lastModified?: InputMaybe<GraphStoreSortInput>;
89715
90452
  };
@@ -89719,6 +90456,9 @@ export declare type GraphStoreV2AtlassianTeamReceivedFocusAskSortInput = {
89719
90456
  export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput = {
89720
90457
  lastModified?: InputMaybe<GraphStoreSortInput>;
89721
90458
  };
90459
+ export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput = {
90460
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90461
+ };
89722
90462
  export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput = {
89723
90463
  lastModified?: InputMaybe<GraphStoreSortInput>;
89724
90464
  };
@@ -90064,6 +90804,9 @@ export declare type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
90064
90804
  export declare type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
90065
90805
  lastModified?: InputMaybe<GraphStoreSortInput>;
90066
90806
  };
90807
+ export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
90808
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90809
+ };
90067
90810
  export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageSortInput = {
90068
90811
  lastModified?: InputMaybe<GraphStoreSortInput>;
90069
90812
  };
@@ -90187,6 +90930,9 @@ export declare type GraphStoreV2ConfluenceCommentHasChildConfluenceCommentSortIn
90187
90930
  export declare type GraphStoreV2ConfluencePageHasChildConfluencePageSortInput = {
90188
90931
  lastModified?: InputMaybe<GraphStoreSortInput>;
90189
90932
  };
90933
+ export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput = {
90934
+ lastModified?: InputMaybe<GraphStoreSortInput>;
90935
+ };
90190
90936
  export declare type GraphStoreV2ConfluencePageHasConfluenceCommentSortInput = {
90191
90937
  lastModified?: InputMaybe<GraphStoreSortInput>;
90192
90938
  };
@@ -91541,6 +92287,9 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalConversationSortI
91541
92287
  export declare type GraphStoreV2ExternalUserMentionedInExternalMessageSortInput = {
91542
92288
  lastModified?: InputMaybe<GraphStoreSortInput>;
91543
92289
  };
92290
+ export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput = {
92291
+ lastModified?: InputMaybe<GraphStoreSortInput>;
92292
+ };
91544
92293
  export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput = {
91545
92294
  lastModified?: InputMaybe<GraphStoreSortInput>;
91546
92295
  };
@@ -93878,6 +94627,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseEd
93878
94627
  };
93879
94628
  export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseUnion = TeamV2;
93880
94629
  export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityUnion = ConfluenceSpace | JiraProject | LoomSpace;
94630
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
94631
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
94632
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
94633
+ pageInfo: PageInfo;
94634
+ };
94635
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
94636
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
94637
+ createdAt: Scalars['DateTime']['output'];
94638
+ cursor?: Maybe<Scalars['String']['output']>;
94639
+ id: Scalars['ID']['output'];
94640
+ lastUpdated: Scalars['DateTime']['output'];
94641
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
94642
+ };
94643
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
94644
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
94645
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
94646
+ pageInfo: PageInfo;
94647
+ };
94648
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
94649
+ __typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
94650
+ createdAt: Scalars['DateTime']['output'];
94651
+ cursor?: Maybe<Scalars['String']['output']>;
94652
+ id: Scalars['ID']['output'];
94653
+ lastUpdated: Scalars['DateTime']['output'];
94654
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
94655
+ };
94656
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
94657
+ export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
93881
94658
  export declare type GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection = HasPageInfo & {
93882
94659
  __typename?: 'GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection';
93883
94660
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentEdge>>>;
@@ -93962,6 +94739,20 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseE
93962
94739
  };
93963
94740
  export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseUnion = TeamV2;
93964
94741
  export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskUnion = SpfAsk;
94742
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
94743
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
94744
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
94745
+ pageInfo: PageInfo;
94746
+ };
94747
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
94748
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
94749
+ createdAt: Scalars['DateTime']['output'];
94750
+ cursor?: Maybe<Scalars['String']['output']>;
94751
+ id: Scalars['ID']['output'];
94752
+ lastUpdated: Scalars['DateTime']['output'];
94753
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
94754
+ };
94755
+ export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
93965
94756
  export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection = HasPageInfo & {
93966
94757
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection';
93967
94758
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge>>>;
@@ -96126,6 +96917,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInvers
96126
96917
  };
96127
96918
  export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
96128
96919
  export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
96920
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
96921
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
96922
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
96923
+ pageInfo: PageInfo;
96924
+ };
96925
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
96926
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
96927
+ createdAt: Scalars['DateTime']['output'];
96928
+ cursor?: Maybe<Scalars['String']['output']>;
96929
+ id: Scalars['ID']['output'];
96930
+ lastUpdated: Scalars['DateTime']['output'];
96931
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
96932
+ };
96933
+ export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
96129
96934
  export declare type GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection = HasPageInfo & {
96130
96935
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection';
96131
96936
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageEdge>>>;
@@ -97222,6 +98027,20 @@ export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageIn
97222
98027
  };
97223
98028
  export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseUnion = ConfluencePage;
97224
98029
  export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageUnion = ConfluencePage;
98030
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
98031
+ __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
98032
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
98033
+ pageInfo: PageInfo;
98034
+ };
98035
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
98036
+ __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
98037
+ createdAt: Scalars['DateTime']['output'];
98038
+ cursor?: Maybe<Scalars['String']['output']>;
98039
+ id: Scalars['ID']['output'];
98040
+ lastUpdated: Scalars['DateTime']['output'];
98041
+ node?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
98042
+ };
98043
+ export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
97225
98044
  export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
97226
98045
  __typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection';
97227
98046
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentEdge>>>;
@@ -100400,6 +101219,20 @@ export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessage
100400
101219
  };
100401
101220
  export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
100402
101221
  export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageUnion = ExternalMessage;
101222
+ export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
101223
+ __typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection';
101224
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge>>>;
101225
+ pageInfo: PageInfo;
101226
+ };
101227
+ export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge = {
101228
+ __typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge';
101229
+ createdAt: Scalars['DateTime']['output'];
101230
+ cursor?: Maybe<Scalars['String']['output']>;
101231
+ id: Scalars['ID']['output'];
101232
+ lastUpdated: Scalars['DateTime']['output'];
101233
+ node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion>;
101234
+ };
101235
+ export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
100403
101236
  export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection = HasPageInfo & {
100404
101237
  __typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection';
100405
101238
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge>>>;
@@ -102167,7 +103000,7 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
102167
103000
  lastUpdated: Scalars['DateTime']['output'];
102168
103001
  node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
102169
103002
  };
102170
- export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
103003
+ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
102171
103004
  export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
102172
103005
  __typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
102173
103006
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
@@ -105006,8 +105839,8 @@ export declare type GravityDeleteReactionPayload = Payload & {
105006
105839
  };
105007
105840
  export declare type GravityDeliverySettings = {
105008
105841
  __typename?: 'GravityDeliverySettings';
105842
+ projectId: Scalars['ID']['output'];
105009
105843
  tableLayoutConfig: Array<GravityTableLayoutConfig>;
105010
- viewId: Scalars['ID']['output'];
105011
105844
  visibleFields: Array<Scalars['String']['output']>;
105012
105845
  };
105013
105846
  export declare type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
@@ -105032,6 +105865,10 @@ export declare type GravityEntityReactions = {
105032
105865
  entityAri: Scalars['ID']['output'];
105033
105866
  reactions: Array<GravityReactionSummary>;
105034
105867
  };
105868
+ export declare enum GravityFeedbackTarget {
105869
+ Cf = "CF",
105870
+ Gsac = "GSAC"
105871
+ }
105035
105872
  export declare type GravityField = {
105036
105873
  __typename?: 'GravityField';
105037
105874
  configuration?: Maybe<Scalars['JSON']['output']>;
@@ -105141,6 +105978,16 @@ export declare enum GravityImportSourceType {
105141
105978
  Pdf = "PDF",
105142
105979
  Text = "TEXT"
105143
105980
  }
105981
+ export declare type GravityPostFeedbackInput = {
105982
+ message: Scalars['String']['input'];
105983
+ target: GravityFeedbackTarget;
105984
+ test?: InputMaybe<Scalars['Boolean']['input']>;
105985
+ };
105986
+ export declare type GravityPostFeedbackPayload = Payload & {
105987
+ __typename?: 'GravityPostFeedbackPayload';
105988
+ errors?: Maybe<Array<MutationError>>;
105989
+ success: Scalars['Boolean']['output'];
105990
+ };
105144
105991
  export declare enum GravityReactionEntityType {
105145
105992
  IssueComment = "ISSUE_COMMENT",
105146
105993
  ViewComment = "VIEW_COMMENT"
@@ -105198,8 +106045,8 @@ export declare type GravityTableLayoutConfigInput = {
105198
106045
  size: Scalars['Int']['input'];
105199
106046
  };
105200
106047
  export declare type GravityUpdateDeliverySettingsInput = {
106048
+ projectId: Scalars['ID']['input'];
105201
106049
  tableLayoutConfig: Array<GravityTableLayoutConfigInput>;
105202
- viewId: Scalars['ID']['input'];
105203
106050
  visibleFields?: InputMaybe<Array<Scalars['String']['input']>>;
105204
106051
  };
105205
106052
  export declare type GravityUpdateDeliverySettingsPayload = GravityUpdateDeliverySettingsSuccess | QueryError;
@@ -109850,7 +110697,7 @@ export declare type JiraAddAgentToBoardViewStatusColumnInput = {
109850
110697
  columnId: Scalars['ID']['input'];
109851
110698
  settings?: InputMaybe<JiraBoardViewSettings>;
109852
110699
  };
109853
- export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
110700
+ export declare type JiraAddAgentToBoardViewStatusColumnPayload = Payload & {
109854
110701
  __typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
109855
110702
  boardView?: Maybe<JiraBoardView>;
109856
110703
  column?: Maybe<JiraBoardViewStatusColumn>;
@@ -110265,6 +111112,22 @@ export declare type JiraAiAgentSessionStatus = {
110265
111112
  conversationId: Scalars['ID']['output'];
110266
111113
  state: JiraAiAgentConversationState;
110267
111114
  };
111115
+ export declare enum JiraAiContextPanel {
111116
+ None = "NONE",
111117
+ ResolutionPlan = "RESOLUTION_PLAN",
111118
+ Suggestions = "SUGGESTIONS"
111119
+ }
111120
+ export declare type JiraAiContextPanelDecision = {
111121
+ __typename?: 'JiraAiContextPanelDecision';
111122
+ defaultPanel?: Maybe<JiraAiContextPanel>;
111123
+ fallbackPanel?: Maybe<JiraAiContextPanel>;
111124
+ initialState?: Maybe<JiraAiContextPanelInitial>;
111125
+ };
111126
+ export declare enum JiraAiContextPanelInitial {
111127
+ Collapsed = "COLLAPSED",
111128
+ Expanded = "EXPANDED",
111129
+ Hidden = "HIDDEN"
111130
+ }
110268
111131
  export declare type JiraAiEnablementIssueInput = {
110269
111132
  issueId?: InputMaybe<Scalars['ID']['input']>;
110270
111133
  issueKey?: InputMaybe<Scalars['String']['input']>;
@@ -111943,6 +112806,17 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
111943
112806
  top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
111944
112807
  topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
111945
112808
  };
112809
+ export declare type JiraBaseNextActionsEntity = {
112810
+ contentType?: Maybe<JiraNextActionContentType>;
112811
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
112812
+ group?: Maybe<JiraNextActionGroup>;
112813
+ id?: Maybe<Scalars['ID']['output']>;
112814
+ interactionType?: Maybe<JiraNextActionInteractionType>;
112815
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
112816
+ queryError?: Maybe<QueryError>;
112817
+ rank?: Maybe<Scalars['Float']['output']>;
112818
+ rationale?: Maybe<Scalars['String']['output']>;
112819
+ };
111946
112820
  export declare type JiraBaseTimelineView = {
111947
112821
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
111948
112822
  conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
@@ -112281,12 +113155,16 @@ export declare type JiraBoardViewCell = Node & {
112281
113155
  __typename?: 'JiraBoardViewCell';
112282
113156
  canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
112283
113157
  column?: Maybe<JiraBoardViewColumn>;
113158
+ contextFields?: Maybe<Array<JiraBoardViewCellContextField>>;
112284
113159
  id: Scalars['ID']['output'];
112285
113160
  issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
112286
113161
  issues?: Maybe<JiraIssueConnection>;
112287
113162
  swimlane?: Maybe<JiraBoardViewSwimlane>;
112288
113163
  workflows?: Maybe<JiraBoardViewWorkflowConnection>;
112289
113164
  };
113165
+ export declare type JiraBoardViewCellContextFieldsArgs = {
113166
+ settings?: InputMaybe<JiraBoardViewSettings>;
113167
+ };
112290
113168
  export declare type JiraBoardViewCellIssuePositionsArgs = {
112291
113169
  issueIds: Array<Scalars['ID']['input']>;
112292
113170
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -112316,6 +113194,11 @@ export declare type JiraBoardViewCellContainerCellsArgs = {
112316
113194
  first?: InputMaybe<Scalars['Int']['input']>;
112317
113195
  settings?: InputMaybe<JiraBoardViewSettings>;
112318
113196
  };
113197
+ export declare type JiraBoardViewCellContextField = {
113198
+ __typename?: 'JiraBoardViewCellContextField';
113199
+ field?: Maybe<JiraField>;
113200
+ fieldValue?: Maybe<JiraJqlFieldValue>;
113201
+ };
112319
113202
  export declare type JiraBoardViewCellEdge = {
112320
113203
  __typename?: 'JiraBoardViewCellEdge';
112321
113204
  cursor?: Maybe<Scalars['String']['output']>;
@@ -116487,7 +117370,7 @@ export declare type JiraFieldConfigFilterInput = {
116487
117370
  includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
116488
117371
  includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
116489
117372
  includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
116490
- includedFieldTypeCategories?: InputMaybe<Array<JiraFieldTypeGroupCategory>>;
117373
+ includedFieldTypeCategories?: InputMaybe<Array<Scalars['String']['input']>>;
116491
117374
  includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
116492
117375
  orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
116493
117376
  orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
@@ -116878,17 +117761,6 @@ export declare type JiraFieldTypeGroup = {
116878
117761
  displayName?: Maybe<Scalars['String']['output']>;
116879
117762
  key?: Maybe<Scalars['String']['output']>;
116880
117763
  };
116881
- export declare enum JiraFieldTypeGroupCategory {
116882
- DateFields = "DATE_FIELDS",
116883
- ListsFields = "LISTS_FIELDS",
116884
- NumberFields = "NUMBER_FIELDS",
116885
- OtherFields = "OTHER_FIELDS",
116886
- PeopleFields = "PEOPLE_FIELDS",
116887
- RestrictedFields = "RESTRICTED_FIELDS",
116888
- SystemAndAppFields = "SYSTEM_AND_APP_FIELDS",
116889
- TextFields = "TEXT_FIELDS",
116890
- WorkSortingFields = "WORK_SORTING_FIELDS"
116891
- }
116892
117764
  export declare type JiraFieldTypeGroupConnection = {
116893
117765
  __typename?: 'JiraFieldTypeGroupConnection';
116894
117766
  edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
@@ -117627,6 +118499,7 @@ export declare type JiraFormulaFieldConfiguredProjectConnection = {
117627
118499
  hasGlobalContextConfigured?: Maybe<Scalars['Boolean']['output']>;
117628
118500
  pageInfo: PageInfo;
117629
118501
  totalCount?: Maybe<Scalars['Int']['output']>;
118502
+ totalSpaceCount?: Maybe<Scalars['Long']['output']>;
117630
118503
  };
117631
118504
  export declare type JiraFormulaFieldConfiguredProjectEdge = {
117632
118505
  __typename?: 'JiraFormulaFieldConfiguredProjectEdge';
@@ -118297,6 +119170,18 @@ export declare type JiraHydrateJqlInput = {
118297
119170
  lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
118298
119171
  viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
118299
119172
  };
119173
+ export declare type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
119174
+ __typename?: 'JiraImproveDescriptionSuggestion';
119175
+ contentType?: Maybe<JiraNextActionContentType>;
119176
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
119177
+ group?: Maybe<JiraNextActionGroup>;
119178
+ id?: Maybe<Scalars['ID']['output']>;
119179
+ interactionType?: Maybe<JiraNextActionInteractionType>;
119180
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
119181
+ queryError?: Maybe<QueryError>;
119182
+ rank?: Maybe<Scalars['Float']['output']>;
119183
+ rationale?: Maybe<Scalars['String']['output']>;
119184
+ };
118300
119185
  export declare type JiraIncidentActivityActor = {
118301
119186
  __typename?: 'JiraIncidentActivityActor';
118302
119187
  accountId?: Maybe<Scalars['String']['output']>;
@@ -118419,6 +119304,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
118419
119304
  __typename?: 'JiraIssue';
118420
119305
  agentSessions?: Maybe<JiraIssueAgentSessions>;
118421
119306
  aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
119307
+ aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
118422
119308
  allActivities?: Maybe<JiraAllActivityFeedConnection>;
118423
119309
  allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
118424
119310
  approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
@@ -118554,6 +119440,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
118554
119440
  mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
118555
119441
  mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
118556
119442
  mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
119443
+ nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
118557
119444
  parentIssue?: Maybe<JiraIssue>;
118558
119445
  parentIssueField?: Maybe<JiraParentIssueField>;
118559
119446
  pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
@@ -118574,6 +119461,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
118574
119461
  searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
118575
119462
  securityLevelField?: Maybe<JiraSecurityLevelField>;
118576
119463
  securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
119464
+ servicedeskPractices?: Maybe<JiraServiceManagementPractice>;
118577
119465
  shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
118578
119466
  smartSummary?: Maybe<JiraAdf>;
118579
119467
  startDateField?: Maybe<JiraDatePickerField>;
@@ -119328,6 +120216,30 @@ export declare type JiraIssueCreateRankInput = {
119328
120216
  export declare type JiraIssueCreateValidationRule = {
119329
120217
  fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
119330
120218
  };
120219
+ export declare type JiraIssueCreatedProformaFormsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
120220
+ __typename?: 'JiraIssueCreatedProformaFormsField';
120221
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
120222
+ description?: Maybe<Scalars['String']['output']>;
120223
+ fieldConfig?: Maybe<JiraFieldConfig>;
120224
+ fieldId: Scalars['String']['output'];
120225
+ fieldOperations?: Maybe<JiraFieldOperation>;
120226
+ forms?: Maybe<JiraProformaFormConnection>;
120227
+ hasValue?: Maybe<Scalars['Boolean']['output']>;
120228
+ id: Scalars['ID']['output'];
120229
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
120230
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
120231
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
120232
+ issue?: Maybe<JiraIssue>;
120233
+ name: Scalars['String']['output'];
120234
+ type: Scalars['String']['output'];
120235
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
120236
+ };
120237
+ export declare type JiraIssueCreatedProformaFormsFieldFormsArgs = {
120238
+ after?: InputMaybe<Scalars['String']['input']>;
120239
+ before?: InputMaybe<Scalars['String']['input']>;
120240
+ first?: InputMaybe<Scalars['Int']['input']>;
120241
+ last?: InputMaybe<Scalars['Int']['input']>;
120242
+ };
119331
120243
  export declare type JiraIssueCreatedStreamHubPayload = {
119332
120244
  __typename?: 'JiraIssueCreatedStreamHubPayload';
119333
120245
  resource?: Maybe<Scalars['ID']['output']>;
@@ -120243,6 +121155,14 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
120243
121155
  issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
120244
121156
  success: Scalars['Boolean']['output'];
120245
121157
  };
121158
+ export declare type JiraIssueNextActionSuggestions = {
121159
+ __typename?: 'JiraIssueNextActionSuggestions';
121160
+ improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
121161
+ relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
121162
+ sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
121163
+ similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
121164
+ workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
121165
+ };
120246
121166
  export declare type JiraIssueNoEnrichmentStreamHubPayload = {
120247
121167
  __typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
120248
121168
  resource?: Maybe<Scalars['ID']['output']>;
@@ -124366,6 +125286,19 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
124366
125286
  first?: InputMaybe<Scalars['Int']['input']>;
124367
125287
  last?: InputMaybe<Scalars['Int']['input']>;
124368
125288
  };
125289
+ export declare enum JiraNextActionContentType {
125290
+ NextStep = "NEXT_STEP",
125291
+ RecommendedAction = "RECOMMENDED_ACTION"
125292
+ }
125293
+ export declare enum JiraNextActionGroup {
125294
+ AiFeatures = "AI_FEATURES",
125295
+ LoomUpdates = "LOOM_UPDATES",
125296
+ Sdlc = "SDLC"
125297
+ }
125298
+ export declare enum JiraNextActionInteractionType {
125299
+ ActionNudge = "ACTION_NUDGE",
125300
+ Interactive = "INTERACTIVE"
125301
+ }
124369
125302
  export declare enum JiraNotificationCategoryType {
124370
125303
  CommentChanges = "COMMENT_CHANGES",
124371
125304
  IssueAssigned = "ISSUE_ASSIGNED",
@@ -125928,6 +126861,20 @@ export declare enum JiraProductEnum {
125928
126861
  JiraSoftware = "JIRA_SOFTWARE",
125929
126862
  JiraWorkManagement = "JIRA_WORK_MANAGEMENT"
125930
126863
  }
126864
+ export declare type JiraProformaForm = {
126865
+ __typename?: 'JiraProformaForm';
126866
+ id: Scalars['ID']['output'];
126867
+ };
126868
+ export declare type JiraProformaFormConnection = {
126869
+ __typename?: 'JiraProformaFormConnection';
126870
+ edges?: Maybe<Array<Maybe<JiraProformaFormEdge>>>;
126871
+ pageInfo: PageInfo;
126872
+ };
126873
+ export declare type JiraProformaFormEdge = {
126874
+ __typename?: 'JiraProformaFormEdge';
126875
+ cursor: Scalars['String']['output'];
126876
+ node?: Maybe<JiraProformaForm>;
126877
+ };
125931
126878
  export declare type JiraProformaForms = {
125932
126879
  __typename?: 'JiraProformaForms';
125933
126880
  hasIssueForms?: Maybe<Scalars['Boolean']['output']>;
@@ -126187,16 +127134,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
126187
127134
  };
126188
127135
  export declare type JiraProjectPolicyAssociationsArgs = {
126189
127136
  after?: InputMaybe<Scalars['String']['input']>;
126190
- before?: InputMaybe<Scalars['String']['input']>;
126191
127137
  first?: InputMaybe<Scalars['Int']['input']>;
126192
- last?: InputMaybe<Scalars['Int']['input']>;
126193
127138
  };
126194
127139
  export declare type JiraProjectPolicyViolationsArgs = {
126195
127140
  after?: InputMaybe<Scalars['String']['input']>;
126196
- before?: InputMaybe<Scalars['String']['input']>;
126197
127141
  filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
126198
127142
  first?: InputMaybe<Scalars['Int']['input']>;
126199
- last?: InputMaybe<Scalars['Int']['input']>;
126200
127143
  };
126201
127144
  export declare type JiraProjectProjectFieldTypeGroupsArgs = {
126202
127145
  after?: InputMaybe<Scalars['String']['input']>;
@@ -126733,13 +127676,12 @@ export declare type JiraProjectPolicy = Node & {
126733
127676
  eligibleProjects?: Maybe<JiraProjectConnection>;
126734
127677
  id: Scalars['ID']['output'];
126735
127678
  name?: Maybe<Scalars['String']['output']>;
127679
+ rules?: Maybe<JiraProjectPolicyRuleConnection>;
126736
127680
  };
126737
127681
  export declare type JiraProjectPolicyAssociatedProjectsArgs = {
126738
127682
  after?: InputMaybe<Scalars['String']['input']>;
126739
- before?: InputMaybe<Scalars['String']['input']>;
126740
127683
  filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
126741
127684
  first?: InputMaybe<Scalars['Int']['input']>;
126742
- last?: InputMaybe<Scalars['Int']['input']>;
126743
127685
  projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
126744
127686
  };
126745
127687
  export declare type JiraProjectPolicyEligibleProjectsArgs = {
@@ -126747,15 +127689,29 @@ export declare type JiraProjectPolicyEligibleProjectsArgs = {
126747
127689
  filter?: InputMaybe<JiraEligibleProjectsFilter>;
126748
127690
  first?: InputMaybe<Scalars['Int']['input']>;
126749
127691
  };
127692
+ export declare type JiraProjectPolicyRulesArgs = {
127693
+ after?: InputMaybe<Scalars['String']['input']>;
127694
+ first?: InputMaybe<Scalars['Int']['input']>;
127695
+ ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
127696
+ };
126750
127697
  export declare type JiraProjectPolicyAssociation = {
126751
127698
  __typename?: 'JiraProjectPolicyAssociation';
127699
+ complianceState?: Maybe<JiraProjectPolicyComplianceState>;
127700
+ policy?: Maybe<JiraProjectPolicy>;
126752
127701
  project?: Maybe<JiraProject>;
127702
+ ruleViolations?: Maybe<JiraProjectPolicyRuleViolationConnection>;
126753
127703
  };
126754
- export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & {
127704
+ export declare type JiraProjectPolicyAssociationRuleViolationsArgs = {
127705
+ after?: InputMaybe<Scalars['String']['input']>;
127706
+ filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
127707
+ first?: InputMaybe<Scalars['Int']['input']>;
127708
+ };
127709
+ export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & HasTotal & {
126755
127710
  __typename?: 'JiraProjectPolicyAssociationConnection';
126756
127711
  edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
126757
127712
  nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
126758
127713
  pageInfo: PageInfo;
127714
+ totalCount?: Maybe<Scalars['Int']['output']>;
126759
127715
  };
126760
127716
  export declare type JiraProjectPolicyAssociationEdge = {
126761
127717
  __typename?: 'JiraProjectPolicyAssociationEdge';
@@ -126779,8 +127735,31 @@ export declare type JiraProjectPolicyEdge = {
126779
127735
  node?: Maybe<JiraProjectPolicy>;
126780
127736
  };
126781
127737
  export declare type JiraProjectPolicyProjectFilter = {
126782
- complianceState?: InputMaybe<JiraProjectPolicyComplianceState>;
126783
127738
  projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
127739
+ projectNameQuery?: InputMaybe<Scalars['String']['input']>;
127740
+ };
127741
+ export declare type JiraProjectPolicyRule = {
127742
+ __typename?: 'JiraProjectPolicyRule';
127743
+ description?: Maybe<Scalars['String']['output']>;
127744
+ domain?: Maybe<Scalars['String']['output']>;
127745
+ id: Scalars['ID']['output'];
127746
+ ruleType?: Maybe<JiraProjectPolicyRuleType>;
127747
+ };
127748
+ export declare type JiraProjectPolicyRuleConnection = HasPageInfo & HasTotal & {
127749
+ __typename?: 'JiraProjectPolicyRuleConnection';
127750
+ edges?: Maybe<Array<Maybe<JiraProjectPolicyRuleEdge>>>;
127751
+ nodes?: Maybe<Array<Maybe<JiraProjectPolicyRule>>>;
127752
+ pageInfo: PageInfo;
127753
+ totalCount?: Maybe<Scalars['Int']['output']>;
127754
+ };
127755
+ export declare type JiraProjectPolicyRuleEdge = {
127756
+ __typename?: 'JiraProjectPolicyRuleEdge';
127757
+ cursor: Scalars['String']['output'];
127758
+ node?: Maybe<JiraProjectPolicyRule>;
127759
+ };
127760
+ export declare type JiraProjectPolicyRuleType = {
127761
+ __typename?: 'JiraProjectPolicyRuleType';
127762
+ id: Scalars['ID']['output'];
126784
127763
  };
126785
127764
  export declare type JiraProjectPolicyRuleViolation = {
126786
127765
  __typename?: 'JiraProjectPolicyRuleViolation';
@@ -126806,6 +127785,7 @@ export declare type JiraProjectPolicyRuleViolationEdge = {
126806
127785
  };
126807
127786
  export declare type JiraProjectPolicyRuleViolationFilter = {
126808
127787
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
127788
+ ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
126809
127789
  };
126810
127790
  export declare type JiraProjectRecommendation = {
126811
127791
  __typename?: 'JiraProjectRecommendation';
@@ -127151,7 +128131,8 @@ export declare enum JiraPullRequestState {
127151
128131
  Declined = "DECLINED",
127152
128132
  Draft = "DRAFT",
127153
128133
  Merged = "MERGED",
127154
- Open = "OPEN"
128134
+ Open = "OPEN",
128135
+ Queued = "QUEUED"
127155
128136
  }
127156
128137
  export declare type JiraQuery = {
127157
128138
  __typename?: 'JiraQuery';
@@ -127217,6 +128198,7 @@ export declare type JiraQuery = {
127217
128198
  forge: JiraForgeQuery;
127218
128199
  formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
127219
128200
  formulaFieldAvailableReferenceFields?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
128201
+ formulaFieldAvailableReferenceFieldsForScope?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
127220
128202
  formulaFieldConfiguredProjects?: Maybe<JiraFormulaFieldConfiguredProjectConnection>;
127221
128203
  formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
127222
128204
  formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
@@ -127253,6 +128235,7 @@ export declare type JiraQuery = {
127253
128235
  isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
127254
128236
  isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
127255
128237
  isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
128238
+ isUserActiveInAnySpace?: Maybe<Scalars['Boolean']['output']>;
127256
128239
  isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
127257
128240
  issue?: Maybe<JiraIssue>;
127258
128241
  issueById?: Maybe<JiraIssue>;
@@ -127386,6 +128369,7 @@ export declare type JiraQuery = {
127386
128369
  searchUserTeamMention?: Maybe<JiraMentionableConnection>;
127387
128370
  searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
127388
128371
  shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
128372
+ spaceSearchForYou?: Maybe<JiraSpaceSearchForYouConnection>;
127389
128373
  sprintById?: Maybe<JiraSprint>;
127390
128374
  sprintSearch?: Maybe<JiraSprintConnection>;
127391
128375
  startDateField?: Maybe<JiraJqlField>;
@@ -127723,6 +128707,13 @@ export declare type JiraQueryFormulaFieldAvailableReferenceFieldsArgs = {
127723
128707
  projectKey: Scalars['String']['input'];
127724
128708
  searchTerm?: InputMaybe<Scalars['String']['input']>;
127725
128709
  };
128710
+ export declare type JiraQueryFormulaFieldAvailableReferenceFieldsForScopeArgs = {
128711
+ after?: InputMaybe<Scalars['String']['input']>;
128712
+ cloudId: Scalars['ID']['input'];
128713
+ first?: InputMaybe<Scalars['Int']['input']>;
128714
+ projectKey?: InputMaybe<Scalars['String']['input']>;
128715
+ searchTerm?: InputMaybe<Scalars['String']['input']>;
128716
+ };
127726
128717
  export declare type JiraQueryFormulaFieldConfiguredProjectsArgs = {
127727
128718
  after?: InputMaybe<Scalars['String']['input']>;
127728
128719
  cloudId: Scalars['ID']['input'];
@@ -127893,6 +128884,9 @@ export declare type JiraQueryIsRovoLlmEnabledArgs = {
127893
128884
  export declare type JiraQueryIsSubtasksEnabledArgs = {
127894
128885
  cloudId: Scalars['ID']['input'];
127895
128886
  };
128887
+ export declare type JiraQueryIsUserActiveInAnySpaceArgs = {
128888
+ cloudId: Scalars['ID']['input'];
128889
+ };
127896
128890
  export declare type JiraQueryIsVotingEnabledArgs = {
127897
128891
  cloudId: Scalars['ID']['input'];
127898
128892
  };
@@ -128378,10 +129372,8 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
128378
129372
  };
128379
129373
  export declare type JiraQueryProjectPoliciesArgs = {
128380
129374
  after?: InputMaybe<Scalars['String']['input']>;
128381
- before?: InputMaybe<Scalars['String']['input']>;
128382
129375
  cloudId: Scalars['ID']['input'];
128383
129376
  first?: InputMaybe<Scalars['Int']['input']>;
128384
- last?: InputMaybe<Scalars['Int']['input']>;
128385
129377
  };
128386
129378
  export declare type JiraQueryProjectPolicyArgs = {
128387
129379
  id: Scalars['ID']['input'];
@@ -128576,6 +129568,12 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
128576
129568
  atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
128577
129569
  cloudId: Scalars['ID']['input'];
128578
129570
  };
129571
+ export declare type JiraQuerySpaceSearchForYouArgs = {
129572
+ after?: InputMaybe<Scalars['String']['input']>;
129573
+ cloudId: Scalars['ID']['input'];
129574
+ first?: InputMaybe<Scalars['Int']['input']>;
129575
+ input?: InputMaybe<JiraSpaceSearchForYouInput>;
129576
+ };
128579
129577
  export declare type JiraQuerySprintByIdArgs = {
128580
129578
  id: Scalars['ID']['input'];
128581
129579
  };
@@ -128841,6 +129839,47 @@ export declare type JiraRedactionSortInput = {
128841
129839
  field: JiraRedactionSortField;
128842
129840
  order?: SortDirection;
128843
129841
  };
129842
+ export declare type JiraRelatedLinkSuggestionConnection = {
129843
+ __typename?: 'JiraRelatedLinkSuggestionConnection';
129844
+ edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
129845
+ errors?: Maybe<Array<QueryError>>;
129846
+ pageInfo: PageInfo;
129847
+ totalCount?: Maybe<Scalars['Int']['output']>;
129848
+ };
129849
+ export declare type JiraRelatedLinkSuggestionEdge = {
129850
+ __typename?: 'JiraRelatedLinkSuggestionEdge';
129851
+ cursor: Scalars['String']['output'];
129852
+ node?: Maybe<JiraRelatedLinkSuggestionItem>;
129853
+ };
129854
+ export declare type JiraRelatedLinkSuggestionItem = {
129855
+ __typename?: 'JiraRelatedLinkSuggestionItem';
129856
+ iconUrl?: Maybe<Scalars['String']['output']>;
129857
+ id?: Maybe<Scalars['String']['output']>;
129858
+ linkType?: Maybe<Scalars['String']['output']>;
129859
+ name?: Maybe<Scalars['String']['output']>;
129860
+ productSource?: Maybe<Scalars['String']['output']>;
129861
+ sourceProductName?: Maybe<Scalars['String']['output']>;
129862
+ url?: Maybe<Scalars['String']['output']>;
129863
+ };
129864
+ export declare type JiraRelatedLinkSuggestions = JiraBaseNextActionsEntity & {
129865
+ __typename?: 'JiraRelatedLinkSuggestions';
129866
+ contentType?: Maybe<JiraNextActionContentType>;
129867
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
129868
+ group?: Maybe<JiraNextActionGroup>;
129869
+ id?: Maybe<Scalars['ID']['output']>;
129870
+ interactionType?: Maybe<JiraNextActionInteractionType>;
129871
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
129872
+ items?: Maybe<JiraRelatedLinkSuggestionConnection>;
129873
+ queryError?: Maybe<QueryError>;
129874
+ rank?: Maybe<Scalars['Float']['output']>;
129875
+ rationale?: Maybe<Scalars['String']['output']>;
129876
+ };
129877
+ export declare type JiraRelatedLinkSuggestionsItemsArgs = {
129878
+ after?: InputMaybe<Scalars['String']['input']>;
129879
+ before?: InputMaybe<Scalars['String']['input']>;
129880
+ first?: InputMaybe<Scalars['Int']['input']>;
129881
+ last?: InputMaybe<Scalars['Int']['input']>;
129882
+ };
128844
129883
  export declare type JiraReleaseNotesConfiguration = {
128845
129884
  __typename?: 'JiraReleaseNotesConfiguration';
128846
129885
  issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
@@ -129272,7 +130311,7 @@ export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
129272
130311
  columnId: Scalars['ID']['input'];
129273
130312
  settings?: InputMaybe<JiraBoardViewSettings>;
129274
130313
  };
129275
- export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
130314
+ export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = Payload & {
129276
130315
  __typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
129277
130316
  boardView?: Maybe<JiraBoardView>;
129278
130317
  column?: Maybe<JiraBoardViewStatusColumn>;
@@ -129937,6 +130976,20 @@ export declare type JiraRovoConversationMetadata = {
129937
130976
  actionMessageId?: Maybe<Scalars['String']['output']>;
129938
130977
  channelConversationId: Scalars['ID']['output'];
129939
130978
  };
130979
+ export declare type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
130980
+ __typename?: 'JiraSDLCSuggestions';
130981
+ approvedPullRequests?: Maybe<JiraIssuePullRequests>;
130982
+ contentType?: Maybe<JiraNextActionContentType>;
130983
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
130984
+ group?: Maybe<JiraNextActionGroup>;
130985
+ id?: Maybe<Scalars['ID']['output']>;
130986
+ interactionType?: Maybe<JiraNextActionInteractionType>;
130987
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
130988
+ openPullRequests?: Maybe<JiraIssuePullRequests>;
130989
+ queryError?: Maybe<QueryError>;
130990
+ rank?: Maybe<Scalars['Float']['output']>;
130991
+ rationale?: Maybe<Scalars['String']['output']>;
130992
+ };
129940
130993
  export declare type JiraScenario = Node & {
129941
130994
  __typename?: 'JiraScenario';
129942
130995
  color?: Maybe<Scalars['String']['output']>;
@@ -131872,6 +132925,7 @@ export declare type JiraSetTimelineBarColorModePayload = Payload & {
131872
132925
  __typename?: 'JiraSetTimelineBarColorModePayload';
131873
132926
  errors?: Maybe<Array<MutationError>>;
131874
132927
  success: Scalars['Boolean']['output'];
132928
+ view?: Maybe<JiraView>;
131875
132929
  };
131876
132930
  export declare type JiraSetTimelineHighlightedReleasesInput = {
131877
132931
  highlightedReleases: Array<Scalars['ID']['input']>;
@@ -131920,6 +132974,7 @@ export declare type JiraSetTimelineViewHideReleasesPayload = Payload & {
131920
132974
  __typename?: 'JiraSetTimelineViewHideReleasesPayload';
131921
132975
  errors?: Maybe<Array<MutationError>>;
131922
132976
  success: Scalars['Boolean']['output'];
132977
+ view?: Maybe<JiraView>;
131923
132978
  };
131924
132979
  export declare type JiraSetTimelineViewHideWarningsInput = {
131925
132980
  hideWarnings: Scalars['Boolean']['input'];
@@ -132113,6 +133168,42 @@ export declare type JiraSimilarIssues = {
132113
133168
  __typename?: 'JiraSimilarIssues';
132114
133169
  featureEnabled: Scalars['Boolean']['output'];
132115
133170
  };
133171
+ export declare type JiraSimilarWorkItemSuggestionConnection = {
133172
+ __typename?: 'JiraSimilarWorkItemSuggestionConnection';
133173
+ edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
133174
+ errors?: Maybe<Array<QueryError>>;
133175
+ pageInfo: PageInfo;
133176
+ totalCount?: Maybe<Scalars['Int']['output']>;
133177
+ };
133178
+ export declare type JiraSimilarWorkItemSuggestionEdge = {
133179
+ __typename?: 'JiraSimilarWorkItemSuggestionEdge';
133180
+ cursor: Scalars['String']['output'];
133181
+ node?: Maybe<JiraSimilarWorkItemSuggestionItem>;
133182
+ };
133183
+ export declare type JiraSimilarWorkItemSuggestionItem = {
133184
+ __typename?: 'JiraSimilarWorkItemSuggestionItem';
133185
+ issue?: Maybe<JiraIssue>;
133186
+ similarityScore?: Maybe<Scalars['Float']['output']>;
133187
+ };
133188
+ export declare type JiraSimilarWorkItemSuggestions = JiraBaseNextActionsEntity & {
133189
+ __typename?: 'JiraSimilarWorkItemSuggestions';
133190
+ contentType?: Maybe<JiraNextActionContentType>;
133191
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
133192
+ group?: Maybe<JiraNextActionGroup>;
133193
+ id?: Maybe<Scalars['ID']['output']>;
133194
+ interactionType?: Maybe<JiraNextActionInteractionType>;
133195
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
133196
+ items?: Maybe<JiraSimilarWorkItemSuggestionConnection>;
133197
+ queryError?: Maybe<QueryError>;
133198
+ rank?: Maybe<Scalars['Float']['output']>;
133199
+ rationale?: Maybe<Scalars['String']['output']>;
133200
+ };
133201
+ export declare type JiraSimilarWorkItemSuggestionsItemsArgs = {
133202
+ after?: InputMaybe<Scalars['String']['input']>;
133203
+ before?: InputMaybe<Scalars['String']['input']>;
133204
+ first?: InputMaybe<Scalars['Int']['input']>;
133205
+ last?: InputMaybe<Scalars['Int']['input']>;
133206
+ };
132116
133207
  export declare type JiraSimpleNavigationItemType = JiraNavigationItemType & Node & {
132117
133208
  __typename?: 'JiraSimpleNavigationItemType';
132118
133209
  id: Scalars['ID']['output'];
@@ -132414,6 +133505,22 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
132414
133505
  isSimpleBoard: Scalars['Boolean']['output'];
132415
133506
  totalBoardsInProject: Scalars['Long']['output'];
132416
133507
  };
133508
+ export declare type JiraSpaceSearchForYouConnection = {
133509
+ __typename?: 'JiraSpaceSearchForYouConnection';
133510
+ edges?: Maybe<Array<Maybe<JiraSpaceSearchForYouEdge>>>;
133511
+ pageInfo: PageInfo;
133512
+ };
133513
+ export declare type JiraSpaceSearchForYouEdge = {
133514
+ __typename?: 'JiraSpaceSearchForYouEdge';
133515
+ cursor: Scalars['String']['output'];
133516
+ node?: Maybe<JiraProject>;
133517
+ projectId: Scalars['ID']['output'];
133518
+ };
133519
+ export declare type JiraSpaceSearchForYouInput = {
133520
+ spaceId?: InputMaybe<Scalars['ID']['input']>;
133521
+ teamId?: InputMaybe<Scalars['ID']['input']>;
133522
+ userId?: InputMaybe<Scalars['ID']['input']>;
133523
+ };
132417
133524
  export declare type JiraSpreadsheetGroup = {
132418
133525
  __typename?: 'JiraSpreadsheetGroup';
132419
133526
  afterGroupId?: Maybe<Scalars['String']['output']>;
@@ -135500,6 +136607,42 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
135500
136607
  id: Scalars['ID']['output'];
135501
136608
  integration?: Maybe<JiraResourceIntegration>;
135502
136609
  };
136610
+ export declare type JiraWorkBreakdownSuggestionConnection = {
136611
+ __typename?: 'JiraWorkBreakdownSuggestionConnection';
136612
+ edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
136613
+ errors?: Maybe<Array<QueryError>>;
136614
+ pageInfo: PageInfo;
136615
+ totalCount?: Maybe<Scalars['Int']['output']>;
136616
+ };
136617
+ export declare type JiraWorkBreakdownSuggestionEdge = {
136618
+ __typename?: 'JiraWorkBreakdownSuggestionEdge';
136619
+ cursor: Scalars['String']['output'];
136620
+ node?: Maybe<JiraWorkBreakdownSuggestionItem>;
136621
+ };
136622
+ export declare type JiraWorkBreakdownSuggestionItem = {
136623
+ __typename?: 'JiraWorkBreakdownSuggestionItem';
136624
+ description?: Maybe<Scalars['String']['output']>;
136625
+ summary?: Maybe<Scalars['String']['output']>;
136626
+ };
136627
+ export declare type JiraWorkBreakdownSuggestions = JiraBaseNextActionsEntity & {
136628
+ __typename?: 'JiraWorkBreakdownSuggestions';
136629
+ contentType?: Maybe<JiraNextActionContentType>;
136630
+ dismissed?: Maybe<Scalars['Boolean']['output']>;
136631
+ group?: Maybe<JiraNextActionGroup>;
136632
+ id?: Maybe<Scalars['ID']['output']>;
136633
+ interactionType?: Maybe<JiraNextActionInteractionType>;
136634
+ isHidden?: Maybe<Scalars['Boolean']['output']>;
136635
+ items?: Maybe<JiraWorkBreakdownSuggestionConnection>;
136636
+ queryError?: Maybe<QueryError>;
136637
+ rank?: Maybe<Scalars['Float']['output']>;
136638
+ rationale?: Maybe<Scalars['String']['output']>;
136639
+ };
136640
+ export declare type JiraWorkBreakdownSuggestionsItemsArgs = {
136641
+ after?: InputMaybe<Scalars['String']['input']>;
136642
+ before?: InputMaybe<Scalars['String']['input']>;
136643
+ first?: InputMaybe<Scalars['Int']['input']>;
136644
+ last?: InputMaybe<Scalars['Int']['input']>;
136645
+ };
135503
136646
  export declare type JiraWorkCategory = {
135504
136647
  __typename?: 'JiraWorkCategory';
135505
136648
  value?: Maybe<Scalars['String']['output']>;
@@ -136394,6 +137537,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
136394
137537
  name: Scalars['String']['output'];
136395
137538
  numberColumnDisplay?: Maybe<Scalars['String']['output']>;
136396
137539
  rank?: Maybe<Scalars['Int']['output']>;
137540
+ showCardCovers?: Maybe<Scalars['Boolean']['output']>;
136397
137541
  showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
136398
137542
  showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
136399
137543
  showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
@@ -136432,6 +137576,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136432
137576
  fields: Array<JpdViewsServiceField>;
136433
137577
  filter: Array<JpdViewsServiceFilter>;
136434
137578
  groupBy?: Maybe<JpdViewsServiceField>;
137579
+ groupOrder?: Maybe<JpdViewsServiceViewOrderType>;
136435
137580
  groupValues: Array<JpdViewsServiceNestedId>;
136436
137581
  groupsFilter: Array<JpdViewsServiceFilter>;
136437
137582
  hasDraft?: Maybe<Scalars['Boolean']['output']>;
@@ -136444,6 +137589,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136444
137589
  name: Scalars['String']['output'];
136445
137590
  numberColumnDisplay?: Maybe<Scalars['String']['output']>;
136446
137591
  rank?: Maybe<Scalars['Int']['output']>;
137592
+ showCardCovers?: Maybe<Scalars['Boolean']['output']>;
136447
137593
  showConnectionsMatchingColumn: Scalars['Boolean']['output'];
136448
137594
  showConnectionsMatchingGroup: Scalars['Boolean']['output'];
136449
137595
  sort: Array<JpdViewsServiceSort>;
@@ -136453,6 +137599,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
136453
137599
  updatedAt: Scalars['String']['output'];
136454
137600
  uuid: Scalars['String']['output'];
136455
137601
  verticalGroupBy?: Maybe<JpdViewsServiceField>;
137602
+ verticalGroupOrder?: Maybe<JpdViewsServiceViewOrderType>;
136456
137603
  verticalGroupValues: Array<JpdViewsServiceNestedId>;
136457
137604
  verticalGroupsFilter: Array<JpdViewsServiceFilter>;
136458
137605
  viewId: Scalars['String']['output'];
@@ -136688,6 +137835,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
136688
137835
  matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
136689
137836
  name?: InputMaybe<Scalars['String']['input']>;
136690
137837
  numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
137838
+ showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
136691
137839
  showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
136692
137840
  showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
136693
137841
  sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
@@ -136714,6 +137862,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136714
137862
  fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
136715
137863
  filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136716
137864
  groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
137865
+ groupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
136717
137866
  groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
136718
137867
  groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136719
137868
  hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
@@ -136724,6 +137873,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136724
137873
  matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
136725
137874
  name?: InputMaybe<Scalars['String']['input']>;
136726
137875
  numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
137876
+ showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
136727
137877
  showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
136728
137878
  showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
136729
137879
  sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
@@ -136731,6 +137881,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
136731
137881
  tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
136732
137882
  timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
136733
137883
  verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
137884
+ verticalGroupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
136734
137885
  verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
136735
137886
  verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
136736
137887
  visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
@@ -136774,6 +137925,13 @@ export declare enum JpdViewsServiceViewLayoutType {
136774
137925
  Detailed = "DETAILED",
136775
137926
  Summary = "SUMMARY"
136776
137927
  }
137928
+ export declare enum JpdViewsServiceViewOrderType {
137929
+ Asc = "ASC",
137930
+ Desc = "DESC"
137931
+ }
137932
+ export declare type JpdViewsServiceViewOrderTypeInput = {
137933
+ value?: InputMaybe<JpdViewsServiceViewOrderType>;
137934
+ };
136777
137935
  export declare enum JpdViewsServiceVisualizationType {
136778
137936
  Board = "BOARD",
136779
137937
  Matrix = "MATRIX",
@@ -136823,7 +137981,9 @@ export declare type JsmChannelsEstablishConnectionInput = {
136823
137981
  };
136824
137982
  export declare type JsmChannelsEstablishConnectionPayload = Payload & {
136825
137983
  __typename?: 'JsmChannelsEstablishConnectionPayload';
137984
+ containerId?: Maybe<Scalars['String']['output']>;
136826
137985
  errors?: Maybe<Array<MutationError>>;
137986
+ redirectUrl?: Maybe<Scalars['String']['output']>;
136827
137987
  serviceId?: Maybe<Scalars['String']['output']>;
136828
137988
  success: Scalars['Boolean']['output'];
136829
137989
  };
@@ -136835,6 +137995,8 @@ export declare type JsmChannelsExperienceConfiguration = {
136835
137995
  __typename?: 'JsmChannelsExperienceConfiguration';
136836
137996
  filter?: Maybe<JsmChannelsFilterConfiguration>;
136837
137997
  isEnabled: Scalars['Boolean']['output'];
137998
+ previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
137999
+ setupStatus?: Maybe<JsmChannelsExperienceSetupStatus>;
136838
138000
  };
136839
138001
  export declare type JsmChannelsExperienceConfigurationByProjectIdsQueryPayload = {
136840
138002
  __typename?: 'JsmChannelsExperienceConfigurationByProjectIdsQueryPayload';
@@ -136857,6 +138019,10 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
136857
138019
  success: Scalars['Boolean']['output'];
136858
138020
  };
136859
138021
  export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
138022
+ export declare type JsmChannelsExperienceSetupStatus = {
138023
+ __typename?: 'JsmChannelsExperienceSetupStatus';
138024
+ code: Scalars['String']['output'];
138025
+ };
136860
138026
  export declare type JsmChannelsFilterConfiguration = {
136861
138027
  __typename?: 'JsmChannelsFilterConfiguration';
136862
138028
  evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
@@ -136970,6 +138136,7 @@ export declare enum JsmChannelsPlanNodeType {
136970
138136
  export declare type JsmChannelsPreviewModeConfiguration = {
136971
138137
  __typename?: 'JsmChannelsPreviewModeConfiguration';
136972
138138
  enabled: Scalars['Boolean']['output'];
138139
+ id?: Maybe<Scalars['ID']['output']>;
136973
138140
  };
136974
138141
  export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
136975
138142
  export declare type JsmChannelsProjectQueryFilter = {
@@ -137015,6 +138182,10 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
137015
138182
  errors?: Maybe<Array<MutationError>>;
137016
138183
  success: Scalars['Boolean']['output'];
137017
138184
  };
138185
+ export declare enum JsmChannelsResolutionPlanAssigneeType {
138186
+ Human = "HUMAN",
138187
+ TaskAgent = "TASK_AGENT"
138188
+ }
137018
138189
  export declare type JsmChannelsResolutionPlanGraph = {
137019
138190
  __typename?: 'JsmChannelsResolutionPlanGraph';
137020
138191
  conversationId?: Maybe<Scalars['ID']['output']>;
@@ -137039,6 +138210,13 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
137039
138210
  Pending = "PENDING",
137040
138211
  Waiting = "WAITING"
137041
138212
  }
138213
+ export declare type JsmChannelsRovoServiceAgentConfig = {
138214
+ __typename?: 'JsmChannelsRovoServiceAgentConfig';
138215
+ isRovoServiceEnabled: Scalars['Boolean']['output'];
138216
+ requestTypesEnabled: Scalars['Int']['output'];
138217
+ taskAgentsEnabled: Scalars['Int']['output'];
138218
+ };
138219
+ export declare type JsmChannelsRovoServiceAgentConfigResult = JsmChannelsRovoServiceAgentConfig | QueryError;
137042
138220
  export declare enum JsmChannelsRuleEvaluationStrategy {
137043
138221
  JqlFirst = "JQL_FIRST",
137044
138222
  JqlOnly = "JQL_ONLY",
@@ -137090,6 +138268,7 @@ export declare type JsmChannelsSetPreviewModePayload = Payload & {
137090
138268
  };
137091
138269
  export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
137092
138270
  __typename?: 'JsmChannelsStepNode';
138271
+ assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
137093
138272
  customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
137094
138273
  estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
137095
138274
  id: Scalars['ID']['output'];
@@ -138419,6 +139598,7 @@ export declare type KitsuneField = Node & {
138419
139598
  id: Scalars['ID']['output'];
138420
139599
  name: Scalars['String']['output'];
138421
139600
  type: KitsuneFieldType;
139601
+ valueType?: Maybe<KitsuneFieldValueType>;
138422
139602
  };
138423
139603
  export declare type KitsuneFieldConnection = KitsuneConnection & {
138424
139604
  __typename?: 'KitsuneFieldConnection';
@@ -138443,6 +139623,17 @@ export declare type KitsuneFieldValue = {
138443
139623
  __typename?: 'KitsuneFieldValue';
138444
139624
  _id: Scalars['ID']['output'];
138445
139625
  };
139626
+ export declare enum KitsuneFieldValueType {
139627
+ Boolean = "BOOLEAN",
139628
+ Date = "DATE",
139629
+ Email = "EMAIL",
139630
+ Multiselect = "MULTISELECT",
139631
+ Number = "NUMBER",
139632
+ Phone = "PHONE",
139633
+ Select = "SELECT",
139634
+ Text = "TEXT",
139635
+ Url = "URL"
139636
+ }
138446
139637
  export declare type KitsuneFilter = {
138447
139638
  __typename?: 'KitsuneFilter';
138448
139639
  comparisonOperator: KitsuneComparisonOperator;
@@ -138473,7 +139664,9 @@ export declare type KitsuneInsight = Node & {
138473
139664
  createdAt: Scalars['DateTime']['output'];
138474
139665
  creator?: Maybe<User>;
138475
139666
  creatorId?: Maybe<Scalars['ID']['output']>;
139667
+ externalId?: Maybe<Scalars['ID']['output']>;
138476
139668
  id: Scalars['ID']['output'];
139669
+ jiraIssue?: Maybe<JiraIssue>;
138477
139670
  snippets: KitsuneSnippetConnection;
138478
139671
  summary?: Maybe<KitsuneSummary>;
138479
139672
  title: Scalars['String']['output'];
@@ -143560,6 +144753,15 @@ export declare enum MarketplaceStoreAcceptableResponse {
143560
144753
  NotApplicable = "NOT_APPLICABLE",
143561
144754
  True = "TRUE"
143562
144755
  }
144756
+ export declare type MarketplaceStoreActiveApp = {
144757
+ __typename?: 'MarketplaceStoreActiveApp';
144758
+ appKey: Scalars['String']['output'];
144759
+ parentProducts: Array<MarketplaceStoreActiveParentProduct>;
144760
+ };
144761
+ export declare type MarketplaceStoreActiveParentProduct = {
144762
+ __typename?: 'MarketplaceStoreActiveParentProduct';
144763
+ parentProductKey: Scalars['String']['output'];
144764
+ };
143563
144765
  export declare type MarketplaceStoreAlgoliaFilter = {
143564
144766
  __typename?: 'MarketplaceStoreAlgoliaFilter';
143565
144767
  key: Scalars['String']['output'];
@@ -144711,6 +145913,11 @@ export declare type MarketplaceStorePrivacyEnhancingTechniques = {
144711
145913
  export declare type MarketplaceStoreProduct = {
144712
145914
  appKey?: InputMaybe<Scalars['String']['input']>;
144713
145915
  };
145916
+ export declare type MarketplaceStoreProductDetailsByCloudIdResponse = {
145917
+ __typename?: 'MarketplaceStoreProductDetailsByCloudIdResponse';
145918
+ activeApps: Array<MarketplaceStoreActiveApp>;
145919
+ cloudId: Scalars['String']['output'];
145920
+ };
144714
145921
  export declare type MarketplaceStoreProductListing = {
144715
145922
  __typename?: 'MarketplaceStoreProductListing';
144716
145923
  developerId: Scalars['ID']['output'];
@@ -144832,6 +146039,7 @@ export declare type MarketplaceStoreQueryApi = {
144832
146039
  partnerByPartnerName?: Maybe<MarketplaceStoreSearchPartnerResponse>;
144833
146040
  personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
144834
146041
  privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
146042
+ productDetailsByCloudId?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
144835
146043
  productTags?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
144836
146044
  recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
144837
146045
  reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
@@ -144955,6 +146163,9 @@ export declare type MarketplaceStoreQueryApiPersonalisedContextAndLayoutArgs = {
144955
146163
  export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
144956
146164
  input: MarketplaceStorePrivacyAndSecurityRequestInput;
144957
146165
  };
146166
+ export declare type MarketplaceStoreQueryApiProductDetailsByCloudIdArgs = {
146167
+ cloudId: Scalars['String']['input'];
146168
+ };
144958
146169
  export declare type MarketplaceStoreQueryApiProductTagsArgs = {
144959
146170
  tagType?: InputMaybe<MarketplaceStoreProductTagType>;
144960
146171
  };
@@ -145300,10 +146511,21 @@ export declare type MediaFileAbuseClassification = {
145300
146511
  classification?: Maybe<Scalars['String']['output']>;
145301
146512
  confidence?: Maybe<Scalars['String']['output']>;
145302
146513
  };
146514
+ export declare type MediaFileArtifact = {
146515
+ __typename?: 'MediaFileArtifact';
146516
+ cdnUrl?: Maybe<Scalars['String']['output']>;
146517
+ createdAt?: Maybe<Scalars['Long']['output']>;
146518
+ mimeType?: Maybe<Scalars['String']['output']>;
146519
+ name: Scalars['String']['output'];
146520
+ processingStatus?: Maybe<Scalars['String']['output']>;
146521
+ size?: Maybe<Scalars['Long']['output']>;
146522
+ url?: Maybe<Scalars['String']['output']>;
146523
+ };
145303
146524
  export declare type MediaFileDetails = {
145304
146525
  __typename?: 'MediaFileDetails';
145305
146526
  abuseClassification?: Maybe<MediaFileAbuseClassification>;
145306
146527
  artifacts?: Maybe<Scalars['JSONObject']['output']>;
146528
+ artifactsList?: Maybe<Array<MediaFileArtifact>>;
145307
146529
  createdAt?: Maybe<Scalars['Long']['output']>;
145308
146530
  failReason?: Maybe<Scalars['String']['output']>;
145309
146531
  mediaMetadata?: Maybe<MediaFileMetadata>;
@@ -145318,6 +146540,9 @@ export declare type MediaFileDetails = {
145318
146540
  export declare type MediaFileDetailsArtifactsArgs = {
145319
146541
  types?: InputMaybe<Array<Scalars['String']['input']>>;
145320
146542
  };
146543
+ export declare type MediaFileDetailsArtifactsListArgs = {
146544
+ types?: InputMaybe<Array<Scalars['String']['input']>>;
146545
+ };
145321
146546
  export declare type MediaFileMetadata = {
145322
146547
  __typename?: 'MediaFileMetadata';
145323
146548
  duration?: Maybe<Scalars['Float']['output']>;
@@ -145529,7 +146754,6 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
145529
146754
  success: Scalars['Boolean']['output'];
145530
146755
  };
145531
146756
  export declare type MercuryArchiveOrganizationInput = {
145532
- cloudId?: InputMaybe<Scalars['ID']['input']>;
145533
146757
  comment?: InputMaybe<Scalars['String']['input']>;
145534
146758
  id: Scalars['ID']['input'];
145535
146759
  };
@@ -146640,6 +147864,14 @@ export declare type MercuryCreateThreadedCommentPayload = Payload & {
146640
147864
  errors?: Maybe<Array<MutationError>>;
146641
147865
  success: Scalars['Boolean']['output'];
146642
147866
  };
147867
+ export declare type MercuryCreateViewInput = {
147868
+ cloudId: Scalars['ID']['input'];
147869
+ entityType: Scalars['String']['input'];
147870
+ name: Scalars['String']['input'];
147871
+ owner?: InputMaybe<Scalars['ID']['input']>;
147872
+ settings: MercuryViewSettingsInput;
147873
+ starred?: InputMaybe<Scalars['Boolean']['input']>;
147874
+ };
146643
147875
  export declare type MercuryCurrency = {
146644
147876
  __typename?: 'MercuryCurrency';
146645
147877
  code?: Maybe<Scalars['String']['output']>;
@@ -147116,6 +148348,15 @@ export declare type MercuryDeleteThreadedCommentPayload = Payload & {
147116
148348
  errors?: Maybe<Array<MutationError>>;
147117
148349
  success: Scalars['Boolean']['output'];
147118
148350
  };
148351
+ export declare type MercuryDeleteViewInput = {
148352
+ id: Scalars['ID']['input'];
148353
+ };
148354
+ export declare type MercuryDeleteViewPayload = Payload & {
148355
+ __typename?: 'MercuryDeleteViewPayload';
148356
+ errors?: Maybe<Array<MutationError>>;
148357
+ id: Scalars['ID']['output'];
148358
+ success: Scalars['Boolean']['output'];
148359
+ };
147119
148360
  export declare type MercuryDismissInsightInput = {
147120
148361
  dismissalType: MercuryDismissalType;
147121
148362
  focusAreaId: Scalars['ID']['input'];
@@ -150012,6 +151253,7 @@ export declare enum MercuryPermission {
150012
151253
  ExportFocusArea = "EXPORT_FOCUS_AREA",
150013
151254
  ExportFocusAreaView = "EXPORT_FOCUS_AREA_VIEW",
150014
151255
  Manage = "MANAGE",
151256
+ RankFocusArea = "RANK_FOCUS_AREA",
150015
151257
  Read = "READ",
150016
151258
  ViewFocusAreaFund = "VIEW_FOCUS_AREA_FUND",
150017
151259
  ViewRisk = "VIEW_RISK",
@@ -150339,21 +151581,23 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
150339
151581
  };
150340
151582
  export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
150341
151583
  after?: InputMaybe<Scalars['String']['input']>;
151584
+ applicationKey?: InputMaybe<Scalars['String']['input']>;
150342
151585
  changeProposalId: Scalars['ID']['input'];
150343
151586
  cloudId: Scalars['ID']['input'];
150344
151587
  filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
150345
151588
  first?: InputMaybe<Scalars['Int']['input']>;
150346
- providerKey: Scalars['String']['input'];
151589
+ providerKey?: InputMaybe<Scalars['String']['input']>;
150347
151590
  textQuery?: InputMaybe<Scalars['String']['input']>;
150348
151591
  workContainerAri?: InputMaybe<Scalars['String']['input']>;
150349
151592
  };
150350
151593
  export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
150351
151594
  after?: InputMaybe<Scalars['String']['input']>;
151595
+ applicationKey?: InputMaybe<Scalars['String']['input']>;
150352
151596
  cloudId: Scalars['ID']['input'];
150353
151597
  filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
150354
151598
  first?: InputMaybe<Scalars['Int']['input']>;
150355
151599
  focusAreaId?: InputMaybe<Scalars['ID']['input']>;
150356
- providerKey: Scalars['String']['input'];
151600
+ providerKey?: InputMaybe<Scalars['String']['input']>;
150357
151601
  textQuery?: InputMaybe<Scalars['String']['input']>;
150358
151602
  workContainerAri?: InputMaybe<Scalars['String']['input']>;
150359
151603
  };
@@ -150780,6 +152024,15 @@ export declare type MercuryReorderOrganizationTypesPayload = Payload & {
150780
152024
  reorderedOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
150781
152025
  success: Scalars['Boolean']['output'];
150782
152026
  };
152027
+ export declare type MercuryReorderStarredViewInput = {
152028
+ after?: InputMaybe<Scalars['ID']['input']>;
152029
+ id: Scalars['ID']['input'];
152030
+ };
152031
+ export declare type MercuryReorderStarredViewPayload = Payload & {
152032
+ __typename?: 'MercuryReorderStarredViewPayload';
152033
+ errors?: Maybe<Array<MutationError>>;
152034
+ success: Scalars['Boolean']['output'];
152035
+ };
150783
152036
  export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
150784
152037
  __typename?: 'MercuryRequestFundsChange';
150785
152038
  amount: Scalars['BigDecimal']['output'];
@@ -151339,6 +152592,15 @@ export declare type MercuryStarOrganizationViewPayload = Payload & {
151339
152592
  errors?: Maybe<Array<MutationError>>;
151340
152593
  success: Scalars['Boolean']['output'];
151341
152594
  };
152595
+ export declare type MercuryStarViewInput = {
152596
+ id: Scalars['ID']['input'];
152597
+ };
152598
+ export declare type MercuryStarViewPayload = Payload & {
152599
+ __typename?: 'MercuryStarViewPayload';
152600
+ errors?: Maybe<Array<MutationError>>;
152601
+ success: Scalars['Boolean']['output'];
152602
+ view?: Maybe<MercuryView>;
152603
+ };
151342
152604
  export declare enum MercuryStatusColor {
151343
152605
  Blue = "BLUE",
151344
152606
  Gray = "GRAY",
@@ -151963,7 +153225,6 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
151963
153225
  success: Scalars['Boolean']['output'];
151964
153226
  };
151965
153227
  export declare type MercuryUnarchiveOrganizationInput = {
151966
- cloudId?: InputMaybe<Scalars['ID']['input']>;
151967
153228
  comment?: InputMaybe<Scalars['String']['input']>;
151968
153229
  id: Scalars['ID']['input'];
151969
153230
  };
@@ -152056,6 +153317,15 @@ export declare type MercuryUnsetBaselinePayload = Payload & {
152056
153317
  success: Scalars['Boolean']['output'];
152057
153318
  unsetBaseline?: Maybe<MercuryBaselineDetails>;
152058
153319
  };
153320
+ export declare type MercuryUnstarViewInput = {
153321
+ id: Scalars['ID']['input'];
153322
+ };
153323
+ export declare type MercuryUnstarViewPayload = Payload & {
153324
+ __typename?: 'MercuryUnstarViewPayload';
153325
+ errors?: Maybe<Array<MutationError>>;
153326
+ success: Scalars['Boolean']['output'];
153327
+ view?: Maybe<MercuryView>;
153328
+ };
152059
153329
  export declare type MercuryUpdateActiveCurrencyInput = {
152060
153330
  cloudId?: InputMaybe<Scalars['ID']['input']>;
152061
153331
  currencyCode: Scalars['String']['input'];
@@ -152622,6 +153892,18 @@ export declare type MercuryUpdateThreadedCommentPayload = Payload & {
152622
153892
  success: Scalars['Boolean']['output'];
152623
153893
  updatedComment?: Maybe<MercuryThreadedComment>;
152624
153894
  };
153895
+ export declare type MercuryUpdateViewNameInput = {
153896
+ id: Scalars['ID']['input'];
153897
+ name: Scalars['String']['input'];
153898
+ };
153899
+ export declare type MercuryUpdateViewOwnerInput = {
153900
+ id: Scalars['ID']['input'];
153901
+ ownerId: Scalars['String']['input'];
153902
+ };
153903
+ export declare type MercuryUpdateViewSettingsInput = {
153904
+ id: Scalars['ID']['input'];
153905
+ settings: MercuryViewSettingsInput;
153906
+ };
152625
153907
  export declare type MercuryUpdatedField = {
152626
153908
  __typename?: 'MercuryUpdatedField';
152627
153909
  field?: Maybe<Scalars['String']['output']>;
@@ -152634,6 +153916,12 @@ export declare type MercuryUpdatedField = {
152634
153916
  oldString?: Maybe<Scalars['String']['output']>;
152635
153917
  oldValue?: Maybe<Scalars['String']['output']>;
152636
153918
  };
153919
+ export declare type MercuryUpsertViewPayload = Payload & {
153920
+ __typename?: 'MercuryUpsertViewPayload';
153921
+ errors?: Maybe<Array<MutationError>>;
153922
+ success: Scalars['Boolean']['output'];
153923
+ view?: Maybe<MercuryView>;
153924
+ };
152637
153925
  export declare type MercuryUserConnection = {
152638
153926
  __typename?: 'MercuryUserConnection';
152639
153927
  edges?: Maybe<Array<Maybe<MercuryUserEdge>>>;
@@ -152656,6 +153944,46 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
152656
153944
  success: Scalars['Boolean']['output'];
152657
153945
  validation?: Maybe<MercuryFocusAreaRankingValidation>;
152658
153946
  };
153947
+ export declare type MercuryView = Node & {
153948
+ __typename?: 'MercuryView';
153949
+ createdBy?: Maybe<User>;
153950
+ createdDate?: Maybe<Scalars['DateTime']['output']>;
153951
+ entityType: Scalars['String']['output'];
153952
+ id: Scalars['ID']['output'];
153953
+ isStarred: Scalars['Boolean']['output'];
153954
+ name: Scalars['String']['output'];
153955
+ owner?: Maybe<User>;
153956
+ settings?: Maybe<MercuryViewSettings>;
153957
+ updatedBy?: Maybe<User>;
153958
+ updatedDate?: Maybe<Scalars['DateTime']['output']>;
153959
+ };
153960
+ export declare type MercuryViewConnection = {
153961
+ __typename?: 'MercuryViewConnection';
153962
+ edges?: Maybe<Array<MercuryViewEdge>>;
153963
+ pageInfo: PageInfo;
153964
+ totalCount?: Maybe<Scalars['Int']['output']>;
153965
+ };
153966
+ export declare type MercuryViewEdge = {
153967
+ __typename?: 'MercuryViewEdge';
153968
+ cursor: Scalars['String']['output'];
153969
+ node?: Maybe<MercuryView>;
153970
+ };
153971
+ export declare type MercuryViewSettingEntry = {
153972
+ __typename?: 'MercuryViewSettingEntry';
153973
+ key: Scalars['String']['output'];
153974
+ value: Scalars['String']['output'];
153975
+ };
153976
+ export declare type MercuryViewSettingEntryInput = {
153977
+ key: Scalars['String']['input'];
153978
+ value?: InputMaybe<Scalars['String']['input']>;
153979
+ };
153980
+ export declare type MercuryViewSettings = {
153981
+ __typename?: 'MercuryViewSettings';
153982
+ values?: Maybe<Array<MercuryViewSettingEntry>>;
153983
+ };
153984
+ export declare type MercuryViewSettingsInput = {
153985
+ values: Array<MercuryViewSettingEntryInput>;
153986
+ };
152659
153987
  export declare enum MercuryViewType {
152660
153988
  HierarchyView = "HIERARCHY_VIEW",
152661
153989
  RankingView = "RANKING_VIEW"
@@ -152979,6 +154307,7 @@ export declare type Mutation = {
152979
154307
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
152980
154308
  addReaction?: Maybe<SaveReactionResponse>;
152981
154309
  admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
154310
+ admin_addConnector?: Maybe<AdminAddConnectorPayload>;
152982
154311
  admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
152983
154312
  admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
152984
154313
  admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
@@ -152986,12 +154315,14 @@ export declare type Mutation = {
152986
154315
  admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
152987
154316
  admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
152988
154317
  admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
154318
+ admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
152989
154319
  admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
152990
154320
  admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
152991
154321
  admin_deleteAiPolicy?: Maybe<AdminDeleteAiPolicyResponsePayload>;
152992
154322
  admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
152993
154323
  admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
152994
154324
  admin_invite?: Maybe<AdminInviteResponsePayload>;
154325
+ admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
152995
154326
  admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
152996
154327
  admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
152997
154328
  admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
@@ -153043,7 +154374,9 @@ export declare type Mutation = {
153043
154374
  agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
153044
154375
  agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
153045
154376
  agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
154377
+ agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
153046
154378
  agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
154379
+ agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
153047
154380
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
153048
154381
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
153049
154382
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
@@ -153057,9 +154390,12 @@ export declare type Mutation = {
153057
154390
  agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
153058
154391
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
153059
154392
  agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
154393
+ agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
154394
+ agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
153060
154395
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
153061
154396
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
153062
154397
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
154398
+ agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
153063
154399
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
153064
154400
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
153065
154401
  aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
@@ -153140,17 +154476,17 @@ export declare type Mutation = {
153140
154476
  assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
153141
154477
  assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
153142
154478
  assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
153143
- assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
154479
+ assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
153144
154480
  assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
153145
154481
  assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
153146
154482
  assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
153147
154483
  assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
153148
154484
  assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
153149
154485
  assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
153150
- assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
154486
+ assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
153151
154487
  assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
153152
154488
  assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
153153
- assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
154489
+ assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
153154
154490
  assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
153155
154491
  assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
153156
154492
  assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
@@ -153219,7 +154555,6 @@ export declare type Mutation = {
153219
154555
  bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
153220
154556
  bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
153221
154557
  ccp?: Maybe<CcpMutationApi>;
153222
- ccp_updateAllowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationUpdateResult>>>;
153223
154558
  champion?: Maybe<UnifiedChampionMutation>;
153224
154559
  changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
153225
154560
  changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
@@ -153278,6 +154613,7 @@ export declare type Mutation = {
153278
154613
  confluence_createSmartFolder?: Maybe<ConfluenceCreateSmartFolderPayload>;
153279
154614
  confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
153280
154615
  confluence_createWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
154616
+ confluence_createWorkflowApplicationWithReview?: Maybe<ConfluenceWorkflowApplicationPayload>;
153281
154617
  confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
153282
154618
  confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
153283
154619
  confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
@@ -153337,6 +154673,7 @@ export declare type Mutation = {
153337
154673
  confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
153338
154674
  confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
153339
154675
  confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
154676
+ confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
153340
154677
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
153341
154678
  confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
153342
154679
  confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
@@ -153492,6 +154829,7 @@ export declare type Mutation = {
153492
154829
  csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
153493
154830
  csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
153494
154831
  csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
154832
+ csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
153495
154833
  csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
153496
154834
  customerService?: Maybe<CustomerServiceMutationApi>;
153497
154835
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
@@ -153585,6 +154923,14 @@ export declare type Mutation = {
153585
154923
  favouritePage?: Maybe<FavouritePagePayload>;
153586
154924
  favouriteSpace?: Maybe<FavouriteSpacePayload>;
153587
154925
  favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
154926
+ focus_createView?: Maybe<MercuryUpsertViewPayload>;
154927
+ focus_deleteView?: Maybe<MercuryDeleteViewPayload>;
154928
+ focus_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
154929
+ focus_starView?: Maybe<MercuryStarViewPayload>;
154930
+ focus_unstarView?: Maybe<MercuryUnstarViewPayload>;
154931
+ focus_updateViewName?: Maybe<MercuryUpsertViewPayload>;
154932
+ focus_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
154933
+ focus_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
153588
154934
  followUser?: Maybe<FollowUserPayload>;
153589
154935
  generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
153590
154936
  generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
@@ -153666,6 +155012,7 @@ export declare type Mutation = {
153666
155012
  gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
153667
155013
  gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
153668
155014
  gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
155015
+ gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
153669
155016
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
153670
155017
  growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
153671
155018
  growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
@@ -153850,6 +155197,7 @@ export declare type Mutation = {
153850
155197
  kitsune_createCustomer?: Maybe<KitsuneCustomer>;
153851
155198
  kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
153852
155199
  kitsune_createFeedback?: Maybe<KitsuneFeedback>;
155200
+ kitsune_createField?: Maybe<KitsuneField>;
153853
155201
  kitsune_createInsight?: Maybe<KitsuneInsight>;
153854
155202
  kitsune_createOrganization?: Maybe<KitsuneOrganization>;
153855
155203
  kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
@@ -153864,6 +155212,7 @@ export declare type Mutation = {
153864
155212
  kitsune_moveView?: Maybe<KitsuneSpace>;
153865
155213
  kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
153866
155214
  kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
155215
+ kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
153867
155216
  kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
153868
155217
  kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
153869
155218
  kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
@@ -153874,6 +155223,7 @@ export declare type Mutation = {
153874
155223
  kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
153875
155224
  kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
153876
155225
  kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
155226
+ kitsune_updateField?: Maybe<KitsuneField>;
153877
155227
  kitsune_updateInsight?: Maybe<KitsuneInsight>;
153878
155228
  kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
153879
155229
  kitsune_updateSection?: Maybe<KitsuneSection>;
@@ -154086,6 +155436,7 @@ export declare type Mutation = {
154086
155436
  spf_createAsk?: Maybe<SpfUpsertAskPayload>;
154087
155437
  spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
154088
155438
  spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
155439
+ spf_createAsks?: Maybe<SpfCreateAsksPayload>;
154089
155440
  spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
154090
155441
  spf_createPlanPortfolioAllowedType?: Maybe<SpfUpsertPlanPortfolioAllowedTypePayload>;
154091
155442
  spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
@@ -154262,6 +155613,7 @@ export declare type Mutation = {
154262
155613
  updateUserPreferences?: Maybe<UserPreferences>;
154263
155614
  upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
154264
155615
  userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
155616
+ uts_updateAllowancePoolAllocations?: Maybe<Array<Maybe<UtsAllowancePoolAllocationUpdateResult>>>;
154265
155617
  virtualAgent?: Maybe<VirtualAgentMutationApi>;
154266
155618
  watchBlogs?: Maybe<WatchSpacePayload>;
154267
155619
  watchContent?: Maybe<WatchContentPayload>;
@@ -154293,6 +155645,16 @@ export declare type MutationAddReactionArgs = {
154293
155645
  export declare type MutationAdmin_ActivateUserArgs = {
154294
155646
  input: AdminActivateUserInput;
154295
155647
  };
155648
+ export declare type MutationAdmin_AddConnectorArgs = {
155649
+ connectorId: Scalars['ID']['input'];
155650
+ connectorName: Scalars['String']['input'];
155651
+ connectorSyncType?: InputMaybe<Scalars['String']['input']>;
155652
+ connectorType: Scalars['String']['input'];
155653
+ consentText: Scalars['String']['input'];
155654
+ orgId: Scalars['ID']['input'];
155655
+ properties: Array<AdminConnectorPropertyInput>;
155656
+ resourceId: Scalars['ID']['input'];
155657
+ };
154296
155658
  export declare type MutationAdmin_AssignRoleArgs = {
154297
155659
  assignRoleInput?: InputMaybe<AdminAssignRoleInput>;
154298
155660
  directoryId?: InputMaybe<Scalars['ID']['input']>;
@@ -154324,6 +155686,12 @@ export declare type MutationAdmin_CreateInvitePolicyArgs = {
154324
155686
  createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
154325
155687
  orgId: Scalars['ID']['input'];
154326
155688
  };
155689
+ export declare type MutationAdmin_CreateOutboundAuthServiceArgs = {
155690
+ datasourceId: Scalars['ID']['input'];
155691
+ orgId: Scalars['ID']['input'];
155692
+ properties: Array<AdminConnectorPropertyInput>;
155693
+ resourceId: Scalars['ID']['input'];
155694
+ };
154327
155695
  export declare type MutationAdmin_DeactivateUserArgs = {
154328
155696
  input: AdminDeactivateUserInput;
154329
155697
  };
@@ -154345,6 +155713,11 @@ export declare type MutationAdmin_InviteArgs = {
154345
155713
  inviteInput: AdminInviteInput;
154346
155714
  orgId: Scalars['ID']['input'];
154347
155715
  };
155716
+ export declare type MutationAdmin_RegisterNewDataSourceIdArgs = {
155717
+ connectorType: Scalars['String']['input'];
155718
+ orgId: Scalars['ID']['input'];
155719
+ resourceId: Scalars['ID']['input'];
155720
+ };
154348
155721
  export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
154349
155722
  input: AdminReleaseImpersonationUserInput;
154350
155723
  };
@@ -154576,9 +155949,15 @@ export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
154576
155949
  export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
154577
155950
  input: AgentWorkspaceAssignAgentsToSkillInput;
154578
155951
  };
155952
+ export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
155953
+ input: AgentWorkspaceCancelRoutingTableGenerationInput;
155954
+ };
154579
155955
  export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
154580
155956
  input: AgentWorkspaceCreateAndLinkTeamsInput;
154581
155957
  };
155958
+ export declare type MutationAgentWorkspace_CreateDraftedRoutingTableArgs = {
155959
+ input: AgentWorkspaceCreateDraftedRoutingTableInput;
155960
+ };
154582
155961
  export declare type MutationAgentWorkspace_CreateScheduleArgs = {
154583
155962
  input: AgentWorkspaceCreateScheduleInput;
154584
155963
  };
@@ -154620,6 +155999,12 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
154620
155999
  export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
154621
156000
  input: AgentWorkspaceStartBulkImportInput;
154622
156001
  };
156002
+ export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
156003
+ input: AgentWorkspaceStartGenerateRoutingTableInput;
156004
+ };
156005
+ export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
156006
+ input: AgentWorkspaceSubmitDraftedRoutingTableInput;
156007
+ };
154623
156008
  export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
154624
156009
  input: AgentWorkspaceUpdateRoutingConfigInput;
154625
156010
  };
@@ -154629,6 +156014,9 @@ export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
154629
156014
  export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
154630
156015
  input: AgentWorkspaceUpdateSmartRoutingConfigInput;
154631
156016
  };
156017
+ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
156018
+ input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
156019
+ };
154632
156020
  export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
154633
156021
  input: AiCoreApiCsvExportInput;
154634
156022
  };
@@ -155247,10 +156635,6 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
155247
156635
  input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
155248
156636
  spaceKey: Scalars['String']['input'];
155249
156637
  };
155250
- export declare type MutationCcp_UpdateAllowancePoolAllocationsArgs = {
155251
- allocations: Array<CcpAllowancePoolAllocationUpdateInput>;
155252
- poolId: Scalars['ID']['input'];
155253
- };
155254
156638
  export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
155255
156639
  cloudId: Scalars['ID']['input'];
155256
156640
  issueId: Scalars['String']['input'];
@@ -155439,6 +156823,10 @@ export declare type MutationConfluence_CreateWorkflowApplicationArgs = {
155439
156823
  cloudId: Scalars['ID']['input'];
155440
156824
  createWorkflowApplicationRequestInput: ConfluenceCreateWorkflowApplicationRequestInput;
155441
156825
  };
156826
+ export declare type MutationConfluence_CreateWorkflowApplicationWithReviewArgs = {
156827
+ cloudId: Scalars['ID']['input'];
156828
+ createWorkflowApplicationWithReviewRequestInput: ConfluenceCreateContentApprovalRequestInput;
156829
+ };
155442
156830
  export declare type MutationConfluence_DeleteAnswerArgs = {
155443
156831
  cloudId: Scalars['ID']['input'];
155444
156832
  input: ConfluenceDeleteAnswerInput;
@@ -155679,6 +157067,11 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
155679
157067
  cloudId: Scalars['ID']['input'];
155680
157068
  input: ConfluenceSetContentGeneralAccessModeInput;
155681
157069
  };
157070
+ export declare type MutationConfluence_SetRolesHubTransitionStepArgs = {
157071
+ cloudId: Scalars['ID']['input'];
157072
+ completed: Scalars['Boolean']['input'];
157073
+ step: ConfluenceRolesHubTransitionStep;
157074
+ };
155682
157075
  export declare type MutationConfluence_SetSubCalendarReminderArgs = {
155683
157076
  cloudId: Scalars['ID']['input'];
155684
157077
  input: ConfluenceSetSubCalendarReminderInput;
@@ -156255,6 +157648,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
156255
157648
  cloudId: Scalars['ID']['input'];
156256
157649
  input: CustomerServiceLiveChatSettingsInput;
156257
157650
  };
157651
+ export declare type MutationCsm_UpsertEmailChannelConfigurationArgs = {
157652
+ helpCenterAri: Scalars['ID']['input'];
157653
+ input: CustomerServiceEmailChannelConfigUpsertInput;
157654
+ };
156258
157655
  export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
156259
157656
  helpCenterAri: Scalars['ID']['input'];
156260
157657
  input: CustomerServiceHelpCenterMetadataUpsertInput;
@@ -156558,6 +157955,30 @@ export declare type MutationFavouriteSpaceArgs = {
156558
157955
  export declare type MutationFavouriteSpaceBulkArgs = {
156559
157956
  spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
156560
157957
  };
157958
+ export declare type MutationFocus_CreateViewArgs = {
157959
+ input: MercuryCreateViewInput;
157960
+ };
157961
+ export declare type MutationFocus_DeleteViewArgs = {
157962
+ input: MercuryDeleteViewInput;
157963
+ };
157964
+ export declare type MutationFocus_ReorderStarredViewArgs = {
157965
+ input: MercuryReorderStarredViewInput;
157966
+ };
157967
+ export declare type MutationFocus_StarViewArgs = {
157968
+ input: MercuryStarViewInput;
157969
+ };
157970
+ export declare type MutationFocus_UnstarViewArgs = {
157971
+ input: MercuryUnstarViewInput;
157972
+ };
157973
+ export declare type MutationFocus_UpdateViewNameArgs = {
157974
+ input: MercuryUpdateViewNameInput;
157975
+ };
157976
+ export declare type MutationFocus_UpdateViewOwnerArgs = {
157977
+ input: MercuryUpdateViewOwnerInput;
157978
+ };
157979
+ export declare type MutationFocus_UpdateViewSettingsArgs = {
157980
+ input: MercuryUpdateViewSettingsInput;
157981
+ };
156561
157982
  export declare type MutationFollowUserArgs = {
156562
157983
  followUserInput: FollowUserInput;
156563
157984
  };
@@ -156799,6 +158220,10 @@ export declare type MutationGravity_GenerateViewTemplateFromUserPromptArgs = {
156799
158220
  cloudId: Scalars['ID']['input'];
156800
158221
  input: GravityGenerateViewTemplateFromUserPromptInput;
156801
158222
  };
158223
+ export declare type MutationGravity_PostFeedbackArgs = {
158224
+ cloudId: Scalars['ID']['input'];
158225
+ input: GravityPostFeedbackInput;
158226
+ };
156802
158227
  export declare type MutationGravity_UpdateDeliverySettingsArgs = {
156803
158228
  cloudId: Scalars['ID']['input'];
156804
158229
  input: GravityUpdateDeliverySettingsInput;
@@ -157392,8 +158817,15 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
157392
158817
  spaceAri: Scalars['ID']['input'];
157393
158818
  title?: InputMaybe<Scalars['String']['input']>;
157394
158819
  };
158820
+ export declare type MutationKitsune_CreateFieldArgs = {
158821
+ entityTypes: Array<KitsuneEntityType>;
158822
+ name: Scalars['String']['input'];
158823
+ valueType?: InputMaybe<KitsuneFieldValueType>;
158824
+ workspaceAri: Scalars['ID']['input'];
158825
+ };
157395
158826
  export declare type MutationKitsune_CreateInsightArgs = {
157396
158827
  content: Scalars['KitsuneADF']['input'];
158828
+ externalId?: InputMaybe<Scalars['ID']['input']>;
157397
158829
  snippets?: InputMaybe<Array<InputMaybe<KitsuneSnippetInput>>>;
157398
158830
  spaceAri: Scalars['ID']['input'];
157399
158831
  title: Scalars['String']['input'];
@@ -157458,6 +158890,9 @@ export declare type MutationKitsune_RemoveCustomerArgs = {
157458
158890
  export declare type MutationKitsune_RemoveFeedbackArgs = {
157459
158891
  feedbackAri: Scalars['ID']['input'];
157460
158892
  };
158893
+ export declare type MutationKitsune_RemoveFieldArgs = {
158894
+ id: Scalars['ID']['input'];
158895
+ };
157461
158896
  export declare type MutationKitsune_RemoveInsightArgs = {
157462
158897
  id: Scalars['ID']['input'];
157463
158898
  };
@@ -157496,8 +158931,15 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
157496
158931
  summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
157497
158932
  title?: InputMaybe<Scalars['String']['input']>;
157498
158933
  };
158934
+ export declare type MutationKitsune_UpdateFieldArgs = {
158935
+ description?: InputMaybe<Scalars['String']['input']>;
158936
+ entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
158937
+ id: Scalars['ID']['input'];
158938
+ name?: InputMaybe<Scalars['String']['input']>;
158939
+ };
157499
158940
  export declare type MutationKitsune_UpdateInsightArgs = {
157500
158941
  content?: InputMaybe<Scalars['KitsuneADF']['input']>;
158942
+ externalId?: InputMaybe<Scalars['ID']['input']>;
157501
158943
  id: Scalars['ID']['input'];
157502
158944
  summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
157503
158945
  title?: InputMaybe<Scalars['String']['input']>;
@@ -158157,6 +159599,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
158157
159599
  export declare type MutationSpf_CreateAskUpdateArgs = {
158158
159600
  input: SpfCreateAskUpdateInput;
158159
159601
  };
159602
+ export declare type MutationSpf_CreateAsksArgs = {
159603
+ input: SpfCreateAsksInput;
159604
+ };
158160
159605
  export declare type MutationSpf_CreatePlanArgs = {
158161
159606
  input: SpfCreatePlanInput;
158162
159607
  };
@@ -158738,6 +160183,10 @@ export declare type MutationUpgradeAppArgs = {
158738
160183
  export declare type MutationUserAuthTokenForExtensionArgs = {
158739
160184
  input: UserAuthTokenForExtensionInput;
158740
160185
  };
160186
+ export declare type MutationUts_UpdateAllowancePoolAllocationsArgs = {
160187
+ allocations: Array<UtsAllowancePoolAllocationUpdateInput>;
160188
+ poolId: Scalars['ID']['input'];
160189
+ };
158741
160190
  export declare type MutationWatchBlogsArgs = {
158742
160191
  watchSpaceInput: WatchSpaceInput;
158743
160192
  };
@@ -161773,7 +163222,10 @@ export declare type Query = {
161773
163222
  admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
161774
163223
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
161775
163224
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
163225
+ admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
163226
+ admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
161776
163227
  admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
163228
+ admin_getAllDataSources?: Maybe<AdminConnectorConnection>;
161777
163229
  admin_group?: Maybe<AdminGroup>;
161778
163230
  admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
161779
163231
  admin_groups?: Maybe<AdminGroupConnection>;
@@ -161788,6 +163240,7 @@ export declare type Query = {
161788
163240
  admin_permissions?: Maybe<Array<AdminPermission>>;
161789
163241
  admin_scimRule?: Maybe<AdminScimRule>;
161790
163242
  admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
163243
+ admin_test?: Maybe<AdminTest>;
161791
163244
  admin_tokens?: Maybe<AdminTokenConnection>;
161792
163245
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
161793
163246
  admin_unitProfile?: Maybe<AdminUnit>;
@@ -161859,6 +163312,8 @@ export declare type Query = {
161859
163312
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
161860
163313
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
161861
163314
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
163315
+ agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
163316
+ agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
161862
163317
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
161863
163318
  agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
161864
163319
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
@@ -161866,21 +163321,30 @@ export declare type Query = {
161866
163321
  agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
161867
163322
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
161868
163323
  agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
163324
+ agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
161869
163325
  agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
161870
163326
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
163327
+ agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
161871
163328
  agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
161872
163329
  agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
161873
163330
  agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
161874
163331
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
161875
163332
  agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
163333
+ agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
163334
+ agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
163335
+ agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
161876
163336
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
161877
163337
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
161878
163338
  agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
161879
163339
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
161880
163340
  agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
163341
+ agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceSkillCategoryConnection>;
161881
163342
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
163343
+ agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
161882
163344
  agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
161883
163345
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
163346
+ agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
163347
+ agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
161884
163348
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
161885
163349
  agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
161886
163350
  agent_sessionQuery?: Maybe<AgentSessionConnection>;
@@ -161891,6 +163355,7 @@ export declare type Query = {
161891
163355
  aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
161892
163356
  aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
161893
163357
  aiops_echo?: Maybe<Scalars['String']['output']>;
163358
+ aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
161894
163359
  aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
161895
163360
  aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
161896
163361
  aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
@@ -161983,7 +163448,7 @@ export declare type Query = {
161983
163448
  assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
161984
163449
  assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
161985
163450
  assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
161986
- assetsVertical_bundle: AssetsVerticalBundleResult;
163451
+ assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
161987
163452
  assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
161988
163453
  assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
161989
163454
  assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
@@ -161996,6 +163461,7 @@ export declare type Query = {
161996
163461
  assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
161997
163462
  assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
161998
163463
  assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
163464
+ assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
161999
163465
  assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
162000
163466
  assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
162001
163467
  assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
@@ -162004,10 +163470,11 @@ export declare type Query = {
162004
163470
  assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
162005
163471
  assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
162006
163472
  assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
162007
- assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
163473
+ assetsVertical_verticalInstantiations?: Maybe<AssetsVerticalVerticalInstantiationConnection>;
162008
163474
  assetsVertical_verticalRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentConnection>;
162009
163475
  assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
162010
163476
  assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
163477
+ assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
162011
163478
  assets_bundle?: Maybe<AssetsBundleResult>;
162012
163479
  assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
162013
163480
  assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
@@ -162145,7 +163612,6 @@ export declare type Query = {
162145
163612
  commerceExp_fetch__CcpTransactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
162146
163613
  commerceExp_fetch__PaymentMethod?: Maybe<CommerceExpPaymentMethod>;
162147
163614
  commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
162148
- commerceExp_node?: Maybe<CommerceExpNode>;
162149
163615
  commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
162150
163616
  commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
162151
163617
  commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
@@ -162186,6 +163652,7 @@ export declare type Query = {
162186
163652
  confluence_contents?: Maybe<Array<Maybe<Content>>>;
162187
163653
  confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
162188
163654
  confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
163655
+ confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
162189
163656
  confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
162190
163657
  confluence_databaseTemplateInfosAll?: Maybe<ConfluenceDatabaseTemplateInfoConnection>;
162191
163658
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
@@ -162260,6 +163727,7 @@ export declare type Query = {
162260
163727
  confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
162261
163728
  confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
162262
163729
  confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
163730
+ confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
162263
163731
  confluence_search?: Maybe<ConfluenceSearchConnection>;
162264
163732
  confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
162265
163733
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
@@ -162268,6 +163736,7 @@ export declare type Query = {
162268
163736
  confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
162269
163737
  confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
162270
163738
  confluence_shareableLinkSpacesByCriteria?: Maybe<ConfluenceShareableLinkSpaceConnection>;
163739
+ confluence_shortcutSmartLinksBySpaceKey?: Maybe<ConfluenceShortcutSmartLinkConnection>;
162271
163740
  confluence_slide?: Maybe<ConfluenceSlide>;
162272
163741
  confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
162273
163742
  confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
@@ -162367,11 +163836,13 @@ export declare type Query = {
162367
163836
  csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
162368
163837
  csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
162369
163838
  csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
163839
+ csmAi_getAvailableKnowledgeSources?: Maybe<CsmAiAvailableKnowledgeSourcesResult>;
162370
163840
  csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
162371
163841
  csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
162372
163842
  csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
162373
163843
  csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
162374
163844
  csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
163845
+ csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
162375
163846
  csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
162376
163847
  csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
162377
163848
  csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
@@ -162476,6 +163947,9 @@ export declare type Query = {
162476
163947
  favoriteContent?: Maybe<PaginatedContentList>;
162477
163948
  featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
162478
163949
  feed?: Maybe<PaginatedFeed>;
163950
+ focus_viewById?: Maybe<MercuryView>;
163951
+ focus_viewsByIds?: Maybe<Array<Maybe<MercuryView>>>;
163952
+ focus_viewsSearch?: Maybe<MercuryViewConnection>;
162479
163953
  forYouFeed?: Maybe<ForYouPaginatedFeed>;
162480
163954
  futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
162481
163955
  getAIConfig?: Maybe<AiConfigResponse>;
@@ -162655,6 +164129,7 @@ export declare type Query = {
162655
164129
  jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
162656
164130
  jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
162657
164131
  jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
164132
+ jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
162658
164133
  jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
162659
164134
  jsmChat?: Maybe<JsmChatQuery>;
162660
164135
  jsmConversation_conversations?: Maybe<JsmConversationConnection>;
@@ -163213,6 +164688,26 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
163213
164688
  orgId: Scalars['ID']['input'];
163214
164689
  principal: Scalars['ID']['input'];
163215
164690
  };
164691
+ export declare type QueryAdmin_FetchConnectorFormDataArgs = {
164692
+ after?: InputMaybe<Scalars['String']['input']>;
164693
+ before?: InputMaybe<Scalars['String']['input']>;
164694
+ connectorId: Scalars['ID']['input'];
164695
+ connectorType: Scalars['String']['input'];
164696
+ first?: InputMaybe<Scalars['Int']['input']>;
164697
+ last?: InputMaybe<Scalars['Int']['input']>;
164698
+ orgId: Scalars['ID']['input'];
164699
+ resourceId: Scalars['ID']['input'];
164700
+ };
164701
+ export declare type QueryAdmin_FetchConnectorFormEntitiesArgs = {
164702
+ after?: InputMaybe<Scalars['String']['input']>;
164703
+ before?: InputMaybe<Scalars['String']['input']>;
164704
+ datasourceId: Scalars['ID']['input'];
164705
+ first?: InputMaybe<Scalars['Int']['input']>;
164706
+ last?: InputMaybe<Scalars['Int']['input']>;
164707
+ orgId: Scalars['ID']['input'];
164708
+ properties: Array<AdminConnectorPropertyInput>;
164709
+ resourceId: Scalars['ID']['input'];
164710
+ };
163216
164711
  export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
163217
164712
  after?: InputMaybe<Scalars['String']['input']>;
163218
164713
  before?: InputMaybe<Scalars['String']['input']>;
@@ -163221,6 +164716,14 @@ export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
163221
164716
  inputFilters: AdminAuditLogBackgroundQueryFilterInput;
163222
164717
  last?: InputMaybe<Scalars['Int']['input']>;
163223
164718
  };
164719
+ export declare type QueryAdmin_GetAllDataSourcesArgs = {
164720
+ after?: InputMaybe<Scalars['String']['input']>;
164721
+ before?: InputMaybe<Scalars['String']['input']>;
164722
+ first?: InputMaybe<Scalars['Int']['input']>;
164723
+ last?: InputMaybe<Scalars['Int']['input']>;
164724
+ orgId: Scalars['ID']['input'];
164725
+ resourceId: Scalars['ID']['input'];
164726
+ };
163224
164727
  export declare type QueryAdmin_GroupArgs = {
163225
164728
  input?: InputMaybe<AdminFetchGroupInput>;
163226
164729
  };
@@ -163703,6 +165206,12 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
163703
165206
  cloudId: Scalars['String']['input'];
163704
165207
  containerAri: Scalars['ID']['input'];
163705
165208
  };
165209
+ export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
165210
+ cloudId: Scalars['ID']['input'];
165211
+ };
165212
+ export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
165213
+ input: AgentWorkspaceAgentRebalancingRecommendationsInput;
165214
+ };
163706
165215
  export declare type QueryAgentWorkspace_AvailabilityArgs = {
163707
165216
  after?: InputMaybe<Scalars['String']['input']>;
163708
165217
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -163739,6 +165248,15 @@ export declare type QueryAgentWorkspace_CapacityArgs = {
163739
165248
  export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
163740
165249
  input: AgentWorkspaceCapacityInput;
163741
165250
  };
165251
+ export declare type QueryAgentWorkspace_CategorySkillsInProjectArgs = {
165252
+ after?: InputMaybe<Scalars['String']['input']>;
165253
+ agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165254
+ categoryId: Scalars['ID']['input'];
165255
+ first?: InputMaybe<Scalars['Int']['input']>;
165256
+ projectId: Scalars['ID']['input'];
165257
+ skillsQuery?: InputMaybe<Scalars['String']['input']>;
165258
+ teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
165259
+ };
163742
165260
  export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
163743
165261
  cloudId: Scalars['ID']['input'];
163744
165262
  days?: InputMaybe<Scalars['Int']['input']>;
@@ -163750,6 +165268,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
163750
165268
  cloudId: Scalars['ID']['input'];
163751
165269
  projectKey: Scalars['String']['input'];
163752
165270
  };
165271
+ export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
165272
+ projectAri: Scalars['ID']['input'];
165273
+ };
163753
165274
  export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
163754
165275
  projectAri: Scalars['ID']['input'];
163755
165276
  };
@@ -163769,6 +165290,17 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
163769
165290
  cloudId: Scalars['ID']['input'];
163770
165291
  projectKey: Scalars['String']['input'];
163771
165292
  };
165293
+ export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
165294
+ projectAri: Scalars['ID']['input'];
165295
+ };
165296
+ export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
165297
+ projectAri: Scalars['ID']['input'];
165298
+ };
165299
+ export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
165300
+ cloudId: Scalars['ID']['input'];
165301
+ generationId: Scalars['ID']['input'];
165302
+ projectKey: Scalars['String']['input'];
165303
+ };
163772
165304
  export declare type QueryAgentWorkspace_ScheduleArgs = {
163773
165305
  cloudId: Scalars['ID']['input'];
163774
165306
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -163794,13 +165326,33 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
163794
165326
  };
163795
165327
  export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
163796
165328
  after?: InputMaybe<Scalars['String']['input']>;
165329
+ agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165330
+ categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
163797
165331
  cloudId: Scalars['ID']['input'];
163798
165332
  first?: InputMaybe<Scalars['Int']['input']>;
165333
+ query?: InputMaybe<Scalars['String']['input']>;
165334
+ };
165335
+ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
165336
+ after?: InputMaybe<Scalars['String']['input']>;
165337
+ agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165338
+ categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
165339
+ first?: InputMaybe<Scalars['Int']['input']>;
165340
+ projectId: Scalars['ID']['input'];
165341
+ skillsQuery?: InputMaybe<Scalars['String']['input']>;
165342
+ teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
163799
165343
  };
163800
165344
  export declare type QueryAgentWorkspace_SkillsArgs = {
163801
165345
  after?: InputMaybe<Scalars['String']['input']>;
163802
165346
  cloudId: Scalars['ID']['input'];
163803
165347
  first?: InputMaybe<Scalars['Int']['input']>;
165348
+ query?: InputMaybe<Scalars['String']['input']>;
165349
+ };
165350
+ export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
165351
+ after?: InputMaybe<Scalars['String']['input']>;
165352
+ categoryId: Scalars['ID']['input'];
165353
+ cloudId: Scalars['ID']['input'];
165354
+ first?: InputMaybe<Scalars['Int']['input']>;
165355
+ query?: InputMaybe<Scalars['String']['input']>;
163804
165356
  };
163805
165357
  export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
163806
165358
  projectAri: Scalars['ID']['input'];
@@ -163808,6 +165360,12 @@ export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
163808
165360
  export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
163809
165361
  input: AgentWorkspaceTeamCapacitiesInput;
163810
165362
  };
165363
+ export declare type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
165364
+ input: AgentWorkspaceTeamRebalancingRecommendationsInput;
165365
+ };
165366
+ export declare type QueryAgentWorkspace_TeamRebalancingSummariesArgs = {
165367
+ input: AgentWorkspaceTeamRebalancingSummariesInput;
165368
+ };
163811
165369
  export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
163812
165370
  after?: InputMaybe<Scalars['String']['input']>;
163813
165371
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -163857,6 +165415,10 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
163857
165415
  export declare type QueryAiops_EchoArgs = {
163858
165416
  input?: InputMaybe<Scalars['String']['input']>;
163859
165417
  };
165418
+ export declare type QueryAiops_IncidentRelatedAlertsArgs = {
165419
+ cloudId: Scalars['ID']['input'];
165420
+ filter: AiOpsIncidentRelatedAlertsInput;
165421
+ };
163860
165422
  export declare type QueryAiops_IncidentSuggestionArgs = {
163861
165423
  cloudId: Scalars['ID']['input'];
163862
165424
  issueKey: Scalars['String']['input'];
@@ -164434,6 +165996,9 @@ export declare type QueryAssetsVertical_ModelItamAttributesArgs = {
164434
165996
  cloudId: Scalars['ID']['input'];
164435
165997
  workspaceId: Scalars['ID']['input'];
164436
165998
  };
165999
+ export declare type QueryAssetsVertical_ModelObjectTypesArgs = {
166000
+ cloudId: Scalars['ID']['input'];
166001
+ };
164437
166002
  export declare type QueryAssetsVertical_ModelObjectsArgs = {
164438
166003
  cloudId: Scalars['ID']['input'];
164439
166004
  input: AssetsVerticalModelObjectsInput;
@@ -164491,6 +166056,11 @@ export declare type QueryAssetsVertical_VerticalTemplateArgs = {
164491
166056
  type: AssetsVerticalVerticalType;
164492
166057
  version?: InputMaybe<Scalars['String']['input']>;
164493
166058
  };
166059
+ export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
166060
+ cloudId: Scalars['ID']['input'];
166061
+ type: AssetsVerticalVerticalType;
166062
+ version?: InputMaybe<Scalars['String']['input']>;
166063
+ };
164494
166064
  export declare type QueryAssets_BundleArgs = {
164495
166065
  cloudId: Scalars['ID']['input'];
164496
166066
  type: AssetsBundleType;
@@ -164998,9 +166568,6 @@ export declare type QueryCommerceExp_Fetch__PaymentMethodArgs = {
164998
166568
  export declare type QueryCommerceExp_IntercomArgs = {
164999
166569
  id?: InputMaybe<Scalars['ID']['input']>;
165000
166570
  };
165001
- export declare type QueryCommerceExp_NodeArgs = {
165002
- id: Scalars['ID']['input'];
165003
- };
165004
166571
  export declare type QueryCommerceExp_PlsArgs = {
165005
166572
  id?: InputMaybe<Scalars['ID']['input']>;
165006
166573
  };
@@ -165197,6 +166764,9 @@ export declare type QueryConfluence_CsvExportDownloadLinkArgs = {
165197
166764
  cloudId: Scalars['ID']['input'];
165198
166765
  taskId: Scalars['String']['input'];
165199
166766
  };
166767
+ export declare type QueryConfluence_CutoverDateArgs = {
166768
+ cloudId: Scalars['ID']['input'];
166769
+ };
165200
166770
  export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
165201
166771
  cloudId: Scalars['ID']['input'];
165202
166772
  };
@@ -165538,6 +167108,9 @@ export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
165538
167108
  cloudId: Scalars['ID']['input'];
165539
167109
  id: Scalars['ID']['input'];
165540
167110
  };
167111
+ export declare type QueryConfluence_RolesHubTransitionStepsArgs = {
167112
+ cloudId: Scalars['ID']['input'];
167113
+ };
165541
167114
  export declare type QueryConfluence_SearchArgs = {
165542
167115
  after?: InputMaybe<Scalars['String']['input']>;
165543
167116
  before?: InputMaybe<Scalars['String']['input']>;
@@ -165588,6 +167161,12 @@ export declare type QueryConfluence_ShareableLinkSpacesByCriteriaArgs = {
165588
167161
  spaceNamePattern?: InputMaybe<Scalars['String']['input']>;
165589
167162
  status?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkSpaceStatusFilter>>>;
165590
167163
  };
167164
+ export declare type QueryConfluence_ShortcutSmartLinksBySpaceKeyArgs = {
167165
+ after?: InputMaybe<Scalars['String']['input']>;
167166
+ cloudId: Scalars['ID']['input'];
167167
+ first?: InputMaybe<Scalars['Int']['input']>;
167168
+ spaceKey: Scalars['String']['input'];
167169
+ };
165591
167170
  export declare type QueryConfluence_SlideArgs = {
165592
167171
  id: Scalars['ID']['input'];
165593
167172
  };
@@ -166118,6 +167697,10 @@ export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
166118
167697
  export declare type QueryCsmAi_GetAvailableByodArgs = {
166119
167698
  helpCenterAri: Scalars['ID']['input'];
166120
167699
  };
167700
+ export declare type QueryCsmAi_GetAvailableKnowledgeSourcesArgs = {
167701
+ csmAiAgentId: Scalars['ID']['input'];
167702
+ helpCenterAri: Scalars['ID']['input'];
167703
+ };
166121
167704
  export declare type QueryCsmAi_GetSupportWidgetArgs = {
166122
167705
  helpCenterAri: Scalars['ID']['input'];
166123
167706
  };
@@ -166134,6 +167717,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
166134
167717
  export declare type QueryCsmOrganizationsByIdsArgs = {
166135
167718
  csmOrganizationAris: Array<Scalars['ID']['input']>;
166136
167719
  };
167720
+ export declare type QueryCsm_EmailChannelConfigurationArgs = {
167721
+ helpCenterAri: Scalars['ID']['input'];
167722
+ };
166137
167723
  export declare type QueryCsm_HelpCenterMetadataArgs = {
166138
167724
  helpCenterAri: Scalars['ID']['input'];
166139
167725
  };
@@ -166555,6 +168141,18 @@ export declare type QueryFeedArgs = {
166555
168141
  first?: InputMaybe<Scalars['Int']['input']>;
166556
168142
  sortBy?: InputMaybe<Scalars['String']['input']>;
166557
168143
  };
168144
+ export declare type QueryFocus_ViewByIdArgs = {
168145
+ id: Scalars['ID']['input'];
168146
+ };
168147
+ export declare type QueryFocus_ViewsByIdsArgs = {
168148
+ ids: Array<Scalars['ID']['input']>;
168149
+ };
168150
+ export declare type QueryFocus_ViewsSearchArgs = {
168151
+ after?: InputMaybe<Scalars['String']['input']>;
168152
+ cloudId: Scalars['ID']['input'];
168153
+ first?: InputMaybe<Scalars['Int']['input']>;
168154
+ q?: InputMaybe<Scalars['String']['input']>;
168155
+ };
166558
168156
  export declare type QueryForYouFeedArgs = {
166559
168157
  after?: InputMaybe<Scalars['String']['input']>;
166560
168158
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -166773,7 +168371,7 @@ export declare type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettin
166773
168371
  };
166774
168372
  export declare type QueryGravity_DeliverySettingsArgs = {
166775
168373
  cloudId: Scalars['ID']['input'];
166776
- viewId: Scalars['ID']['input'];
168374
+ projectId: Scalars['ID']['input'];
166777
168375
  };
166778
168376
  export declare type QueryGravity_DetailedReactionArgs = {
166779
168377
  cloudId: Scalars['ID']['input'];
@@ -167238,6 +168836,10 @@ export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
167238
168836
  experience: JsmChannelsExperience;
167239
168837
  jiraProjectAri: Scalars['ID']['input'];
167240
168838
  };
168839
+ export declare type QueryJsmChannels_RovoServiceAgentConfigByProjectIdArgs = {
168840
+ experience: JsmChannelsExperience;
168841
+ jiraProjectAri: Scalars['ID']['input'];
168842
+ };
167241
168843
  export declare type QueryJsmChannels_TaskAgentsArgs = {
167242
168844
  experience: JsmChannelsExperience;
167243
168845
  jiraProjectAri: Scalars['ID']['input'];
@@ -171351,6 +172953,7 @@ export declare enum Scope {
171351
172953
  Read_3PDataTwgCli = "READ_3P_DATA_TWG_CLI",
171352
172954
  ReadAccount = "READ_ACCOUNT",
171353
172955
  ReadAccountUpp = "READ_ACCOUNT_UPP",
172956
+ ReadAllTwg = "READ_ALL_TWG",
171354
172957
  ReadAppDetails = "READ_APP_DETAILS",
171355
172958
  ReadAppEnvironment = "READ_APP_ENVIRONMENT",
171356
172959
  ReadAppInstallation = "READ_APP_INSTALLATION",
@@ -190977,10 +192580,26 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
190977
192580
  workspaceId: Scalars['ID']['input'];
190978
192581
  };
190979
192582
  export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
192583
+ export declare type ShepherdContentInfo = {
192584
+ __typename?: 'ShepherdContentInfo';
192585
+ ari?: Maybe<Scalars['ID']['output']>;
192586
+ ati?: Maybe<Scalars['String']['output']>;
192587
+ name?: Maybe<Scalars['String']['output']>;
192588
+ space?: Maybe<ShepherdContentSpaceInfo>;
192589
+ url?: Maybe<Scalars['URL']['output']>;
192590
+ };
192591
+ export declare type ShepherdContentInfoResult = QueryError | ShepherdContentInfo;
190980
192592
  export declare type ShepherdContentLocationInput = {
190981
192593
  index: Scalars['Int']['input'];
190982
192594
  pointer: Scalars['String']['input'];
190983
192595
  };
192596
+ export declare type ShepherdContentSpaceInfo = {
192597
+ __typename?: 'ShepherdContentSpaceInfo';
192598
+ ari?: Maybe<Scalars['ID']['output']>;
192599
+ iconUrl?: Maybe<Scalars['URL']['output']>;
192600
+ name?: Maybe<Scalars['String']['output']>;
192601
+ url?: Maybe<Scalars['URL']['output']>;
192602
+ };
190984
192603
  export declare type ShepherdCreateAlertInput = {
190985
192604
  actor?: InputMaybe<ShepherdActorInput>;
190986
192605
  assignee?: InputMaybe<Scalars['ID']['input']>;
@@ -191383,6 +193002,7 @@ export declare type ShepherdQuery = {
191383
193002
  __typename?: 'ShepherdQuery';
191384
193003
  alert?: Maybe<ShepherdAlertQueries>;
191385
193004
  classifications?: Maybe<ShepherdClassificationsQueries>;
193005
+ contentInfo?: Maybe<Array<ShepherdContentInfoResult>>;
191386
193006
  enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
191387
193007
  exclusions?: Maybe<ShepherdExclusionsQueries>;
191388
193008
  redaction?: Maybe<ShepherdRedactionQueries>;
@@ -191397,6 +193017,10 @@ export declare type ShepherdQuery = {
191397
193017
  workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
191398
193018
  workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
191399
193019
  };
193020
+ export declare type ShepherdQueryContentInfoArgs = {
193021
+ contentUrlsOrAris: Array<Scalars['String']['input']>;
193022
+ workspaceId: Scalars['ID']['input'];
193023
+ };
191400
193024
  export declare type ShepherdQueryServiceShardAppInfoArgs = {
191401
193025
  workspaceAri: Scalars['ID']['input'];
191402
193026
  };
@@ -192087,6 +193711,7 @@ export declare type SiteSettings = {
192087
193711
  companyHubName?: Maybe<Scalars['String']['output']>;
192088
193712
  frontCover?: Maybe<FrontCover>;
192089
193713
  homepage?: Maybe<Homepage>;
193714
+ isHideTitleInUrl: Scalars['Boolean']['output'];
192090
193715
  isNav4OptedIn: Scalars['Boolean']['output'];
192091
193716
  showApplicationTitle: Scalars['Boolean']['output'];
192092
193717
  siteTitle: Scalars['String']['output'];
@@ -192233,11 +193858,25 @@ export declare type SmartsContextServiceCollaboratorRecommendation = {
192233
193858
  score?: Maybe<Scalars['Float']['output']>;
192234
193859
  user?: Maybe<User>;
192235
193860
  };
193861
+ export declare type SmartsContextServiceOrbitObjectRecommendation = {
193862
+ __typename?: 'SmartsContextServiceOrbitObjectRecommendation';
193863
+ context?: Maybe<SmartsRecommendationContext>;
193864
+ entityAti?: Maybe<Scalars['String']['output']>;
193865
+ id: Scalars['ID']['output'];
193866
+ object?: Maybe<SmartsRecommendedEntity>;
193867
+ reason?: Maybe<Scalars['String']['output']>;
193868
+ score?: Maybe<Scalars['Float']['output']>;
193869
+ signals?: Maybe<Scalars['String']['output']>;
193870
+ };
192236
193871
  export declare type SmartsContextServiceQueryApi = {
192237
193872
  __typename?: 'SmartsContextServiceQueryApi';
193873
+ orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
192238
193874
  orbitRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
192239
193875
  quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
192240
193876
  };
193877
+ export declare type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
193878
+ recommendationsQuery: SmartsRecommendationsQuery;
193879
+ };
192241
193880
  export declare type SmartsContextServiceQueryApiOrbitRecommendationsArgs = {
192242
193881
  recommendationsQuery: SmartsRecommendationsQuery;
192243
193882
  };
@@ -193206,6 +194845,7 @@ export declare type SpcsScanBootstrap = {
193206
194845
  region?: Maybe<Scalars['String']['output']>;
193207
194846
  s3Path?: Maybe<Scalars['String']['output']>;
193208
194847
  scanId: Scalars['ID']['output'];
194848
+ scope?: Maybe<Scalars['String']['output']>;
193209
194849
  status?: Maybe<Scalars['String']['output']>;
193210
194850
  workspaceAris: Array<Scalars['String']['output']>;
193211
194851
  workspaces?: Maybe<Array<SpcsBootstrapWorkspace>>;
@@ -193653,6 +195293,38 @@ export declare type SpfCreateAskUpdateInput = {
193653
195293
  status?: InputMaybe<SpfAskStatus>;
193654
195294
  targetDate?: InputMaybe<SpfAskTargetDateInput>;
193655
195295
  };
195296
+ export declare type SpfCreateAsksAskCommentInput = {
195297
+ data: Scalars['String']['input'];
195298
+ };
195299
+ export declare type SpfCreateAsksAskInput = {
195300
+ comments?: InputMaybe<Array<SpfCreateAsksAskCommentInput>>;
195301
+ description?: InputMaybe<Scalars['String']['input']>;
195302
+ impactedWorkId?: InputMaybe<Scalars['String']['input']>;
195303
+ justification?: InputMaybe<Scalars['String']['input']>;
195304
+ links?: InputMaybe<Array<SpfCreateAsksAskLinkInput>>;
195305
+ name: Scalars['String']['input'];
195306
+ ownerId?: InputMaybe<Scalars['String']['input']>;
195307
+ priority: SpfAskPriority;
195308
+ receivingTeamId?: InputMaybe<Scalars['String']['input']>;
195309
+ status: SpfAskStatus;
195310
+ submitterId: Scalars['String']['input'];
195311
+ submittingTeamId?: InputMaybe<Scalars['String']['input']>;
195312
+ targetDate?: InputMaybe<SpfAskTargetDateInput>;
195313
+ };
195314
+ export declare type SpfCreateAsksAskLinkInput = {
195315
+ linkText?: InputMaybe<Scalars['String']['input']>;
195316
+ url: Scalars['URL']['input'];
195317
+ };
195318
+ export declare type SpfCreateAsksInput = {
195319
+ asks: Array<SpfCreateAsksAskInput>;
195320
+ cloudId: Scalars['ID']['input'];
195321
+ };
195322
+ export declare type SpfCreateAsksPayload = Payload & {
195323
+ __typename?: 'SpfCreateAsksPayload';
195324
+ asks?: Maybe<Array<SpfAsk>>;
195325
+ errors?: Maybe<Array<MutationError>>;
195326
+ success: Scalars['Boolean']['output'];
195327
+ };
193656
195328
  export declare type SpfCreatePlanInput = {
193657
195329
  approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
193658
195330
  cloudId: Scalars['ID']['input'];
@@ -193696,6 +195368,7 @@ export declare type SpfCreateViewInput = {
193696
195368
  name: Scalars['String']['input'];
193697
195369
  ownerId?: InputMaybe<Scalars['String']['input']>;
193698
195370
  settings: SpfViewSettingsInput;
195371
+ starred?: InputMaybe<Scalars['Boolean']['input']>;
193699
195372
  };
193700
195373
  export declare type SpfDeleteAskCommentInput = {
193701
195374
  id: Scalars['ID']['input'];
@@ -194537,6 +196210,7 @@ export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
194537
196210
  };
194538
196211
  export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
194539
196212
  __typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
196213
+ alreadySubscribed: Scalars['Boolean']['output'];
194540
196214
  email: Scalars['String']['output'];
194541
196215
  error?: Maybe<Scalars['String']['output']>;
194542
196216
  subscriberId?: Maybe<Scalars['String']['output']>;
@@ -195429,6 +197103,7 @@ export declare type StakeholderCommsRelatedIncidentEntry = {
195429
197103
  incidentName?: Maybe<Scalars['String']['output']>;
195430
197104
  };
195431
197105
  export declare type StakeholderCommsRemoveCustomDomainInput = {
197106
+ cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
195432
197107
  domain: Scalars['String']['input'];
195433
197108
  pageId: Scalars['String']['input'];
195434
197109
  };
@@ -195816,6 +197491,7 @@ export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
195816
197491
  success?: Maybe<Scalars['Boolean']['output']>;
195817
197492
  };
195818
197493
  export declare type StakeholderCommsUpdateCustomDomainInput = {
197494
+ cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
195819
197495
  domain: Scalars['String']['input'];
195820
197496
  pageId: Scalars['String']['input'];
195821
197497
  };
@@ -196123,7 +197799,6 @@ export declare type Subscription = {
196123
197799
  convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
196124
197800
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
196125
197801
  convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
196126
- cpls_suggestionsExist: CplsSuggestionsExistencePayload;
196127
197802
  devOps?: Maybe<AriGraphSubscriptions>;
196128
197803
  devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
196129
197804
  devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
@@ -196186,9 +197861,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
196186
197861
  cloudId: Scalars['ID']['input'];
196187
197862
  projectIds: Array<Scalars['String']['input']>;
196188
197863
  };
196189
- export declare type SubscriptionCpls_SuggestionsExistArgs = {
196190
- scopeId: Scalars['ID']['input'];
196191
- };
196192
197864
  export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
196193
197865
  cloudId: Scalars['ID']['input'];
196194
197866
  jobId: Scalars['ID']['input'];
@@ -197054,6 +198726,17 @@ export declare type TeamHierarchyErrors = {
197054
198726
  description?: Maybe<Scalars['String']['output']>;
197055
198727
  reason: TeamHierarchyErrorCode;
197056
198728
  };
198729
+ export declare type TeamLinkExternalTeamInput = {
198730
+ externalReference: TeamExternalReferenceInput;
198731
+ scopeId: Scalars['ID']['input'];
198732
+ teamId: Scalars['ID']['input'];
198733
+ };
198734
+ export declare type TeamLinkExternalTeamPayload = Payload & {
198735
+ __typename?: 'TeamLinkExternalTeamPayload';
198736
+ errors?: Maybe<Array<MutationError>>;
198737
+ success: Scalars['Boolean']['output'];
198738
+ teamId?: Maybe<Scalars['ID']['output']>;
198739
+ };
197057
198740
  export declare type TeamMember = {
197058
198741
  __typename?: 'TeamMember';
197059
198742
  member?: Maybe<User>;
@@ -197147,6 +198830,7 @@ export declare type TeamMutation = {
197147
198830
  deleteTeamType?: Maybe<TeamType>;
197148
198831
  linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
197149
198832
  linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
198833
+ linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
197150
198834
  removeChild?: Maybe<TeamV2>;
197151
198835
  removeParent?: Maybe<TeamV2>;
197152
198836
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
@@ -197222,6 +198906,9 @@ export declare type TeamMutationLinkCustomFieldToValueArgs = {
197222
198906
  customFieldValue: Scalars['String']['input'];
197223
198907
  teamId: Scalars['ID']['input'];
197224
198908
  };
198909
+ export declare type TeamMutationLinkExternalTeamArgs = {
198910
+ input: TeamLinkExternalTeamInput;
198911
+ };
197225
198912
  export declare type TeamMutationRemoveChildArgs = {
197226
198913
  childId: Scalars['ID']['input'];
197227
198914
  siteId: Scalars['ID']['input'];
@@ -197348,6 +199035,7 @@ export declare type TeamQuery = {
197348
199035
  team?: Maybe<Team>;
197349
199036
  teamSearch?: Maybe<TeamSearchResultConnection>;
197350
199037
  teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
199038
+ teamSearchV3?: Maybe<TeamSearchResultConnectionV2>;
197351
199039
  teamV2?: Maybe<TeamV2>;
197352
199040
  teamV3?: Maybe<TeamV2>;
197353
199041
  teamsTql?: Maybe<TeamConnection>;
@@ -197402,6 +199090,17 @@ export declare type TeamQueryTeamSearchV2Args = {
197402
199090
  sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
197403
199091
  state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
197404
199092
  };
199093
+ export declare type TeamQueryTeamSearchV3Args = {
199094
+ after?: InputMaybe<Scalars['String']['input']>;
199095
+ enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
199096
+ filter?: InputMaybe<TeamSearchFilter>;
199097
+ first?: InputMaybe<Scalars['Int']['input']>;
199098
+ scopeId: Scalars['ID']['input'];
199099
+ searchFields?: InputMaybe<Array<InputMaybe<TeamSearchField>>>;
199100
+ showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
199101
+ sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
199102
+ state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
199103
+ };
197405
199104
  export declare type TeamQueryTeamV2Args = {
197406
199105
  id: Scalars['ID']['input'];
197407
199106
  siteId: Scalars['String']['input'];
@@ -199015,6 +200714,7 @@ export declare type TownsquareGoalAppCapabilities = {
199015
200714
  __typename?: 'TownsquareGoalAppCapabilities';
199016
200715
  canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
199017
200716
  canExportGoals?: Maybe<Scalars['Boolean']['output']>;
200717
+ canManageConnections?: Maybe<Scalars['Boolean']['output']>;
199018
200718
  focus?: Maybe<TownsquareFocusAppCapabilities>;
199019
200719
  };
199020
200720
  export declare type TownsquareGoalArchivedChange = {
@@ -200561,6 +202261,7 @@ export declare type TownsquareProjectAppCapabilities = {
200561
202261
  __typename?: 'TownsquareProjectAppCapabilities';
200562
202262
  canCreateProject?: Maybe<Scalars['Boolean']['output']>;
200563
202263
  canExportProjects?: Maybe<Scalars['Boolean']['output']>;
202264
+ canManageConnections?: Maybe<Scalars['Boolean']['output']>;
200564
202265
  focus?: Maybe<TownsquareFocusAppCapabilities>;
200565
202266
  };
200566
202267
  export declare type TownsquareProjectCapabilities = {
@@ -202279,9 +203980,12 @@ export declare type TrelloAiBoardUserInput = {
202279
203980
  export declare type TrelloAiFeature = {
202280
203981
  __typename?: 'TrelloAiFeature';
202281
203982
  creationMethodError?: Maybe<Scalars['String']['output']>;
203983
+ creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
203984
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
202282
203985
  entities?: Maybe<Array<TrelloAiFeatureEntity>>;
202283
203986
  feature: Scalars['String']['output'];
202284
203987
  modelMetadata?: Maybe<Array<TrelloModelMetadata>>;
203988
+ singleInstrumentationId?: Maybe<Scalars['String']['output']>;
202285
203989
  };
202286
203990
  export declare type TrelloAiFeatureEntity = {
202287
203991
  __typename?: 'TrelloAiFeatureEntity';
@@ -202613,6 +204317,7 @@ export declare type TrelloBaseCardUpdated = {
202613
204317
  lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
202614
204318
  limits?: Maybe<TrelloCardLimits>;
202615
204319
  list?: Maybe<TrelloList>;
204320
+ manifest?: Maybe<TrelloCardManifest>;
202616
204321
  name?: Maybe<Scalars['String']['output']>;
202617
204322
  objectId?: Maybe<Scalars['ID']['output']>;
202618
204323
  onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
@@ -203463,6 +205168,17 @@ export declare type TrelloCardManifest = {
203463
205168
  __typename?: 'TrelloCardManifest';
203464
205169
  contents?: Maybe<Scalars['JSON']['output']>;
203465
205170
  schemaVersion: Scalars['Int']['output'];
205171
+ source?: Maybe<TrelloCardManifestSource>;
205172
+ };
205173
+ export declare type TrelloCardManifestPromptSource = {
205174
+ __typename?: 'TrelloCardManifestPromptSource';
205175
+ prompt?: Maybe<Scalars['String']['output']>;
205176
+ version?: Maybe<Scalars['Int']['output']>;
205177
+ };
205178
+ export declare type TrelloCardManifestSource = TrelloCardManifestPromptSource | TrelloCardManifestUnknownSource;
205179
+ export declare type TrelloCardManifestUnknownSource = {
205180
+ __typename?: 'TrelloCardManifestUnknownSource';
205181
+ _empty?: Maybe<Scalars['String']['output']>;
203466
205182
  };
203467
205183
  export declare type TrelloCardMemberEdgeUpdated = {
203468
205184
  __typename?: 'TrelloCardMemberEdgeUpdated';
@@ -203502,6 +205218,39 @@ export declare type TrelloCardSearchResult = {
203502
205218
  options?: Maybe<TrelloSearchOptions>;
203503
205219
  results?: Maybe<TrelloSearchCardConnection>;
203504
205220
  };
205221
+ export declare type TrelloCardSummary = {
205222
+ __typename?: 'TrelloCardSummary';
205223
+ generatedAt: Scalars['DateTime']['output'];
205224
+ sections: Array<TrelloCardSummarySection>;
205225
+ sourceMetadata: TrelloCardSummarySourceMetadata;
205226
+ };
205227
+ export declare enum TrelloCardSummaryNullReason {
205228
+ NotEnoughSignal = "NOT_ENOUGH_SIGNAL",
205229
+ NoContent = "NO_CONTENT",
205230
+ PlaceholderOnly = "PLACEHOLDER_ONLY"
205231
+ }
205232
+ export declare type TrelloCardSummarySection = {
205233
+ __typename?: 'TrelloCardSummarySection';
205234
+ items: Array<Scalars['String']['output']>;
205235
+ kind?: Maybe<TrelloCardSummarySectionKind>;
205236
+ title: Scalars['String']['output'];
205237
+ };
205238
+ export declare enum TrelloCardSummarySectionKind {
205239
+ Action = "ACTION",
205240
+ Decision = "DECISION",
205241
+ General = "GENERAL",
205242
+ Progress = "PROGRESS",
205243
+ Question = "QUESTION",
205244
+ Risk = "RISK"
205245
+ }
205246
+ export declare type TrelloCardSummarySourceMetadata = {
205247
+ __typename?: 'TrelloCardSummarySourceMetadata';
205248
+ commentCount: Scalars['Int']['output'];
205249
+ commentsTruncated: Scalars['Boolean']['output'];
205250
+ descriptionLastEditedAt?: Maybe<Scalars['DateTime']['output']>;
205251
+ latestCommentAt?: Maybe<Scalars['DateTime']['output']>;
205252
+ latestCommentEditedAt?: Maybe<Scalars['DateTime']['output']>;
205253
+ };
203505
205254
  export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
203506
205255
  __typename?: 'TrelloCardUpdated';
203507
205256
  actions?: Maybe<TrelloCardActionConnectionUpdated>;
@@ -203525,6 +205274,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
203525
205274
  limits?: Maybe<TrelloCardLimits>;
203526
205275
  list?: Maybe<TrelloList>;
203527
205276
  location?: Maybe<TrelloCardLocation>;
205277
+ manifest?: Maybe<TrelloCardManifest>;
203528
205278
  members?: Maybe<TrelloMemberUpdatedConnection>;
203529
205279
  membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
203530
205280
  mirrorSource?: Maybe<TrelloBaseCard>;
@@ -203579,11 +205329,22 @@ export declare type TrelloCheckItemConnectionUpdated = {
203579
205329
  __typename?: 'TrelloCheckItemConnectionUpdated';
203580
205330
  edges?: Maybe<Array<TrelloCheckItemEdgeUpdated>>;
203581
205331
  };
205332
+ export declare enum TrelloCheckItemCreationMethod {
205333
+ Ai = "AI",
205334
+ Assisted = "ASSISTED",
205335
+ Automatic = "AUTOMATIC",
205336
+ Demo = "DEMO",
205337
+ EmailSource = "EMAIL_SOURCE"
205338
+ }
203582
205339
  export declare type TrelloCheckItemDueInfo = {
203583
205340
  __typename?: 'TrelloCheckItemDueInfo';
203584
205341
  at?: Maybe<Scalars['DateTime']['output']>;
203585
205342
  reminder?: Maybe<Scalars['Int']['output']>;
203586
205343
  };
205344
+ export declare type TrelloCheckItemDueInfoInput = {
205345
+ at?: InputMaybe<Scalars['DateTime']['input']>;
205346
+ reminder?: InputMaybe<Scalars['Int']['input']>;
205347
+ };
203587
205348
  export declare type TrelloCheckItemEdge = {
203588
205349
  __typename?: 'TrelloCheckItemEdge';
203589
205350
  cursor: Scalars['String']['output'];
@@ -203954,6 +205715,21 @@ export declare type TrelloCreateCardPayload = Payload & {
203954
205715
  errors?: Maybe<Array<MutationError>>;
203955
205716
  success: Scalars['Boolean']['output'];
203956
205717
  };
205718
+ export declare type TrelloCreateCheckItemInput = {
205719
+ checked?: InputMaybe<Scalars['Boolean']['input']>;
205720
+ checklistId: Scalars['ID']['input'];
205721
+ creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
205722
+ due?: InputMaybe<TrelloCheckItemDueInfoInput>;
205723
+ name: Scalars['String']['input'];
205724
+ position?: InputMaybe<TrelloRelativePosition>;
205725
+ userId?: InputMaybe<Scalars['ID']['input']>;
205726
+ };
205727
+ export declare type TrelloCreateCheckItemPayload = Payload & {
205728
+ __typename?: 'TrelloCreateCheckItemPayload';
205729
+ checklist?: Maybe<TrelloChecklist>;
205730
+ errors?: Maybe<Array<MutationError>>;
205731
+ success: Scalars['Boolean']['output'];
205732
+ };
203957
205733
  export declare type TrelloCreateChecklistInput = {
203958
205734
  cardId: Scalars['ID']['input'];
203959
205735
  creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
@@ -204439,6 +206215,28 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
204439
206215
  errors?: Maybe<Array<MutationError>>;
204440
206216
  success: Scalars['Boolean']['output'];
204441
206217
  };
206218
+ export declare type TrelloGenerateCardCoverWithAiInput = {
206219
+ cardId: Scalars['ID']['input'];
206220
+ theme?: InputMaybe<Scalars['String']['input']>;
206221
+ userInput: Scalars['String']['input'];
206222
+ };
206223
+ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
206224
+ __typename?: 'TrelloGenerateCardCoverWithAiPayload';
206225
+ card?: Maybe<TrelloBaseCard>;
206226
+ errors?: Maybe<Array<MutationError>>;
206227
+ success: Scalars['Boolean']['output'];
206228
+ };
206229
+ export declare type TrelloGenerateCardSummaryInput = {
206230
+ cardId: Scalars['ID']['input'];
206231
+ force?: InputMaybe<Scalars['Boolean']['input']>;
206232
+ };
206233
+ export declare type TrelloGenerateCardSummaryPayload = Payload & {
206234
+ __typename?: 'TrelloGenerateCardSummaryPayload';
206235
+ errors?: Maybe<Array<MutationError>>;
206236
+ nullReason?: Maybe<TrelloCardSummaryNullReason>;
206237
+ success: Scalars['Boolean']['output'];
206238
+ summary?: Maybe<TrelloCardSummary>;
206239
+ };
204442
206240
  export declare type TrelloGenerateCheckItemsForCardInput = {
204443
206241
  cardId: Scalars['ID']['input'];
204444
206242
  checklistTarget: TrelloChecklistTarget;
@@ -204611,6 +206409,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
204611
206409
  lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
204612
206410
  limits?: Maybe<TrelloCardLimits>;
204613
206411
  list?: Maybe<TrelloList>;
206412
+ manifest?: Maybe<TrelloCardManifest>;
204614
206413
  name?: Maybe<Scalars['String']['output']>;
204615
206414
  objectId?: Maybe<Scalars['ID']['output']>;
204616
206415
  onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
@@ -204996,10 +206795,12 @@ export declare type TrelloMemberBoardEdge = {
204996
206795
  node?: Maybe<TrelloBoard>;
204997
206796
  };
204998
206797
  export declare type TrelloMemberBoardFilter = {
204999
- filterValue?: InputMaybe<TrelloMemberBoardFilterValue>;
206798
+ filterValues?: InputMaybe<Array<TrelloMemberBoardFilterValue>>;
205000
206799
  };
205001
206800
  export declare enum TrelloMemberBoardFilterValue {
205002
- All = "ALL"
206801
+ All = "ALL",
206802
+ Closed = "CLOSED",
206803
+ Open = "OPEN"
205003
206804
  }
205004
206805
  export declare type TrelloMemberBoardStarConnection = {
205005
206806
  __typename?: 'TrelloMemberBoardStarConnection';
@@ -205306,6 +207107,7 @@ export declare type TrelloMutationApi = {
205306
207107
  createBoard?: Maybe<TrelloCreateBoardPayload>;
205307
207108
  createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
205308
207109
  createCard?: Maybe<TrelloCreateCardPayload>;
207110
+ createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
205309
207111
  createChecklist?: Maybe<TrelloCreateChecklistPayload>;
205310
207112
  createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
205311
207113
  createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
@@ -205331,6 +207133,8 @@ export declare type TrelloMutationApi = {
205331
207133
  enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
205332
207134
  endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
205333
207135
  generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
207136
+ generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
207137
+ generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
205334
207138
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
205335
207139
  hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
205336
207140
  hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
@@ -205343,6 +207147,7 @@ export declare type TrelloMutationApi = {
205343
207147
  pinCard?: Maybe<TrelloPinCardPayload>;
205344
207148
  proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
205345
207149
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
207150
+ refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
205346
207151
  rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
205347
207152
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
205348
207153
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
@@ -205471,6 +207276,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
205471
207276
  export declare type TrelloMutationApiCreateCardArgs = {
205472
207277
  input: TrelloCreateCardInput;
205473
207278
  };
207279
+ export declare type TrelloMutationApiCreateCheckItemArgs = {
207280
+ input: TrelloCreateCheckItemInput;
207281
+ };
205474
207282
  export declare type TrelloMutationApiCreateChecklistArgs = {
205475
207283
  input: TrelloCreateChecklistInput;
205476
207284
  };
@@ -205546,6 +207354,12 @@ export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
205546
207354
  export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
205547
207355
  input: TrelloGenerateBoardBackgroundWithAiInput;
205548
207356
  };
207357
+ export declare type TrelloMutationApiGenerateCardCoverWithAiArgs = {
207358
+ input: TrelloGenerateCardCoverWithAiInput;
207359
+ };
207360
+ export declare type TrelloMutationApiGenerateCardSummaryArgs = {
207361
+ input: TrelloGenerateCardSummaryInput;
207362
+ };
205549
207363
  export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
205550
207364
  input: TrelloGenerateCheckItemsForCardInput;
205551
207365
  };
@@ -205579,6 +207393,9 @@ export declare type TrelloMutationApiPinCardArgs = {
205579
207393
  export declare type TrelloMutationApiProposePlannerEventsArgs = {
205580
207394
  input: TrelloProposePlannerEventsInput;
205581
207395
  };
207396
+ export declare type TrelloMutationApiRefreshCardManifestArgs = {
207397
+ input: TrelloRefreshManifestInput;
207398
+ };
205582
207399
  export declare type TrelloMutationApiRejectProposedEventsArgs = {
205583
207400
  input: TrelloRejectProposedEventsInput;
205584
207401
  };
@@ -206894,6 +208711,15 @@ export declare type TrelloReactionLimits = {
206894
208711
  perAction?: Maybe<TrelloLimitProps>;
206895
208712
  uniquePerAction?: Maybe<TrelloLimitProps>;
206896
208713
  };
208714
+ export declare type TrelloRefreshManifestInput = {
208715
+ cardId: Scalars['ID']['input'];
208716
+ };
208717
+ export declare type TrelloRefreshManifestPayload = Payload & {
208718
+ __typename?: 'TrelloRefreshManifestPayload';
208719
+ errors?: Maybe<Array<MutationError>>;
208720
+ manifest?: Maybe<TrelloCardManifest>;
208721
+ success: Scalars['Boolean']['output'];
208722
+ };
206897
208723
  export declare type TrelloRejectProposedEventsInput = {
206898
208724
  proposedEventIds: Array<Scalars['ID']['input']>;
206899
208725
  };
@@ -207189,6 +209015,9 @@ export declare type TrelloSortListCardsPayload = Payload & {
207189
209015
  listId: Scalars['ID']['output'];
207190
209016
  success: Scalars['Boolean']['output'];
207191
209017
  };
209018
+ export declare type TrelloStatefulSessionUpdated = {
209019
+ sessionId: Scalars['ID']['output'];
209020
+ };
207192
209021
  export declare type TrelloSticker = {
207193
209022
  __typename?: 'TrelloSticker';
207194
209023
  image?: Maybe<Scalars['String']['output']>;
@@ -207224,6 +209053,7 @@ export declare type TrelloSubscriptionApi = {
207224
209053
  onInboxUpdated?: Maybe<TrelloInboxUpdated>;
207225
209054
  onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
207226
209055
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
209056
+ onStatefulSessionUpdated?: Maybe<TrelloStatefulSessionUpdated>;
207227
209057
  onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJobUpdated>;
207228
209058
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
207229
209059
  };
@@ -207251,6 +209081,10 @@ export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
207251
209081
  id: Scalars['ID']['input'];
207252
209082
  noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
207253
209083
  };
209084
+ export declare type TrelloSubscriptionApiOnStatefulSessionUpdatedArgs = {
209085
+ noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
209086
+ sessionId: Scalars['ID']['input'];
209087
+ };
207254
209088
  export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
207255
209089
  id: Scalars['ID']['input'];
207256
209090
  };
@@ -207907,6 +209741,25 @@ export declare type TrelloUserUnrestrictedAccessSummary = {
207907
209741
  topWorkspaces?: Maybe<Array<TrelloWorkspaceAccessSummary>>;
207908
209742
  totalWorkspaces?: Maybe<Scalars['Int']['output']>;
207909
209743
  };
209744
+ export declare type TrelloVoiceCaptureCardUpdated = {
209745
+ __typename?: 'TrelloVoiceCaptureCardUpdated';
209746
+ due?: Maybe<Scalars['DateTime']['output']>;
209747
+ name?: Maybe<Scalars['String']['output']>;
209748
+ objectId: Scalars['ID']['output'];
209749
+ };
209750
+ export declare type TrelloVoiceCaptureSessionCardConnectionUpdated = {
209751
+ __typename?: 'TrelloVoiceCaptureSessionCardConnectionUpdated';
209752
+ edges?: Maybe<Array<TrelloVoiceCaptureSessionCardEdgeUpdated>>;
209753
+ };
209754
+ export declare type TrelloVoiceCaptureSessionCardEdgeUpdated = {
209755
+ __typename?: 'TrelloVoiceCaptureSessionCardEdgeUpdated';
209756
+ node?: Maybe<TrelloVoiceCaptureCardUpdated>;
209757
+ };
209758
+ export declare type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
209759
+ __typename?: 'TrelloVoiceCaptureSessionUpdated';
209760
+ cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
209761
+ sessionId: Scalars['ID']['output'];
209762
+ };
207910
209763
  export declare type TrelloWatchCardInput = {
207911
209764
  cardId: Scalars['ID']['input'];
207912
209765
  };
@@ -210797,6 +212650,24 @@ export declare type UtsAlertThreshold = {
210797
212650
  usageIdentifier: Scalars['String']['output'];
210798
212651
  value?: Maybe<Scalars['Float']['output']>;
210799
212652
  };
212653
+ export declare type UtsAllowancePoolAllocationUpdateInput = {
212654
+ allocationId: Scalars['ID']['input'];
212655
+ billingEntity?: InputMaybe<Scalars['String']['input']>;
212656
+ enforcementMode?: InputMaybe<UtsLatestAllowanceEnforcementModeType>;
212657
+ overageCap?: InputMaybe<Scalars['Float']['input']>;
212658
+ poolShare?: InputMaybe<Scalars['Float']['input']>;
212659
+ };
212660
+ export declare type UtsAllowancePoolAllocationUpdateResult = {
212661
+ __typename?: 'UtsAllowancePoolAllocationUpdateResult';
212662
+ allocationId?: Maybe<Scalars['ID']['output']>;
212663
+ poolId?: Maybe<Scalars['ID']['output']>;
212664
+ transactionId?: Maybe<Scalars['ID']['output']>;
212665
+ };
212666
+ export declare enum UtsLatestAllowanceEnforcementModeType {
212667
+ Block = "BLOCK",
212668
+ LimitedOverage = "LIMITED_OVERAGE",
212669
+ Overage = "OVERAGE"
212670
+ }
210800
212671
  export declare type UtsUsageAlert = {
210801
212672
  __typename?: 'UtsUsageAlert';
210802
212673
  createdAt?: Maybe<Scalars['Float']['output']>;