@forge/cli-shared 8.21.1-next.0 → 8.21.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.
@@ -334,6 +334,7 @@ export declare enum AvpAnalyticsAggregationType {
334
334
  Avg = "AVG",
335
335
  Max = "MAX",
336
336
  Min = "MIN",
337
+ None = "NONE",
337
338
  Sum = "SUM",
338
339
  TotalCount = "TOTAL_COUNT",
339
340
  UniqueCount = "UNIQUE_COUNT"
@@ -495,6 +496,18 @@ export declare type AvpAnalyticsDeleteModelPayload = Payload & {
495
496
  errors?: Maybe<Array<MutationError>>;
496
497
  success: Scalars['Boolean']['output'];
497
498
  };
499
+ export declare type AvpAnalyticsDiscardMetricUpdatesInput = {
500
+ acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
501
+ metricId: Scalars['ID']['input'];
502
+ metricVersion?: InputMaybe<Scalars['String']['input']>;
503
+ };
504
+ export declare type AvpAnalyticsDiscardMetricUpdatesPayload = Payload & {
505
+ __typename?: 'AVPAnalyticsDiscardMetricUpdatesPayload';
506
+ acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
507
+ errors?: Maybe<Array<MutationError>>;
508
+ metric?: Maybe<AvpAnalyticsMetric>;
509
+ success: Scalars['Boolean']['output'];
510
+ };
498
511
  export declare type AvpAnalyticsDiscardModelUpdatesInput = {
499
512
  acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
500
513
  forceDiscard?: InputMaybe<Scalars['Boolean']['input']>;
@@ -527,7 +540,11 @@ export declare enum AvpAnalyticsFilterOperator {
527
540
  IsNotEmpty = "IS_NOT_EMPTY",
528
541
  NotEquals = "NOT_EQUALS",
529
542
  On = "ON",
530
- Range = "RANGE"
543
+ Range = "RANGE",
544
+ RangeDays = "RANGE_DAYS",
545
+ RangeMonths = "RANGE_MONTHS",
546
+ RangeWeeks = "RANGE_WEEKS",
547
+ RangeYears = "RANGE_YEARS"
531
548
  }
532
549
  export declare enum AvpAnalyticsFilterType {
533
550
  MetricCloudId = "METRIC_CLOUD_ID",
@@ -717,6 +734,7 @@ export declare type AvpAnalyticsMetric = {
717
734
  defaultVisualization?: Maybe<AvpAnalyticsVisualizationConfig>;
718
735
  definition?: Maybe<AvpAnalyticsMetricDefinition>;
719
736
  description?: Maybe<Scalars['String']['output']>;
737
+ errors?: Maybe<Array<AvpAnalyticsMetricError>>;
720
738
  id: Scalars['ID']['output'];
721
739
  metadata?: Maybe<AvpAnalyticsMetricMetadata>;
722
740
  name?: Maybe<Scalars['String']['output']>;
@@ -751,7 +769,7 @@ export declare type AvpAnalyticsMetricDataHeader = {
751
769
  };
752
770
  export declare type AvpAnalyticsMetricDataRow = {
753
771
  __typename?: 'AVPAnalyticsMetricDataRow';
754
- values: Array<Scalars['String']['output']>;
772
+ values: Array<Maybe<Scalars['String']['output']>>;
755
773
  };
756
774
  export declare type AvpAnalyticsMetricDataSort = {
757
775
  columnRef: AvpAnalyticsColumnReferenceInput;
@@ -764,6 +782,7 @@ export declare type AvpAnalyticsMetricDefinition = {
764
782
  __typename?: 'AVPAnalyticsMetricDefinition';
765
783
  aggregationType?: Maybe<AvpAnalyticsAggregationType>;
766
784
  columnId?: Maybe<Scalars['ID']['output']>;
785
+ errors?: Maybe<Array<AvpAnalyticsMetricError>>;
767
786
  filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
768
787
  modelId?: Maybe<Scalars['ID']['output']>;
769
788
  modelVersion?: Maybe<Scalars['String']['output']>;
@@ -780,9 +799,27 @@ export declare type AvpAnalyticsMetricEdge = {
780
799
  cursor?: Maybe<Scalars['String']['output']>;
781
800
  node: AvpAnalyticsMetric;
782
801
  };
802
+ export declare type AvpAnalyticsMetricError = {
803
+ __typename?: 'AVPAnalyticsMetricError';
804
+ message: Scalars['String']['output'];
805
+ type?: Maybe<AvpAnalyticsMetricErrorType>;
806
+ };
807
+ export declare enum AvpAnalyticsMetricErrorType {
808
+ InvalidAggregationColumn = "INVALID_AGGREGATION_COLUMN",
809
+ InvalidAggregationType = "INVALID_AGGREGATION_TYPE",
810
+ InvalidChartType = "INVALID_CHART_TYPE",
811
+ InvalidCloudId = "INVALID_CLOUD_ID",
812
+ InvalidFilter = "INVALID_FILTER",
813
+ InvalidGroupBy = "INVALID_GROUP_BY",
814
+ InvalidMetricName = "INVALID_METRIC_NAME",
815
+ InvalidModel = "INVALID_MODEL",
816
+ InvalidSegmentBy = "INVALID_SEGMENT_BY",
817
+ InvalidVisualizationColumns = "INVALID_VISUALIZATION_COLUMNS"
818
+ }
783
819
  export declare type AvpAnalyticsMetricFilter = {
784
820
  __typename?: 'AVPAnalyticsMetricFilter';
785
821
  columnId: Scalars['ID']['output'];
822
+ errors?: Maybe<Array<AvpAnalyticsMetricError>>;
786
823
  operator: AvpAnalyticsFilterOperator;
787
824
  value: AvpAnalyticsFilterValue;
788
825
  };
@@ -1076,8 +1113,9 @@ export declare type AvpAnalyticsUpdateModelPayload = Payload & {
1076
1113
  };
1077
1114
  export declare type AvpAnalyticsVisualizationConfig = {
1078
1115
  __typename?: 'AVPAnalyticsVisualizationConfig';
1079
- chartType: AvpAnalyticsChartType;
1080
- columnIds: Array<Scalars['ID']['output']>;
1116
+ chartType?: Maybe<AvpAnalyticsChartType>;
1117
+ columnIds?: Maybe<Array<Scalars['ID']['output']>>;
1118
+ errors?: Maybe<Array<AvpAnalyticsMetricError>>;
1081
1119
  filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
1082
1120
  metadata?: Maybe<Array<AvpAnalyticsVisualizationConfigMetadata>>;
1083
1121
  };
@@ -2067,9 +2105,19 @@ export declare type AvpSearchDashboardsInput = {
2067
2105
  creatorAris?: InputMaybe<Array<Scalars['ID']['input']>>;
2068
2106
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
2069
2107
  sortKey?: InputMaybe<AvpDashboardSortKey>;
2108
+ starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
2070
2109
  status?: InputMaybe<AvpDashboardStatus>;
2071
2110
  title?: InputMaybe<Scalars['String']['input']>;
2072
2111
  };
2112
+ export declare type AvpStarDashboardInput = {
2113
+ dashboardAri: Scalars['ID']['input'];
2114
+ workspaceAri: Scalars['ID']['input'];
2115
+ };
2116
+ export declare type AvpStarDashboardPayload = Payload & {
2117
+ __typename?: 'AVPStarDashboardPayload';
2118
+ errors?: Maybe<Array<MutationError>>;
2119
+ success: Scalars['Boolean']['output'];
2120
+ };
2073
2121
  export declare type AvpTemplatePlaceholderReplacement = {
2074
2122
  placeholderName: Scalars['String']['input'];
2075
2123
  replacementValue?: InputMaybe<Scalars['String']['input']>;
@@ -2095,6 +2143,15 @@ export declare type AvpTrackDashboardViewPayload = Payload & {
2095
2143
  errors?: Maybe<Array<MutationError>>;
2096
2144
  success: Scalars['Boolean']['output'];
2097
2145
  };
2146
+ export declare type AvpUnstarDashboardInput = {
2147
+ dashboardAri: Scalars['ID']['input'];
2148
+ workspaceAri: Scalars['ID']['input'];
2149
+ };
2150
+ export declare type AvpUnstarDashboardPayload = Payload & {
2151
+ __typename?: 'AVPUnstarDashboardPayload';
2152
+ errors?: Maybe<Array<MutationError>>;
2153
+ success: Scalars['Boolean']['output'];
2154
+ };
2098
2155
  export declare type AvpUpdateChartInput = {
2099
2156
  chart: AvpChartInput;
2100
2157
  chartAri: Scalars['ID']['input'];
@@ -2395,7 +2452,8 @@ export declare enum ActionsAuthType {
2395
2452
  export declare enum ActionsCapabilityType {
2396
2453
  AgentStudio = "AGENT_STUDIO",
2397
2454
  Ai = "AI",
2398
- Automation = "AUTOMATION"
2455
+ Automation = "AUTOMATION",
2456
+ JsmTelemetry = "JSM_TELEMETRY"
2399
2457
  }
2400
2458
  export declare enum ActionsConfigurationLayout {
2401
2459
  VerticalLayout = "VerticalLayout"
@@ -4841,6 +4899,7 @@ export declare type AgentStudioAdfContent = {
4841
4899
  export declare type AgentStudioAgent = {
4842
4900
  authoringTeam?: Maybe<TeamV2>;
4843
4901
  connectedChannels?: Maybe<AgentStudioConnectedChannels>;
4902
+ createdAt?: Maybe<Scalars['String']['output']>;
4844
4903
  description?: Maybe<Scalars['String']['output']>;
4845
4904
  etag?: Maybe<Scalars['String']['output']>;
4846
4905
  id: Scalars['ID']['output'];
@@ -4967,6 +5026,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
4967
5026
  behaviour?: Maybe<Scalars['String']['output']>;
4968
5027
  connectedChannels?: Maybe<AgentStudioConnectedChannels>;
4969
5028
  conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
5029
+ createdAt?: Maybe<Scalars['String']['output']>;
4970
5030
  creator?: Maybe<User>;
4971
5031
  creatorType?: Maybe<Scalars['String']['output']>;
4972
5032
  deactivated?: Maybe<Scalars['Boolean']['output']>;
@@ -5885,6 +5945,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
5885
5945
  __typename?: 'AgentStudioServiceAgent';
5886
5946
  authoringTeam?: Maybe<TeamV2>;
5887
5947
  connectedChannels?: Maybe<AgentStudioConnectedChannels>;
5948
+ createdAt?: Maybe<Scalars['String']['output']>;
5888
5949
  defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
5889
5950
  description?: Maybe<Scalars['String']['output']>;
5890
5951
  etag?: Maybe<Scalars['String']['output']>;
@@ -6382,9 +6443,9 @@ export declare type AgentStudioWidgets = {
6382
6443
  export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
6383
6444
  export declare type AgentWorkspaceAgent = {
6384
6445
  __typename?: 'AgentWorkspaceAgent';
6446
+ assignedSkills?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
6385
6447
  displayName: Scalars['String']['output'];
6386
6448
  id: Scalars['ID']['output'];
6387
- skills: Array<AgentWorkspaceUserSkill>;
6388
6449
  teamARIs: Array<Scalars['ID']['output']>;
6389
6450
  teamIds: Array<Scalars['ID']['output']>;
6390
6451
  teamNames: Array<Scalars['String']['output']>;
@@ -6453,14 +6514,11 @@ export declare type AgentWorkspaceAppliedFilters = {
6453
6514
  };
6454
6515
  export declare type AgentWorkspaceArchiveSkillInput = {
6455
6516
  cloudId: Scalars['ID']['input'];
6456
- projectId?: InputMaybe<Scalars['ID']['input']>;
6457
- projectKey?: InputMaybe<Scalars['String']['input']>;
6458
6517
  skillId: Scalars['ID']['input'];
6459
6518
  };
6460
6519
  export declare type AgentWorkspaceArchiveSkillPayload = {
6461
6520
  __typename?: 'AgentWorkspaceArchiveSkillPayload';
6462
- error?: Maybe<Scalars['String']['output']>;
6463
- projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
6521
+ errors?: Maybe<Array<MutationError>>;
6464
6522
  success: Scalars['Boolean']['output'];
6465
6523
  };
6466
6524
  export declare type AgentWorkspaceAssignAgentToGapInput = {
@@ -6478,20 +6536,6 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
6478
6536
  shift?: Maybe<AgentWorkspaceShift>;
6479
6537
  success: Scalars['Boolean']['output'];
6480
6538
  };
6481
- export declare type AgentWorkspaceAssignSkillInput = {
6482
- cloudId: Scalars['ID']['input'];
6483
- proficiencyLevel: Scalars['Int']['input'];
6484
- projectId?: InputMaybe<Scalars['ID']['input']>;
6485
- projectKey?: InputMaybe<Scalars['String']['input']>;
6486
- skillId: Scalars['ID']['input'];
6487
- userId: Scalars['ID']['input'];
6488
- };
6489
- export declare type AgentWorkspaceAssignSkillPayload = {
6490
- __typename?: 'AgentWorkspaceAssignSkillPayload';
6491
- error?: Maybe<Scalars['String']['output']>;
6492
- success: Scalars['Boolean']['output'];
6493
- userSkill?: Maybe<AgentWorkspaceUserSkill>;
6494
- };
6495
6539
  export declare type AgentWorkspaceAvailabilityConnection = {
6496
6540
  __typename?: 'AgentWorkspaceAvailabilityConnection';
6497
6541
  edges: Array<AgentWorkspaceAvailabilityEdge>;
@@ -6525,6 +6569,15 @@ export declare type AgentWorkspaceAvailabilityInput = {
6525
6569
  teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
6526
6570
  teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
6527
6571
  };
6572
+ export declare type AgentWorkspaceAvailabilityInputPayload = {
6573
+ agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
6574
+ cloudId: Scalars['ID']['input'];
6575
+ projectId: Scalars['ID']['input'];
6576
+ sortBy?: InputMaybe<AgentWorkspaceAvailabilitySortField>;
6577
+ sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
6578
+ statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
6579
+ teamId: Scalars['ID']['input'];
6580
+ };
6528
6581
  export declare type AgentWorkspaceAvailabilityPageInfo = {
6529
6582
  __typename?: 'AgentWorkspaceAvailabilityPageInfo';
6530
6583
  currentPage: Scalars['Int']['output'];
@@ -6536,6 +6589,7 @@ export declare type AgentWorkspaceAvailabilityPageInfo = {
6536
6589
  totalCount: Scalars['Int']['output'];
6537
6590
  totalPages: Scalars['Int']['output'];
6538
6591
  };
6592
+ export declare type AgentWorkspaceAvailabilityResult = AgentWorkspaceAvailabilityConnection | QueryError;
6539
6593
  export declare enum AgentWorkspaceAvailabilitySortField {
6540
6594
  LastUpdated = "LAST_UPDATED",
6541
6595
  Name = "NAME",
@@ -6637,202 +6691,6 @@ export declare type AgentWorkspaceCapacitySummary = {
6637
6691
  totalCapacity: Scalars['Int']['output'];
6638
6692
  totalUnassignedWorkItems: Scalars['Int']['output'];
6639
6693
  };
6640
- export declare type AgentWorkspaceCatalog = {
6641
- __typename?: 'AgentWorkspaceCatalog';
6642
- catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
6643
- catalogType: AgentWorkspaceCatalogType;
6644
- childCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
6645
- description?: Maybe<Scalars['String']['output']>;
6646
- id: Scalars['ID']['output'];
6647
- name: Scalars['String']['output'];
6648
- parentCatalog?: Maybe<AgentWorkspaceCatalog>;
6649
- proficiencyDefinitions: Array<Scalars['String']['output']>;
6650
- };
6651
- export declare type AgentWorkspaceCatalogAssociationInput = {
6652
- catalogId: Scalars['ID']['input'];
6653
- minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6654
- proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6655
- skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
6656
- };
6657
- export declare type AgentWorkspaceCatalogConfig = {
6658
- __typename?: 'AgentWorkspaceCatalogConfig';
6659
- catalog?: Maybe<AgentWorkspaceCatalog>;
6660
- catalogId: Scalars['ID']['output'];
6661
- id: Scalars['ID']['output'];
6662
- minSkillProficiencyLevel?: Maybe<Scalars['Int']['output']>;
6663
- proficiencyLevel: Scalars['Int']['output'];
6664
- skill?: Maybe<AgentWorkspaceSkill>;
6665
- skillId: Scalars['ID']['output'];
6666
- skillRequirement?: Maybe<AgentWorkspaceSkillRequirementEnum>;
6667
- };
6668
- export declare type AgentWorkspaceCatalogConfigConnection = {
6669
- __typename?: 'AgentWorkspaceCatalogConfigConnection';
6670
- edges?: Maybe<Array<AgentWorkspaceCatalogConfigEdge>>;
6671
- nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogConfig>>>;
6672
- pageInfo: AgentWorkspacePageInfo;
6673
- };
6674
- export declare type AgentWorkspaceCatalogConfigCreateResponse = {
6675
- __typename?: 'AgentWorkspaceCatalogConfigCreateResponse';
6676
- catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
6677
- error?: Maybe<Scalars['String']['output']>;
6678
- success: Scalars['Boolean']['output'];
6679
- };
6680
- export declare type AgentWorkspaceCatalogConfigDeleteInput = {
6681
- cloudId: Scalars['ID']['input'];
6682
- id: Scalars['ID']['input'];
6683
- projectId?: InputMaybe<Scalars['ID']['input']>;
6684
- projectKey?: InputMaybe<Scalars['String']['input']>;
6685
- };
6686
- export declare type AgentWorkspaceCatalogConfigDeleteResponse = {
6687
- __typename?: 'AgentWorkspaceCatalogConfigDeleteResponse';
6688
- deletedCatalogConfigId?: Maybe<Scalars['ID']['output']>;
6689
- error?: Maybe<Scalars['String']['output']>;
6690
- success: Scalars['Boolean']['output'];
6691
- };
6692
- export declare type AgentWorkspaceCatalogConfigEdge = {
6693
- __typename?: 'AgentWorkspaceCatalogConfigEdge';
6694
- cursor: Scalars['String']['output'];
6695
- node: AgentWorkspaceCatalogConfig;
6696
- };
6697
- export declare type AgentWorkspaceCatalogConfigFilterInput = {
6698
- catalogId: Scalars['ID']['input'];
6699
- proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6700
- skillId?: InputMaybe<Scalars['ID']['input']>;
6701
- };
6702
- export declare type AgentWorkspaceCatalogConfigInput = {
6703
- cloudId: Scalars['ID']['input'];
6704
- id: Scalars['ID']['input'];
6705
- projectId?: InputMaybe<Scalars['ID']['input']>;
6706
- projectKey?: InputMaybe<Scalars['String']['input']>;
6707
- };
6708
- export declare type AgentWorkspaceCatalogConfigUpdateResponse = {
6709
- __typename?: 'AgentWorkspaceCatalogConfigUpdateResponse';
6710
- catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
6711
- error?: Maybe<Scalars['String']['output']>;
6712
- success: Scalars['Boolean']['output'];
6713
- };
6714
- export declare type AgentWorkspaceCatalogConfigsInput = {
6715
- cloudId: Scalars['ID']['input'];
6716
- filter?: InputMaybe<AgentWorkspaceCatalogConfigFilterInput>;
6717
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
6718
- projectId?: InputMaybe<Scalars['ID']['input']>;
6719
- projectKey?: InputMaybe<Scalars['String']['input']>;
6720
- };
6721
- export declare type AgentWorkspaceCatalogConnection = {
6722
- __typename?: 'AgentWorkspaceCatalogConnection';
6723
- edges?: Maybe<Array<AgentWorkspaceCatalogEdge>>;
6724
- nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
6725
- pageInfo: AgentWorkspacePageInfo;
6726
- };
6727
- export declare type AgentWorkspaceCatalogCreateResponse = {
6728
- __typename?: 'AgentWorkspaceCatalogCreateResponse';
6729
- catalog?: Maybe<AgentWorkspaceCatalog>;
6730
- error?: Maybe<Scalars['String']['output']>;
6731
- success: Scalars['Boolean']['output'];
6732
- };
6733
- export declare type AgentWorkspaceCatalogDeleteInput = {
6734
- cloudId: Scalars['ID']['input'];
6735
- id: Scalars['ID']['input'];
6736
- projectId?: InputMaybe<Scalars['ID']['input']>;
6737
- projectKey?: InputMaybe<Scalars['String']['input']>;
6738
- };
6739
- export declare type AgentWorkspaceCatalogDeleteResponse = {
6740
- __typename?: 'AgentWorkspaceCatalogDeleteResponse';
6741
- deletedCatalogId?: Maybe<Scalars['ID']['output']>;
6742
- error?: Maybe<Scalars['String']['output']>;
6743
- success: Scalars['Boolean']['output'];
6744
- };
6745
- export declare type AgentWorkspaceCatalogEdge = {
6746
- __typename?: 'AgentWorkspaceCatalogEdge';
6747
- cursor: Scalars['String']['output'];
6748
- node: AgentWorkspaceCatalog;
6749
- };
6750
- export declare type AgentWorkspaceCatalogFilterInput = {
6751
- catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
6752
- hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6753
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
6754
- nameContains?: InputMaybe<Scalars['String']['input']>;
6755
- };
6756
- export declare type AgentWorkspaceCatalogInput = {
6757
- cloudId: Scalars['ID']['input'];
6758
- id: Scalars['ID']['input'];
6759
- projectId?: InputMaybe<Scalars['ID']['input']>;
6760
- projectKey?: InputMaybe<Scalars['String']['input']>;
6761
- };
6762
- export declare type AgentWorkspaceCatalogType = {
6763
- __typename?: 'AgentWorkspaceCatalogType';
6764
- catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
6765
- childCatalogType?: Maybe<AgentWorkspaceCatalogType>;
6766
- description?: Maybe<Scalars['String']['output']>;
6767
- hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
6768
- id: Scalars['ID']['output'];
6769
- name: Scalars['String']['output'];
6770
- parentCatalogType?: Maybe<AgentWorkspaceCatalogType>;
6771
- };
6772
- export declare type AgentWorkspaceCatalogTypeConnection = {
6773
- __typename?: 'AgentWorkspaceCatalogTypeConnection';
6774
- edges?: Maybe<Array<AgentWorkspaceCatalogTypeEdge>>;
6775
- nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogType>>>;
6776
- pageInfo: AgentWorkspacePageInfo;
6777
- };
6778
- export declare type AgentWorkspaceCatalogTypeCreateResponse = {
6779
- __typename?: 'AgentWorkspaceCatalogTypeCreateResponse';
6780
- catalogType?: Maybe<AgentWorkspaceCatalogType>;
6781
- error?: Maybe<Scalars['String']['output']>;
6782
- success: Scalars['Boolean']['output'];
6783
- };
6784
- export declare type AgentWorkspaceCatalogTypeDeleteInput = {
6785
- cloudId: Scalars['ID']['input'];
6786
- id: Scalars['ID']['input'];
6787
- projectId?: InputMaybe<Scalars['ID']['input']>;
6788
- projectKey?: InputMaybe<Scalars['String']['input']>;
6789
- };
6790
- export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
6791
- __typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
6792
- deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
6793
- error?: Maybe<Scalars['String']['output']>;
6794
- success: Scalars['Boolean']['output'];
6795
- };
6796
- export declare type AgentWorkspaceCatalogTypeEdge = {
6797
- __typename?: 'AgentWorkspaceCatalogTypeEdge';
6798
- cursor: Scalars['String']['output'];
6799
- node: AgentWorkspaceCatalogType;
6800
- };
6801
- export declare type AgentWorkspaceCatalogTypeFilterInput = {
6802
- hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6803
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
6804
- nameContains?: InputMaybe<Scalars['String']['input']>;
6805
- };
6806
- export declare type AgentWorkspaceCatalogTypeInput = {
6807
- cloudId: Scalars['ID']['input'];
6808
- id: Scalars['ID']['input'];
6809
- projectId?: InputMaybe<Scalars['ID']['input']>;
6810
- projectKey?: InputMaybe<Scalars['String']['input']>;
6811
- };
6812
- export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
6813
- __typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
6814
- catalogType?: Maybe<AgentWorkspaceCatalogType>;
6815
- error?: Maybe<Scalars['String']['output']>;
6816
- success: Scalars['Boolean']['output'];
6817
- };
6818
- export declare type AgentWorkspaceCatalogTypesInput = {
6819
- cloudId: Scalars['ID']['input'];
6820
- filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
6821
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
6822
- };
6823
- export declare type AgentWorkspaceCatalogUpdateResponse = {
6824
- __typename?: 'AgentWorkspaceCatalogUpdateResponse';
6825
- catalog?: Maybe<AgentWorkspaceCatalog>;
6826
- error?: Maybe<Scalars['String']['output']>;
6827
- success: Scalars['Boolean']['output'];
6828
- };
6829
- export declare type AgentWorkspaceCatalogsInput = {
6830
- cloudId: Scalars['ID']['input'];
6831
- filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
6832
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
6833
- projectId?: InputMaybe<Scalars['ID']['input']>;
6834
- projectKey?: InputMaybe<Scalars['String']['input']>;
6835
- };
6836
6694
  export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
6837
6695
  groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
6838
6696
  projectARI: Scalars['ID']['input'];
@@ -6846,43 +6704,6 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
6846
6704
  teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
6847
6705
  teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
6848
6706
  };
6849
- export declare type AgentWorkspaceCreateCatalogConfigInput = {
6850
- catalogId: Scalars['ID']['input'];
6851
- cloudId: Scalars['ID']['input'];
6852
- minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6853
- proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
6854
- projectId?: InputMaybe<Scalars['ID']['input']>;
6855
- projectKey?: InputMaybe<Scalars['String']['input']>;
6856
- skillId: Scalars['ID']['input'];
6857
- skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
6858
- };
6859
- export declare type AgentWorkspaceCreateCatalogInput = {
6860
- cloudId: Scalars['ID']['input'];
6861
- description?: InputMaybe<Scalars['String']['input']>;
6862
- hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6863
- name: Scalars['String']['input'];
6864
- parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
6865
- proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
6866
- projectId?: InputMaybe<Scalars['ID']['input']>;
6867
- projectKey?: InputMaybe<Scalars['String']['input']>;
6868
- thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
6869
- };
6870
- export declare type AgentWorkspaceCreateCatalogTypeInput = {
6871
- cloudId: Scalars['ID']['input'];
6872
- description?: InputMaybe<Scalars['String']['input']>;
6873
- hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6874
- name: Scalars['String']['input'];
6875
- parentCatalogTypeId?: InputMaybe<Scalars['ID']['input']>;
6876
- projectId?: InputMaybe<Scalars['ID']['input']>;
6877
- projectKey?: InputMaybe<Scalars['String']['input']>;
6878
- };
6879
- export declare type AgentWorkspaceCreateHierarchyDefinitionInput = {
6880
- cloudId: Scalars['ID']['input'];
6881
- description?: InputMaybe<Scalars['String']['input']>;
6882
- name: Scalars['String']['input'];
6883
- projectId?: InputMaybe<Scalars['ID']['input']>;
6884
- projectKey?: InputMaybe<Scalars['String']['input']>;
6885
- };
6886
6707
  export declare type AgentWorkspaceCreateScheduleInput = {
6887
6708
  agentIds: Array<Scalars['ID']['input']>;
6888
6709
  cloudId: Scalars['ID']['input'];
@@ -6923,12 +6744,6 @@ export declare type AgentWorkspaceDefaultCapacity = {
6923
6744
  projectId: Scalars['ID']['output'];
6924
6745
  updatedAt: Scalars['DateTime']['output'];
6925
6746
  };
6926
- export declare type AgentWorkspaceDeleteHierarchyDefinitionInput = {
6927
- cloudId: Scalars['ID']['input'];
6928
- id: Scalars['ID']['input'];
6929
- projectId?: InputMaybe<Scalars['ID']['input']>;
6930
- projectKey?: InputMaybe<Scalars['String']['input']>;
6931
- };
6932
6747
  export declare type AgentWorkspaceDeleteScheduleInput = {
6933
6748
  cloudId: Scalars['ID']['input'];
6934
6749
  projectId?: InputMaybe<Scalars['ID']['input']>;
@@ -6954,19 +6769,6 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
6954
6769
  shift?: Maybe<AgentWorkspaceShift>;
6955
6770
  success: Scalars['Boolean']['output'];
6956
6771
  };
6957
- export declare type AgentWorkspaceDeleteUserSkillInput = {
6958
- cloudId: Scalars['ID']['input'];
6959
- projectId?: InputMaybe<Scalars['ID']['input']>;
6960
- projectKey?: InputMaybe<Scalars['String']['input']>;
6961
- skillId: Scalars['ID']['input'];
6962
- userId: Scalars['ID']['input'];
6963
- };
6964
- export declare type AgentWorkspaceDeleteUserSkillPayload = {
6965
- __typename?: 'AgentWorkspaceDeleteUserSkillPayload';
6966
- deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
6967
- error?: Maybe<Scalars['String']['output']>;
6968
- success: Scalars['Boolean']['output'];
6969
- };
6970
6772
  export declare type AgentWorkspaceEditShiftInput = {
6971
6773
  agentId: Scalars['ID']['input'];
6972
6774
  newEndTime: Scalars['DateTime']['input'];
@@ -6981,17 +6783,6 @@ export declare type AgentWorkspaceEditShiftPayload = {
6981
6783
  shift?: Maybe<AgentWorkspaceShift>;
6982
6784
  success: Scalars['Boolean']['output'];
6983
6785
  };
6984
- export declare type AgentWorkspaceEligibilityError = {
6985
- __typename?: 'AgentWorkspaceEligibilityError';
6986
- code: AgentWorkspaceEligibilityErrorCode;
6987
- field?: Maybe<Scalars['String']['output']>;
6988
- message: Scalars['String']['output'];
6989
- };
6990
- export declare enum AgentWorkspaceEligibilityErrorCode {
6991
- InternalError = "INTERNAL_ERROR",
6992
- TeamNotFound = "TEAM_NOT_FOUND",
6993
- ValidationError = "VALIDATION_ERROR"
6994
- }
6995
6786
  export declare type AgentWorkspaceEligibleGroup = {
6996
6787
  __typename?: 'AgentWorkspaceEligibleGroup';
6997
6788
  group?: Maybe<IdentityGroup>;
@@ -7003,19 +6794,6 @@ export declare type AgentWorkspaceEligibleGroupsPayload = {
7003
6794
  eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
7004
6795
  groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
7005
6796
  };
7006
- export declare type AgentWorkspaceFindBestMatchAgentsInput = {
7007
- cloudId: Scalars['ID']['input'];
7008
- projectId?: InputMaybe<Scalars['ID']['input']>;
7009
- projectKey?: InputMaybe<Scalars['String']['input']>;
7010
- requirements: Array<AgentWorkspaceSkillRequirementInput>;
7011
- teamId?: InputMaybe<Scalars['ID']['input']>;
7012
- };
7013
- export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
7014
- __typename?: 'AgentWorkspaceFindBestMatchAgentsPayload';
7015
- errors?: Maybe<Array<AgentWorkspaceEligibilityError>>;
7016
- rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
7017
- success: Scalars['Boolean']['output'];
7018
- };
7019
6797
  export declare type AgentWorkspaceGroupMember = {
7020
6798
  __typename?: 'AgentWorkspaceGroupMember';
7021
6799
  accountId: Scalars['String']['output'];
@@ -7026,72 +6804,6 @@ export declare type AgentWorkspaceGroupTooLarge = {
7026
6804
  group?: Maybe<IdentityGroup>;
7027
6805
  groupAri: Scalars['ID']['output'];
7028
6806
  };
7029
- export declare type AgentWorkspaceHierarchyDefinition = {
7030
- __typename?: 'AgentWorkspaceHierarchyDefinition';
7031
- catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
7032
- description?: Maybe<Scalars['String']['output']>;
7033
- id: Scalars['ID']['output'];
7034
- name: Scalars['String']['output'];
7035
- };
7036
- export declare type AgentWorkspaceHierarchyDefinitionConnection = {
7037
- __typename?: 'AgentWorkspaceHierarchyDefinitionConnection';
7038
- edges?: Maybe<Array<AgentWorkspaceHierarchyDefinitionEdge>>;
7039
- nodes?: Maybe<Array<Maybe<AgentWorkspaceHierarchyDefinition>>>;
7040
- pageInfo: AgentWorkspacePageInfo;
7041
- };
7042
- export declare type AgentWorkspaceHierarchyDefinitionCreateResponse = {
7043
- __typename?: 'AgentWorkspaceHierarchyDefinitionCreateResponse';
7044
- error?: Maybe<Scalars['String']['output']>;
7045
- hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
7046
- success: Scalars['Boolean']['output'];
7047
- };
7048
- export declare type AgentWorkspaceHierarchyDefinitionDeleteResponse = {
7049
- __typename?: 'AgentWorkspaceHierarchyDefinitionDeleteResponse';
7050
- deletedHierarchyDefinitionId?: Maybe<Scalars['ID']['output']>;
7051
- error?: Maybe<Scalars['String']['output']>;
7052
- success: Scalars['Boolean']['output'];
7053
- };
7054
- export declare type AgentWorkspaceHierarchyDefinitionEdge = {
7055
- __typename?: 'AgentWorkspaceHierarchyDefinitionEdge';
7056
- cursor: Scalars['String']['output'];
7057
- node: AgentWorkspaceHierarchyDefinition;
7058
- };
7059
- export declare type AgentWorkspaceHierarchyDefinitionFilterInput = {
7060
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
7061
- nameContains?: InputMaybe<Scalars['String']['input']>;
7062
- };
7063
- export declare type AgentWorkspaceHierarchyDefinitionInput = {
7064
- cloudId: Scalars['ID']['input'];
7065
- id: Scalars['ID']['input'];
7066
- projectId?: InputMaybe<Scalars['ID']['input']>;
7067
- projectKey?: InputMaybe<Scalars['String']['input']>;
7068
- };
7069
- export declare type AgentWorkspaceHierarchyDefinitionUpdateResponse = {
7070
- __typename?: 'AgentWorkspaceHierarchyDefinitionUpdateResponse';
7071
- error?: Maybe<Scalars['String']['output']>;
7072
- hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
7073
- success: Scalars['Boolean']['output'];
7074
- };
7075
- export declare type AgentWorkspaceHierarchyDefinitionsInput = {
7076
- cloudId: Scalars['ID']['input'];
7077
- filter?: InputMaybe<AgentWorkspaceHierarchyDefinitionFilterInput>;
7078
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7079
- projectId?: InputMaybe<Scalars['ID']['input']>;
7080
- projectKey?: InputMaybe<Scalars['String']['input']>;
7081
- };
7082
- export declare type AgentWorkspacePageInfo = {
7083
- __typename?: 'AgentWorkspacePageInfo';
7084
- endCursor?: Maybe<Scalars['String']['output']>;
7085
- hasNextPage: Scalars['Boolean']['output'];
7086
- hasPreviousPage: Scalars['Boolean']['output'];
7087
- startCursor?: Maybe<Scalars['String']['output']>;
7088
- };
7089
- export declare type AgentWorkspacePaginationInput = {
7090
- after?: InputMaybe<Scalars['String']['input']>;
7091
- before?: InputMaybe<Scalars['String']['input']>;
7092
- first?: InputMaybe<Scalars['Int']['input']>;
7093
- last?: InputMaybe<Scalars['Int']['input']>;
7094
- };
7095
6807
  export declare type AgentWorkspaceProjectDefaultAvailability = {
7096
6808
  __typename?: 'AgentWorkspaceProjectDefaultAvailability';
7097
6809
  projectId: Scalars['ID']['output'];
@@ -7105,52 +6817,6 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
7105
6817
  projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
7106
6818
  success: Scalars['Boolean']['output'];
7107
6819
  };
7108
- export declare type AgentWorkspaceProjectSkill = {
7109
- __typename?: 'AgentWorkspaceProjectSkill';
7110
- id: Scalars['ID']['output'];
7111
- projectId: Scalars['ID']['output'];
7112
- skill: AgentWorkspaceSkill;
7113
- status: AgentWorkspaceProjectSkillStatus;
7114
- };
7115
- export declare type AgentWorkspaceProjectSkillConnection = {
7116
- __typename?: 'AgentWorkspaceProjectSkillConnection';
7117
- edges?: Maybe<Array<AgentWorkspaceProjectSkillEdge>>;
7118
- nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkill>>>;
7119
- pageInfo: AgentWorkspacePageInfo;
7120
- };
7121
- export declare type AgentWorkspaceProjectSkillEdge = {
7122
- __typename?: 'AgentWorkspaceProjectSkillEdge';
7123
- cursor: Scalars['String']['output'];
7124
- node: AgentWorkspaceProjectSkill;
7125
- };
7126
- export declare type AgentWorkspaceProjectSkillFilterInput = {
7127
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
7128
- skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7129
- statuses?: InputMaybe<Array<AgentWorkspaceProjectSkillStatus>>;
7130
- };
7131
- export declare type AgentWorkspaceProjectSkillInput = {
7132
- cloudId: Scalars['ID']['input'];
7133
- id: Scalars['ID']['input'];
7134
- projectId?: InputMaybe<Scalars['ID']['input']>;
7135
- projectKey?: InputMaybe<Scalars['String']['input']>;
7136
- };
7137
- export declare enum AgentWorkspaceProjectSkillStatus {
7138
- Active = "ACTIVE",
7139
- Archived = "ARCHIVED"
7140
- }
7141
- export declare type AgentWorkspaceProjectSkillsInput = {
7142
- cloudId: Scalars['ID']['input'];
7143
- filter?: InputMaybe<AgentWorkspaceProjectSkillFilterInput>;
7144
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7145
- projectId?: InputMaybe<Scalars['ID']['input']>;
7146
- projectKey?: InputMaybe<Scalars['String']['input']>;
7147
- };
7148
- export declare type AgentWorkspaceRankedAgent = {
7149
- __typename?: 'AgentWorkspaceRankedAgent';
7150
- agent: AgentWorkspaceAgent;
7151
- totalProficiencyScore: Scalars['Int']['output'];
7152
- userSkills: Array<AgentWorkspaceUserSkill>;
7153
- };
7154
6820
  export declare type AgentWorkspaceRecommendationError = {
7155
6821
  __typename?: 'AgentWorkspaceRecommendationError';
7156
6822
  message: Scalars['String']['output'];
@@ -7191,20 +6857,18 @@ export declare type AgentWorkspaceResolvedDateRange = {
7191
6857
  };
7192
6858
  export declare type AgentWorkspaceRestoreSkillInput = {
7193
6859
  cloudId: Scalars['ID']['input'];
7194
- projectId?: InputMaybe<Scalars['ID']['input']>;
7195
- projectKey?: InputMaybe<Scalars['String']['input']>;
7196
6860
  skillId: Scalars['ID']['input'];
7197
6861
  };
7198
6862
  export declare type AgentWorkspaceRestoreSkillPayload = {
7199
6863
  __typename?: 'AgentWorkspaceRestoreSkillPayload';
7200
- error?: Maybe<Scalars['String']['output']>;
7201
- projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
6864
+ errors?: Maybe<Array<MutationError>>;
7202
6865
  success: Scalars['Boolean']['output'];
7203
6866
  };
7204
6867
  export declare type AgentWorkspaceSchedule = {
7205
6868
  __typename?: 'AgentWorkspaceSchedule';
7206
6869
  agents: Array<AgentWorkspaceAgent>;
7207
6870
  cloudId: Scalars['ID']['output'];
6871
+ coverageGaps: Array<AgentWorkspaceTimeRange>;
7208
6872
  createdAt: Scalars['DateTime']['output'];
7209
6873
  createdBy: Scalars['String']['output'];
7210
6874
  createdByUser?: Maybe<User>;
@@ -7401,45 +7065,58 @@ export declare type AgentWorkspaceShiftsSummary = {
7401
7065
  };
7402
7066
  export declare type AgentWorkspaceSkill = {
7403
7067
  __typename?: 'AgentWorkspaceSkill';
7404
- catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
7068
+ assignedAgents?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
7069
+ category?: Maybe<AgentWorkspaceSkillCategory>;
7405
7070
  description?: Maybe<Scalars['String']['output']>;
7406
7071
  id: Scalars['ID']['output'];
7407
- name: Scalars['String']['output'];
7408
- proficiencyDefinitions: Array<Scalars['String']['output']>;
7409
- projectSkills?: Maybe<Array<AgentWorkspaceProjectSkill>>;
7410
- userSkills?: Maybe<Array<AgentWorkspaceUserSkill>>;
7072
+ name?: Maybe<Scalars['String']['output']>;
7073
+ services?: Maybe<Array<AgentWorkspaceSkillServiceMapping>>;
7074
+ };
7075
+ export declare type AgentWorkspaceSkillAssignedAgentsArgs = {
7076
+ projectAri?: InputMaybe<Scalars['ID']['input']>;
7077
+ };
7078
+ export declare type AgentWorkspaceSkillServicesArgs = {
7079
+ projectAri: Scalars['ID']['input'];
7080
+ };
7081
+ export declare type AgentWorkspaceSkillAgentAssignment = {
7082
+ __typename?: 'AgentWorkspaceSkillAgentAssignment';
7083
+ skill?: Maybe<AgentWorkspaceSkill>;
7084
+ userAri: Scalars['ID']['output'];
7085
+ };
7086
+ export declare type AgentWorkspaceSkillCategory = {
7087
+ __typename?: 'AgentWorkspaceSkillCategory';
7088
+ description?: Maybe<Scalars['String']['output']>;
7089
+ id: Scalars['ID']['output'];
7090
+ name?: Maybe<Scalars['String']['output']>;
7091
+ skills?: Maybe<Array<AgentWorkspaceSkill>>;
7092
+ };
7093
+ export declare type AgentWorkspaceSkillCategoryConnection = {
7094
+ __typename?: 'AgentWorkspaceSkillCategoryConnection';
7095
+ edges?: Maybe<Array<AgentWorkspaceSkillCategoryEdge>>;
7096
+ errors?: Maybe<Array<QueryError>>;
7097
+ nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
7098
+ pageInfo: PageInfo;
7099
+ };
7100
+ export declare type AgentWorkspaceSkillCategoryEdge = {
7101
+ __typename?: 'AgentWorkspaceSkillCategoryEdge';
7102
+ cursor: Scalars['String']['output'];
7103
+ node: AgentWorkspaceSkillCategory;
7411
7104
  };
7412
7105
  export declare type AgentWorkspaceSkillConnection = {
7413
7106
  __typename?: 'AgentWorkspaceSkillConnection';
7414
7107
  edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
7108
+ errors?: Maybe<Array<QueryError>>;
7415
7109
  nodes?: Maybe<Array<Maybe<AgentWorkspaceSkill>>>;
7416
- pageInfo: AgentWorkspacePageInfo;
7110
+ pageInfo: PageInfo;
7417
7111
  };
7418
7112
  export declare type AgentWorkspaceSkillCreateInput = {
7419
- catalogAssociations: Array<AgentWorkspaceCatalogAssociationInput>;
7420
7113
  cloudId: Scalars['ID']['input'];
7421
7114
  description?: InputMaybe<Scalars['String']['input']>;
7422
7115
  name: Scalars['String']['input'];
7423
- proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
7424
- projectId?: InputMaybe<Scalars['ID']['input']>;
7425
- projectKey?: InputMaybe<Scalars['String']['input']>;
7426
7116
  };
7427
7117
  export declare type AgentWorkspaceSkillCreatePayload = {
7428
7118
  __typename?: 'AgentWorkspaceSkillCreatePayload';
7429
- error?: Maybe<Scalars['String']['output']>;
7430
- skill?: Maybe<AgentWorkspaceSkill>;
7431
- success: Scalars['Boolean']['output'];
7432
- };
7433
- export declare type AgentWorkspaceSkillDeleteInput = {
7434
- cloudId: Scalars['ID']['input'];
7435
- id: Scalars['ID']['input'];
7436
- projectId?: InputMaybe<Scalars['ID']['input']>;
7437
- projectKey?: InputMaybe<Scalars['String']['input']>;
7438
- };
7439
- export declare type AgentWorkspaceSkillDeletePayload = {
7440
- __typename?: 'AgentWorkspaceSkillDeletePayload';
7441
- deletedSkillId?: Maybe<Scalars['ID']['output']>;
7442
- error?: Maybe<Scalars['String']['output']>;
7119
+ errors?: Maybe<Array<MutationError>>;
7443
7120
  success: Scalars['Boolean']['output'];
7444
7121
  };
7445
7122
  export declare type AgentWorkspaceSkillEdge = {
@@ -7447,55 +7124,10 @@ export declare type AgentWorkspaceSkillEdge = {
7447
7124
  cursor: Scalars['String']['output'];
7448
7125
  node: AgentWorkspaceSkill;
7449
7126
  };
7450
- export declare type AgentWorkspaceSkillFilterInput = {
7451
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
7452
- nameContains?: InputMaybe<Scalars['String']['input']>;
7453
- parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7454
- };
7455
- export declare type AgentWorkspaceSkillGapsInput = {
7456
- cloudId: Scalars['ID']['input'];
7457
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7458
- projectId?: InputMaybe<Scalars['ID']['input']>;
7459
- projectKey?: InputMaybe<Scalars['String']['input']>;
7460
- };
7461
- export declare type AgentWorkspaceSkillInput = {
7462
- cloudId: Scalars['ID']['input'];
7463
- id: Scalars['ID']['input'];
7464
- projectId?: InputMaybe<Scalars['ID']['input']>;
7465
- projectKey?: InputMaybe<Scalars['String']['input']>;
7466
- };
7467
- export declare enum AgentWorkspaceSkillMatchType {
7468
- All = "ALL",
7469
- Any = "ANY"
7470
- }
7471
- export declare enum AgentWorkspaceSkillRequirementEnum {
7472
- Optional = "OPTIONAL",
7473
- Required = "REQUIRED"
7474
- }
7475
- export declare type AgentWorkspaceSkillRequirementInput = {
7476
- minProficiencyLevel: Scalars['Int']['input'];
7477
- skillId: Scalars['ID']['input'];
7478
- };
7479
- export declare type AgentWorkspaceSkillUpdateInput = {
7480
- cloudId: Scalars['ID']['input'];
7481
- description?: InputMaybe<Scalars['String']['input']>;
7482
- id: Scalars['ID']['input'];
7483
- name?: InputMaybe<Scalars['String']['input']>;
7484
- parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7485
- proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
7486
- projectId?: InputMaybe<Scalars['ID']['input']>;
7487
- projectKey?: InputMaybe<Scalars['String']['input']>;
7488
- };
7489
- export declare type AgentWorkspaceSkillUpdatePayload = {
7490
- __typename?: 'AgentWorkspaceSkillUpdatePayload';
7491
- error?: Maybe<Scalars['String']['output']>;
7127
+ export declare type AgentWorkspaceSkillServiceMapping = {
7128
+ __typename?: 'AgentWorkspaceSkillServiceMapping';
7129
+ serviceId: Scalars['ID']['output'];
7492
7130
  skill?: Maybe<AgentWorkspaceSkill>;
7493
- success: Scalars['Boolean']['output'];
7494
- };
7495
- export declare type AgentWorkspaceSkillsInput = {
7496
- cloudId: Scalars['ID']['input'];
7497
- filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
7498
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7499
7131
  };
7500
7132
  export declare type AgentWorkspaceSmartRoutingConfig = {
7501
7133
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
@@ -7515,18 +7147,6 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
7515
7147
  jobId?: Maybe<Scalars['ID']['output']>;
7516
7148
  status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
7517
7149
  };
7518
- export declare type AgentWorkspaceSubscribeSkillInput = {
7519
- cloudId: Scalars['ID']['input'];
7520
- projectId?: InputMaybe<Scalars['ID']['input']>;
7521
- projectKey?: InputMaybe<Scalars['String']['input']>;
7522
- skillId: Scalars['ID']['input'];
7523
- };
7524
- export declare type AgentWorkspaceSubscribeSkillPayload = {
7525
- __typename?: 'AgentWorkspaceSubscribeSkillPayload';
7526
- error?: Maybe<Scalars['String']['output']>;
7527
- projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
7528
- success: Scalars['Boolean']['output'];
7529
- };
7530
7150
  export declare type AgentWorkspaceTeamCapacitiesInput = {
7531
7151
  cloudId: Scalars['ID']['input'];
7532
7152
  projectKey: Scalars['String']['input'];
@@ -7557,7 +7177,6 @@ export declare type AgentWorkspaceTeamLinkFailure = {
7557
7177
  };
7558
7178
  export declare type AgentWorkspaceTeamSchedules = {
7559
7179
  __typename?: 'AgentWorkspaceTeamSchedules';
7560
- coverageGaps: Array<AgentWorkspaceTimeRange>;
7561
7180
  hasSchedules: Scalars['Boolean']['output'];
7562
7181
  schedules: Array<AgentWorkspaceSchedule>;
7563
7182
  team?: Maybe<TeamV2>;
@@ -7619,52 +7238,6 @@ export declare type AgentWorkspaceTimeRange = {
7619
7238
  endTime: Scalars['DateTime']['output'];
7620
7239
  startTime: Scalars['DateTime']['output'];
7621
7240
  };
7622
- export declare type AgentWorkspaceUnsubscribeSkillInput = {
7623
- cloudId: Scalars['ID']['input'];
7624
- projectId?: InputMaybe<Scalars['ID']['input']>;
7625
- projectKey?: InputMaybe<Scalars['String']['input']>;
7626
- skillId: Scalars['ID']['input'];
7627
- };
7628
- export declare type AgentWorkspaceUnsubscribeSkillPayload = {
7629
- __typename?: 'AgentWorkspaceUnsubscribeSkillPayload';
7630
- deletedProjectSkillId?: Maybe<Scalars['ID']['output']>;
7631
- error?: Maybe<Scalars['String']['output']>;
7632
- success: Scalars['Boolean']['output'];
7633
- };
7634
- export declare type AgentWorkspaceUpdateCatalogConfigInput = {
7635
- cloudId: Scalars['ID']['input'];
7636
- id: Scalars['ID']['input'];
7637
- minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
7638
- projectId?: InputMaybe<Scalars['ID']['input']>;
7639
- projectKey?: InputMaybe<Scalars['String']['input']>;
7640
- skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
7641
- };
7642
- export declare type AgentWorkspaceUpdateCatalogInput = {
7643
- cloudId: Scalars['ID']['input'];
7644
- description?: InputMaybe<Scalars['String']['input']>;
7645
- id: Scalars['ID']['input'];
7646
- name?: InputMaybe<Scalars['String']['input']>;
7647
- proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
7648
- projectId?: InputMaybe<Scalars['ID']['input']>;
7649
- projectKey?: InputMaybe<Scalars['String']['input']>;
7650
- thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
7651
- };
7652
- export declare type AgentWorkspaceUpdateCatalogTypeInput = {
7653
- cloudId: Scalars['ID']['input'];
7654
- description?: InputMaybe<Scalars['String']['input']>;
7655
- id: Scalars['ID']['input'];
7656
- name?: InputMaybe<Scalars['String']['input']>;
7657
- projectId?: InputMaybe<Scalars['ID']['input']>;
7658
- projectKey?: InputMaybe<Scalars['String']['input']>;
7659
- };
7660
- export declare type AgentWorkspaceUpdateHierarchyDefinitionInput = {
7661
- cloudId: Scalars['ID']['input'];
7662
- description?: InputMaybe<Scalars['String']['input']>;
7663
- id: Scalars['ID']['input'];
7664
- name?: InputMaybe<Scalars['String']['input']>;
7665
- projectId?: InputMaybe<Scalars['ID']['input']>;
7666
- projectKey?: InputMaybe<Scalars['String']['input']>;
7667
- };
7668
7241
  export declare type AgentWorkspaceUpdateRoutingConfigInput = {
7669
7242
  cloudId: Scalars['ID']['input'];
7670
7243
  enabled: Scalars['Boolean']['input'];
@@ -7694,20 +7267,6 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
7694
7267
  schedule?: Maybe<AgentWorkspaceSchedule>;
7695
7268
  success: Scalars['Boolean']['output'];
7696
7269
  };
7697
- export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
7698
- cloudId: Scalars['ID']['input'];
7699
- proficiencyLevel: Scalars['Int']['input'];
7700
- projectId?: InputMaybe<Scalars['ID']['input']>;
7701
- projectKey?: InputMaybe<Scalars['String']['input']>;
7702
- skillId: Scalars['ID']['input'];
7703
- userId: Scalars['ID']['input'];
7704
- };
7705
- export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
7706
- __typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
7707
- error?: Maybe<Scalars['String']['output']>;
7708
- success: Scalars['Boolean']['output'];
7709
- userSkill?: Maybe<AgentWorkspaceUserSkill>;
7710
- };
7711
7270
  export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
7712
7271
  enabled: Scalars['Boolean']['input'];
7713
7272
  projectAri: Scalars['ID']['input'];
@@ -7717,62 +7276,6 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
7717
7276
  smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
7718
7277
  success: Scalars['Boolean']['output'];
7719
7278
  };
7720
- export declare type AgentWorkspaceUserConnection = {
7721
- __typename?: 'AgentWorkspaceUserConnection';
7722
- edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
7723
- nodes?: Maybe<Array<Maybe<AgentWorkspaceAgent>>>;
7724
- pageInfo: AgentWorkspacePageInfo;
7725
- };
7726
- export declare type AgentWorkspaceUserEdge = {
7727
- __typename?: 'AgentWorkspaceUserEdge';
7728
- cursor: Scalars['String']['output'];
7729
- node: AgentWorkspaceAgent;
7730
- };
7731
- export declare type AgentWorkspaceUserSkill = {
7732
- __typename?: 'AgentWorkspaceUserSkill';
7733
- id: Scalars['ID']['output'];
7734
- proficiencyLevel: Scalars['Int']['output'];
7735
- skill?: Maybe<AgentWorkspaceSkill>;
7736
- user?: Maybe<AgentWorkspaceAgent>;
7737
- };
7738
- export declare type AgentWorkspaceUserSkillConnection = {
7739
- __typename?: 'AgentWorkspaceUserSkillConnection';
7740
- edges?: Maybe<Array<AgentWorkspaceUserSkillEdge>>;
7741
- nodes?: Maybe<Array<Maybe<AgentWorkspaceUserSkill>>>;
7742
- pageInfo: AgentWorkspacePageInfo;
7743
- };
7744
- export declare type AgentWorkspaceUserSkillEdge = {
7745
- __typename?: 'AgentWorkspaceUserSkillEdge';
7746
- cursor: Scalars['String']['output'];
7747
- node: AgentWorkspaceUserSkill;
7748
- };
7749
- export declare type AgentWorkspaceUserSkillFilterInput = {
7750
- ids?: InputMaybe<Array<Scalars['ID']['input']>>;
7751
- proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
7752
- skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7753
- userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7754
- };
7755
- export declare type AgentWorkspaceUserSkillInput = {
7756
- cloudId: Scalars['ID']['input'];
7757
- id: Scalars['ID']['input'];
7758
- projectId?: InputMaybe<Scalars['ID']['input']>;
7759
- projectKey?: InputMaybe<Scalars['String']['input']>;
7760
- };
7761
- export declare type AgentWorkspaceUserSkillsInput = {
7762
- cloudId: Scalars['ID']['input'];
7763
- filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
7764
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7765
- projectId?: InputMaybe<Scalars['ID']['input']>;
7766
- projectKey?: InputMaybe<Scalars['String']['input']>;
7767
- };
7768
- export declare type AgentWorkspaceUsersBySkillsInput = {
7769
- cloudId: Scalars['ID']['input'];
7770
- pagination?: InputMaybe<AgentWorkspacePaginationInput>;
7771
- projectId?: InputMaybe<Scalars['ID']['input']>;
7772
- projectKey?: InputMaybe<Scalars['String']['input']>;
7773
- skillIds: Array<Scalars['ID']['input']>;
7774
- skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
7775
- };
7776
7279
  export declare type AiCoreApiCsvExportInput = {
7777
7280
  cloudId?: InputMaybe<Scalars['ID']['input']>;
7778
7281
  fromDate?: InputMaybe<Scalars['String']['input']>;
@@ -10110,6 +9613,10 @@ export declare type AssetsDmCreateDataSourceTypeResponse = {
10110
9613
  isSuccessful?: Maybe<Scalars['Boolean']['output']>;
10111
9614
  message?: Maybe<Scalars['String']['output']>;
10112
9615
  };
9616
+ export declare type AssetsDmCreateDateFormatInput = {
9617
+ format: Scalars['String']['input'];
9618
+ name: Scalars['String']['input'];
9619
+ };
10113
9620
  export declare type AssetsDmCreateDefaultCleansingRuleInput = {
10114
9621
  dataSourceTypeId?: InputMaybe<Scalars['ID']['input']>;
10115
9622
  defFunctionId: Scalars['ID']['input'];
@@ -10899,6 +10406,11 @@ export declare type AssetsDmDataSourcesListArgs = {
10899
10406
  sortBy?: InputMaybe<AssetsDmDataSourceSort>;
10900
10407
  workspaceId: Scalars['ID']['input'];
10901
10408
  };
10409
+ export declare type AssetsDmDateFormatMutationResponse = {
10410
+ __typename?: 'AssetsDMDateFormatMutationResponse';
10411
+ isSuccessful: Scalars['Boolean']['output'];
10412
+ message: Scalars['String']['output'];
10413
+ };
10902
10414
  export declare type AssetsDmDateFormats = {
10903
10415
  __typename?: 'AssetsDMDateFormats';
10904
10416
  createdBy: Scalars['String']['output'];
@@ -11182,6 +10694,11 @@ export declare type AssetsDmEditDataDictionaryResponse = {
11182
10694
  isSuccessful: Scalars['Boolean']['output'];
11183
10695
  message: Scalars['String']['output'];
11184
10696
  };
10697
+ export declare type AssetsDmEditDateFormatInput = {
10698
+ dateFormatId: Scalars['ID']['input'];
10699
+ format: Scalars['String']['input'];
10700
+ name: Scalars['String']['input'];
10701
+ };
11185
10702
  export declare type AssetsDmEditDefaultAttributeMappingInput = {
11186
10703
  columnType: AssetsDmDefaultAttributeMappingColumnType;
11187
10704
  dataSourceTypeId: Scalars['ID']['input'];
@@ -13075,6 +12592,10 @@ export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension
13075
12592
  errorType?: Maybe<Scalars['String']['output']>;
13076
12593
  statusCode?: Maybe<Scalars['Int']['output']>;
13077
12594
  };
12595
+ export declare type AssetsVerticalItamAttributes = {
12596
+ __typename?: 'AssetsVerticalItamAttributes';
12597
+ attributes?: Maybe<Array<Maybe<AssetsVerticalObjectTypeAttribute>>>;
12598
+ };
13078
12599
  export declare type AssetsVerticalItamObjects = {
13079
12600
  __typename?: 'AssetsVerticalItamObjects';
13080
12601
  attributes?: Maybe<Array<Maybe<AssetsVerticalAttributeOnObject>>>;
@@ -13150,6 +12671,7 @@ export declare type AssetsVerticalKeyValueInput = {
13150
12671
  key: Scalars['String']['input'];
13151
12672
  value: Scalars['String']['input'];
13152
12673
  };
12674
+ export declare type AssetsVerticalModelItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
13153
12675
  export declare type AssetsVerticalModelObjects = AssetsVerticalObjects & {
13154
12676
  __typename?: 'AssetsVerticalModelObjects';
13155
12677
  itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
@@ -13318,6 +12840,24 @@ export declare type AssetsVerticalStatusCount = {
13318
12840
  count?: Maybe<Scalars['Int']['output']>;
13319
12841
  statusKey?: Maybe<Scalars['String']['output']>;
13320
12842
  };
12843
+ export declare type AssetsVerticalStockroomObjects = AssetsVerticalObjects & {
12844
+ __typename?: 'AssetsVerticalStockroomObjects';
12845
+ itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
12846
+ limit?: Maybe<Scalars['Int']['output']>;
12847
+ objects?: Maybe<Array<Maybe<AssetsObject>>>;
12848
+ offset?: Maybe<Scalars['Int']['output']>;
12849
+ pageInfo?: Maybe<PageInfo>;
12850
+ totalCount?: Maybe<Scalars['Int']['output']>;
12851
+ };
12852
+ export declare type AssetsVerticalStockroomObjectsInput = {
12853
+ filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
12854
+ limit?: InputMaybe<Scalars['Int']['input']>;
12855
+ offset?: InputMaybe<Scalars['Int']['input']>;
12856
+ orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
12857
+ orderKey?: InputMaybe<Scalars['String']['input']>;
12858
+ workspaceId: Scalars['ID']['input'];
12859
+ };
12860
+ export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
13321
12861
  export declare type AssetsVerticalUpdateDepreciationRuleInput = {
13322
12862
  assetTypes?: InputMaybe<Array<AssetsVerticalDepreciationRuleAssetTypeInput>>;
13323
12863
  cloudId: Scalars['ID']['input'];
@@ -14683,6 +14223,19 @@ export declare enum CcpAllowancePoolAllocationDetailsType {
14683
14223
  Custom = "CUSTOM",
14684
14224
  Default = "DEFAULT"
14685
14225
  }
14226
+ export declare type CcpAllowancePoolAllocationUpdateInput = {
14227
+ allocationId: Scalars['ID']['input'];
14228
+ billingEntity?: InputMaybe<Scalars['String']['input']>;
14229
+ enforcementMode?: InputMaybe<CcpLatestAllowanceEnforcementModeType>;
14230
+ overageCap?: InputMaybe<Scalars['Float']['input']>;
14231
+ poolShare?: InputMaybe<Scalars['Float']['input']>;
14232
+ };
14233
+ export declare type CcpAllowancePoolAllocationUpdateResult = {
14234
+ __typename?: 'CcpAllowancePoolAllocationUpdateResult';
14235
+ allocationId?: Maybe<Scalars['ID']['output']>;
14236
+ poolId?: Maybe<Scalars['ID']['output']>;
14237
+ transactionId?: Maybe<Scalars['ID']['output']>;
14238
+ };
14686
14239
  export declare type CcpAllowancePoolAllocationsResponse = {
14687
14240
  __typename?: 'CcpAllowancePoolAllocationsResponse';
14688
14241
  allowance?: Maybe<Scalars['Float']['output']>;
@@ -14753,6 +14306,133 @@ export declare enum CcpBenefitValueAppliedOn {
14753
14306
  Total = "TOTAL",
14754
14307
  Upsell = "UPSELL"
14755
14308
  }
14309
+ export declare type CcpBillEstimateAdjustmentV3 = {
14310
+ __typename?: 'CcpBillEstimateAdjustmentV3';
14311
+ amount?: Maybe<Scalars['Float']['output']>;
14312
+ percent?: Maybe<Scalars['Float']['output']>;
14313
+ promoCode?: Maybe<Scalars['String']['output']>;
14314
+ promotion?: Maybe<CcpPromotion>;
14315
+ reasonCode?: Maybe<Scalars['String']['output']>;
14316
+ type?: Maybe<Scalars['String']['output']>;
14317
+ };
14318
+ export declare type CcpBillEstimateBillToInput = {
14319
+ address?: InputMaybe<Scalars['String']['input']>;
14320
+ name?: InputMaybe<Scalars['String']['input']>;
14321
+ };
14322
+ export declare type CcpBillEstimateChargeQuantityInput = {
14323
+ chargeElement: Scalars['String']['input'];
14324
+ lastUpdatedAt?: InputMaybe<Scalars['Float']['input']>;
14325
+ quantity: Scalars['Float']['input'];
14326
+ };
14327
+ export declare type CcpBillEstimateChargeQuantityV3 = {
14328
+ __typename?: 'CcpBillEstimateChargeQuantityV3';
14329
+ chargeElement?: Maybe<Scalars['String']['output']>;
14330
+ quantity?: Maybe<Scalars['Float']['output']>;
14331
+ };
14332
+ export declare type CcpBillEstimateChargeQuantityV3Input = {
14333
+ chargeElement?: InputMaybe<Scalars['String']['input']>;
14334
+ quantity?: InputMaybe<Scalars['Float']['input']>;
14335
+ };
14336
+ export declare type CcpBillEstimateEndsAtDurationInput = {
14337
+ interval?: InputMaybe<Scalars['String']['input']>;
14338
+ intervalCount?: InputMaybe<Scalars['Int']['input']>;
14339
+ };
14340
+ export declare type CcpBillEstimateEndsAtInput = {
14341
+ duration?: InputMaybe<CcpBillEstimateEndsAtDurationInput>;
14342
+ timestamp?: InputMaybe<Scalars['Float']['input']>;
14343
+ };
14344
+ export declare type CcpBillEstimateInvoiceSettingsInput = {
14345
+ preventUpcomingInvoice: Scalars['Boolean']['input'];
14346
+ };
14347
+ export declare type CcpBillEstimateItemV3 = {
14348
+ __typename?: 'CcpBillEstimateItemV3';
14349
+ accruedCharges?: Maybe<Scalars['Boolean']['output']>;
14350
+ adjustments?: Maybe<Array<Maybe<CcpBillEstimateAdjustmentV3>>>;
14351
+ billPeriod?: Maybe<CcpBillEstimatePeriodV3>;
14352
+ chargeQuantity?: Maybe<CcpBillEstimateChargeQuantityV3>;
14353
+ description?: Maybe<Scalars['String']['output']>;
14354
+ margins?: Maybe<Array<Maybe<CcpBillEstimateMarginV3>>>;
14355
+ offering?: Maybe<CcpOffering>;
14356
+ orderId?: Maybe<Scalars['ID']['output']>;
14357
+ orderItemId?: Maybe<Scalars['ID']['output']>;
14358
+ pricingPlan?: Maybe<CcpPricingPlan>;
14359
+ selfReference?: Maybe<Scalars['Boolean']['output']>;
14360
+ subtotal?: Maybe<Scalars['Float']['output']>;
14361
+ total?: Maybe<Scalars['Float']['output']>;
14362
+ };
14363
+ export declare type CcpBillEstimateMarginV3 = {
14364
+ __typename?: 'CcpBillEstimateMarginV3';
14365
+ amount?: Maybe<Scalars['Float']['output']>;
14366
+ percent?: Maybe<Scalars['Float']['output']>;
14367
+ promoCode?: Maybe<Scalars['String']['output']>;
14368
+ promotion?: Maybe<CcpPromotion>;
14369
+ reasonCode?: Maybe<Scalars['String']['output']>;
14370
+ type?: Maybe<Scalars['String']['output']>;
14371
+ };
14372
+ export declare type CcpBillEstimatePauseBillingInput = {
14373
+ behaviour?: InputMaybe<Scalars['String']['input']>;
14374
+ resumesAt?: InputMaybe<Scalars['Float']['input']>;
14375
+ };
14376
+ export declare type CcpBillEstimatePeriodV3 = {
14377
+ __typename?: 'CcpBillEstimatePeriodV3';
14378
+ end?: Maybe<Scalars['Float']['output']>;
14379
+ start?: Maybe<Scalars['Float']['output']>;
14380
+ };
14381
+ export declare type CcpBillEstimatePhaseV3Input = {
14382
+ chargeDetails?: InputMaybe<CcpBillEstimateRequestChargeDetailsInput>;
14383
+ endsAt?: InputMaybe<Scalars['Float']['input']>;
14384
+ phaseListPrice?: InputMaybe<Scalars['Float']['input']>;
14385
+ startsAt?: InputMaybe<Scalars['Float']['input']>;
14386
+ trial?: InputMaybe<CcpBillEstimateTrialInput>;
14387
+ };
14388
+ export declare type CcpBillEstimatePrebillingConfigurationInput = {
14389
+ billTo?: InputMaybe<CcpBillEstimateBillToInput>;
14390
+ };
14391
+ export declare type CcpBillEstimatePromotionExtendedInput = {
14392
+ promotionCode?: InputMaybe<Scalars['String']['input']>;
14393
+ promotionId?: InputMaybe<Scalars['ID']['input']>;
14394
+ promotionInstanceId?: InputMaybe<Scalars['ID']['input']>;
14395
+ promotionInstanceReferenceId?: InputMaybe<Scalars['ID']['input']>;
14396
+ };
14397
+ export declare enum CcpBillEstimateProrationBehaviour {
14398
+ AlwaysInvoice = "ALWAYS_INVOICE",
14399
+ None = "NONE"
14400
+ }
14401
+ export declare type CcpBillEstimateRequestChargeDetailsInput = {
14402
+ chargeQuantities?: InputMaybe<Array<InputMaybe<CcpBillEstimateChargeQuantityInput>>>;
14403
+ offeringId?: InputMaybe<Scalars['ID']['input']>;
14404
+ pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
14405
+ promotions?: InputMaybe<Array<InputMaybe<CcpBillEstimatePromotionExtendedInput>>>;
14406
+ };
14407
+ export declare type CcpBillEstimateScheduledChangesV3Input = {
14408
+ phases?: InputMaybe<Array<InputMaybe<CcpBillEstimatePhaseV3Input>>>;
14409
+ };
14410
+ export declare type CcpBillEstimateTrialInput = {
14411
+ chargeQuantities?: InputMaybe<Array<InputMaybe<CcpBillEstimateChargeQuantityV3Input>>>;
14412
+ endBehaviour?: InputMaybe<Scalars['String']['input']>;
14413
+ endTimestamp?: InputMaybe<Scalars['Float']['input']>;
14414
+ };
14415
+ export declare type CcpBillEstimateV3 = {
14416
+ __typename?: 'CcpBillEstimateV3';
14417
+ created?: Maybe<Scalars['Float']['output']>;
14418
+ currency?: Maybe<Scalars['String']['output']>;
14419
+ entitlement?: Maybe<CcpEntitlement>;
14420
+ items?: Maybe<Array<Maybe<CcpBillEstimateItemV3>>>;
14421
+ total?: Maybe<Scalars['Float']['output']>;
14422
+ };
14423
+ export declare type CcpBillEstimateV3Input = {
14424
+ billingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
14425
+ chargeDetails?: InputMaybe<CcpBillEstimateRequestChargeDetailsInput>;
14426
+ createRequest?: InputMaybe<Scalars['Boolean']['input']>;
14427
+ endsAt?: InputMaybe<CcpBillEstimateEndsAtInput>;
14428
+ invoiceSettings?: InputMaybe<CcpBillEstimateInvoiceSettingsInput>;
14429
+ pauseBilling?: InputMaybe<CcpBillEstimatePauseBillingInput>;
14430
+ preBillingConfiguration?: InputMaybe<CcpBillEstimatePrebillingConfigurationInput>;
14431
+ prorationBehaviour?: InputMaybe<CcpBillEstimateProrationBehaviour>;
14432
+ scheduledChanges?: InputMaybe<CcpBillEstimateScheduledChangesV3Input>;
14433
+ startTimestamp?: InputMaybe<Scalars['Float']['input']>;
14434
+ trial?: InputMaybe<CcpBillEstimateTrialInput>;
14435
+ };
14756
14436
  export declare type CcpBillToParty = {
14757
14437
  __typename?: 'CcpBillToParty';
14758
14438
  name?: Maybe<Scalars['String']['output']>;
@@ -15060,6 +14740,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
15060
14740
  __typename?: 'CcpEntitlement';
15061
14741
  allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
15062
14742
  allowancePoolMembers?: Maybe<Array<Maybe<CcpAllowancePoolMembersResponse>>>;
14743
+ billEstimateV3?: Maybe<CcpBillEstimateV3>;
15063
14744
  changeReason?: Maybe<Scalars['String']['output']>;
15064
14745
  chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
15065
14746
  childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
@@ -15108,6 +14789,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
15108
14789
  export declare type CcpEntitlementAllowancePoolMembersArgs = {
15109
14790
  poolId: Scalars['ID']['input'];
15110
14791
  };
14792
+ export declare type CcpEntitlementBillEstimateV3Args = {
14793
+ input?: InputMaybe<CcpBillEstimateV3Input>;
14794
+ };
15111
14795
  export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
15112
14796
  input: CcpChargeElementLatestAllowancesInput;
15113
14797
  };
@@ -27226,6 +26910,11 @@ export declare type ConfluenceApprovalAgentPayload = Payload & {
27226
26910
  errors: Array<MutationError>;
27227
26911
  success: Scalars['Boolean']['output'];
27228
26912
  };
26913
+ export declare type ConfluenceApprovalReviewerConfig = {
26914
+ __typename?: 'ConfluenceApprovalReviewerConfig';
26915
+ hasReviewers: Scalars['Boolean']['output'];
26916
+ reviewers: Array<Maybe<ConfluenceSpaceApprovalReviewerEntry>>;
26917
+ };
27229
26918
  export declare enum ConfluenceApprovalTransitionType {
27230
26919
  Directed = "DIRECTED",
27231
26920
  Initial = "INITIAL"
@@ -27840,6 +27529,29 @@ export declare type ConfluenceContentApprovalReviewerInput = {
27840
27529
  principalId: Scalars['String']['input'];
27841
27530
  principalType: ConfluencePrincipalType;
27842
27531
  };
27532
+ export declare type ConfluenceContentApprovalsSpaceSettingConfig = {
27533
+ __typename?: 'ConfluenceContentApprovalsSpaceSettingConfig';
27534
+ defaultApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
27535
+ disallowFirstPublish: Scalars['Boolean']['output'];
27536
+ enabled: Scalars['Boolean']['output'];
27537
+ enforcedApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
27538
+ };
27539
+ export declare type ConfluenceContentApprovalsSpaceSettingConfigInput = {
27540
+ defaultReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
27541
+ disallowFirstPublish?: InputMaybe<Scalars['Boolean']['input']>;
27542
+ enabled: Scalars['Boolean']['input'];
27543
+ enforcedReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
27544
+ };
27545
+ export declare type ConfluenceContentApprovalsSpaceSettingConfigPayload = Payload & {
27546
+ __typename?: 'ConfluenceContentApprovalsSpaceSettingConfigPayload';
27547
+ config?: Maybe<ConfluenceContentApprovalsSpaceSettingConfig>;
27548
+ errors: Array<MutationError>;
27549
+ success: Scalars['Boolean']['output'];
27550
+ };
27551
+ export declare type ConfluenceContentApprovalsSpaceSettingReviewerInput = {
27552
+ principalId: Scalars['String']['input'];
27553
+ principalType: ConfluencePrincipalType;
27554
+ };
27843
27555
  export declare type ConfluenceContentApprovalsSpaceSettingsPayload = {
27844
27556
  __typename?: 'ConfluenceContentApprovalsSpaceSettingsPayload';
27845
27557
  errors: Array<MutationError>;
@@ -29769,6 +29481,12 @@ export declare type ConfluenceMarkAllContainerCommentsAsReadInput = {
29769
29481
  contentId: Scalars['String']['input'];
29770
29482
  readView?: InputMaybe<ConfluenceViewState>;
29771
29483
  };
29484
+ export declare type ConfluenceMarkdownDroppedElement = {
29485
+ __typename?: 'ConfluenceMarkdownDroppedElement';
29486
+ category?: Maybe<Scalars['String']['output']>;
29487
+ detail?: Maybe<Scalars['String']['output']>;
29488
+ occurrences?: Maybe<Scalars['Int']['output']>;
29489
+ };
29772
29490
  export declare type ConfluenceMediaTokenData = {
29773
29491
  __typename?: 'ConfluenceMediaTokenData';
29774
29492
  clientId: Scalars['String']['output'];
@@ -32344,6 +32062,11 @@ export declare type ConfluenceSpaceAnalyticsPermissionUserPrincipal = Confluence
32344
32062
  principalId: Scalars['ID']['output'];
32345
32063
  profilePicture?: Maybe<Icon>;
32346
32064
  };
32065
+ export declare type ConfluenceSpaceApprovalReviewerEntry = {
32066
+ __typename?: 'ConfluenceSpaceApprovalReviewerEntry';
32067
+ principalId: Scalars['String']['output'];
32068
+ principalType: ConfluencePrincipalType;
32069
+ };
32347
32070
  export declare type ConfluenceSpaceConnection = {
32348
32071
  __typename?: 'ConfluenceSpaceConnection';
32349
32072
  edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
@@ -32627,6 +32350,11 @@ export declare enum ConfluenceSubscriptionContentType {
32627
32350
  Page = "PAGE",
32628
32351
  Whiteboard = "WHITEBOARD"
32629
32352
  }
32353
+ export declare type ConfluenceSuggestedEditsUpdated = {
32354
+ __typename?: 'ConfluenceSuggestedEditsUpdated';
32355
+ accountId?: Maybe<Scalars['String']['output']>;
32356
+ id: Scalars['ID']['output'];
32357
+ };
32630
32358
  export declare type ConfluenceSyncSmartFolderInput = {
32631
32359
  folderId: Scalars['ID']['input'];
32632
32360
  };
@@ -33793,6 +33521,11 @@ export declare type ConfluenceUsersHavePermissionList = {
33793
33521
  __typename?: 'ConfluenceUsersHavePermissionList';
33794
33522
  usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
33795
33523
  };
33524
+ export declare type ConfluenceValidateConvertPageToMarkdownModeResult = {
33525
+ __typename?: 'ConfluenceValidateConvertPageToMarkdownModeResult';
33526
+ droppedElements?: Maybe<Array<Maybe<ConfluenceMarkdownDroppedElement>>>;
33527
+ isLossless: Scalars['Boolean']['output'];
33528
+ };
33796
33529
  export declare type ConfluenceValidateSpaceKeyResponse = {
33797
33530
  __typename?: 'ConfluenceValidateSpaceKeyResponse';
33798
33531
  generatedUniqueKey?: Maybe<Scalars['String']['output']>;
@@ -34622,6 +34355,7 @@ export declare type ContentRestrictions = {
34622
34355
  archive?: Maybe<ContentRestriction>;
34623
34356
  copy?: Maybe<ContentRestriction>;
34624
34357
  create?: Maybe<ContentRestriction>;
34358
+ createPublicLink?: Maybe<ContentRestriction>;
34625
34359
  create_space?: Maybe<ContentRestriction>;
34626
34360
  delete?: Maybe<ContentRestriction>;
34627
34361
  export?: Maybe<ContentRestriction>;
@@ -34853,6 +34587,7 @@ export declare type ConvoAiAgentSessionUpdatedByProjects = {
34853
34587
  };
34854
34588
  export declare type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
34855
34589
  __typename?: 'ConvoAiAnswerPartMessage';
34590
+ artifact?: Maybe<ConvoAiMessageArtifact>;
34856
34591
  audio?: Maybe<Scalars['String']['output']>;
34857
34592
  contentSummary?: Maybe<Scalars['String']['output']>;
34858
34593
  messageMetadata?: Maybe<Scalars['JSON']['output']>;
@@ -34877,6 +34612,7 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
34877
34612
  export declare type ConvoAiConversationMessage = ConvoAiAgentMessage & {
34878
34613
  __typename?: 'ConvoAiConversationMessage';
34879
34614
  actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
34615
+ artifacts?: Maybe<Array<ConvoAiMessageArtifact>>;
34880
34616
  authorId?: Maybe<Scalars['String']['output']>;
34881
34617
  contentSummary?: Maybe<Scalars['String']['output']>;
34882
34618
  messageId?: Maybe<Scalars['String']['output']>;
@@ -35084,6 +34820,14 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
35084
34820
  export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
35085
34821
  minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
35086
34822
  };
34823
+ export declare type ConvoAiMessageArtifact = {
34824
+ __typename?: 'ConvoAiMessageArtifact';
34825
+ append: Scalars['Boolean']['output'];
34826
+ id: Scalars['ID']['output'];
34827
+ name?: Maybe<Scalars['String']['output']>;
34828
+ parts: Array<Scalars['JSON']['output']>;
34829
+ type: Scalars['String']['output'];
34830
+ };
35087
34831
  export declare enum ConvoAiMessageAuthorRole {
35088
34832
  Agent = "AGENT",
35089
34833
  Assistant = "ASSISTANT",
@@ -35765,6 +35509,62 @@ export declare type CplsQueryErrorExtension = QueryErrorExtension & {
35765
35509
  errorType?: Maybe<Scalars['String']['output']>;
35766
35510
  statusCode?: Maybe<Scalars['Int']['output']>;
35767
35511
  };
35512
+ export declare type CplsReorderContributorInput = {
35513
+ cloudId: Scalars['ID']['input'];
35514
+ contributorDataId: Scalars['ID']['input'];
35515
+ position: CplsReorderPosition;
35516
+ scopeId: Scalars['ID']['input'];
35517
+ };
35518
+ export declare type CplsReorderContributorPayload = Payload & {
35519
+ __typename?: 'CplsReorderContributorPayload';
35520
+ errors?: Maybe<Array<MutationError>>;
35521
+ success: Scalars['Boolean']['output'];
35522
+ };
35523
+ export declare type CplsReorderContributorWorkInput = {
35524
+ cloudId: Scalars['ID']['input'];
35525
+ contributorDataId: Scalars['ID']['input'];
35526
+ position: CplsReorderPosition;
35527
+ scopeId: Scalars['ID']['input'];
35528
+ workId: Scalars['ID']['input'];
35529
+ };
35530
+ export declare type CplsReorderContributorWorkPayload = Payload & {
35531
+ __typename?: 'CplsReorderContributorWorkPayload';
35532
+ errors?: Maybe<Array<MutationError>>;
35533
+ success: Scalars['Boolean']['output'];
35534
+ };
35535
+ export declare type CplsReorderPosition = {
35536
+ anchorId?: InputMaybe<Scalars['ID']['input']>;
35537
+ kind: CplsReorderPositionKind;
35538
+ };
35539
+ export declare enum CplsReorderPositionKind {
35540
+ After = "AFTER",
35541
+ Before = "BEFORE",
35542
+ First = "FIRST",
35543
+ Last = "LAST"
35544
+ }
35545
+ export declare type CplsReorderWorkContributorInput = {
35546
+ cloudId: Scalars['ID']['input'];
35547
+ contributorDataId: Scalars['ID']['input'];
35548
+ position: CplsReorderPosition;
35549
+ scopeId: Scalars['ID']['input'];
35550
+ workId: Scalars['ID']['input'];
35551
+ };
35552
+ export declare type CplsReorderWorkContributorPayload = Payload & {
35553
+ __typename?: 'CplsReorderWorkContributorPayload';
35554
+ errors?: Maybe<Array<MutationError>>;
35555
+ success: Scalars['Boolean']['output'];
35556
+ };
35557
+ export declare type CplsReorderWorkInput = {
35558
+ cloudId: Scalars['ID']['input'];
35559
+ position: CplsReorderPosition;
35560
+ scopeId: Scalars['ID']['input'];
35561
+ workId: Scalars['ID']['input'];
35562
+ };
35563
+ export declare type CplsReorderWorkPayload = Payload & {
35564
+ __typename?: 'CplsReorderWorkPayload';
35565
+ errors?: Maybe<Array<MutationError>>;
35566
+ success: Scalars['Boolean']['output'];
35567
+ };
35768
35568
  export declare type CplsSearchCustomContributionTargetsInput = {
35769
35569
  after?: InputMaybe<Scalars['String']['input']>;
35770
35570
  before?: InputMaybe<Scalars['String']['input']>;
@@ -36610,6 +36410,13 @@ export declare type CreatePolarisViewSetPayload = Payload & {
36610
36410
  node?: Maybe<PolarisViewSet>;
36611
36411
  success: Scalars['Boolean']['output'];
36612
36412
  };
36413
+ export declare type CreateRollingReleasePayload = Payload & {
36414
+ __typename?: 'CreateRollingReleasePayload';
36415
+ errors?: Maybe<Array<MutationError>>;
36416
+ rolloutId?: Maybe<Scalars['String']['output']>;
36417
+ success: Scalars['Boolean']['output'];
36418
+ targetVersionId?: Maybe<Scalars['String']['output']>;
36419
+ };
36613
36420
  export declare type CreateSpaceAdditionalSettingsInput = {
36614
36421
  jiraProject?: InputMaybe<CreateSpaceJiraProjectInput>;
36615
36422
  spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
@@ -41024,6 +40831,8 @@ export declare type DevConsoleDeveloperSpaceResourceTotal = {
41024
40831
  };
41025
40832
  export declare type DevConsoleDeveloperSpaceResourceTotals = {
41026
40833
  __typename?: 'DevConsoleDeveloperSpaceResourceTotals';
40834
+ containerCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
40835
+ containerMemory?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
41027
40836
  functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
41028
40837
  kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
41029
40838
  kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
@@ -41230,6 +41039,8 @@ export declare type DevConsoleQueryTenantContextsArgs = {
41230
41039
  ids: Array<Scalars['ID']['input']>;
41231
41040
  };
41232
41041
  export declare enum DevConsoleResource {
41042
+ ContainerCompute = "CONTAINER_COMPUTE",
41043
+ ContainerMemory = "CONTAINER_MEMORY",
41233
41044
  FunctionCompute = "FUNCTION_COMPUTE",
41234
41045
  KvsRead = "KVS_READ",
41235
41046
  KvsWrite = "KVS_WRITE",
@@ -41249,6 +41060,8 @@ export declare type DevConsoleResourceUsage = {
41249
41060
  };
41250
41061
  export declare type DevConsoleResourceUsageData = {
41251
41062
  __typename?: 'DevConsoleResourceUsageData';
41063
+ containerCompute?: Maybe<Array<DevConsoleResourceUsage>>;
41064
+ containerMemory?: Maybe<Array<DevConsoleResourceUsage>>;
41252
41065
  functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
41253
41066
  kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
41254
41067
  kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
@@ -43140,6 +42953,7 @@ export declare type EcosystemMutation = {
43140
42953
  cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
43141
42954
  createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
43142
42955
  createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
42956
+ createRollingRelease?: Maybe<CreateRollingReleasePayload>;
43143
42957
  deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
43144
42958
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
43145
42959
  devConsole?: Maybe<DevConsoleMutation>;
@@ -43171,6 +42985,11 @@ export declare type EcosystemMutationCreateAppEnvironmentArgs = {
43171
42985
  export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
43172
42986
  input: CreateAppVersionRolloutInput;
43173
42987
  };
42988
+ export declare type EcosystemMutationCreateRollingReleaseArgs = {
42989
+ appId: Scalars['ID']['input'];
42990
+ envId: Scalars['ID']['input'];
42991
+ targetVersionId?: InputMaybe<Scalars['ID']['input']>;
42992
+ };
43174
42993
  export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
43175
42994
  input: DeleteAppEnvironmentInput;
43176
42995
  };
@@ -43478,6 +43297,7 @@ export declare type EnabledContentTypes = {
43478
43297
  isFoldersEnabled: Scalars['Boolean']['output'];
43479
43298
  isLivePagesEnabled: Scalars['Boolean']['output'];
43480
43299
  isSlidesEnabled: Scalars['Boolean']['output'];
43300
+ isSmartFoldersEnabled: Scalars['Boolean']['output'];
43481
43301
  isWhiteboardsEnabled: Scalars['Boolean']['output'];
43482
43302
  };
43483
43303
  export declare type EnabledContentTypesInput = {
@@ -43487,6 +43307,7 @@ export declare type EnabledContentTypesInput = {
43487
43307
  isFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
43488
43308
  isLivePagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
43489
43309
  isSlidesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
43310
+ isSmartFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
43490
43311
  isWhiteboardsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
43491
43312
  };
43492
43313
  export declare type EnabledFeatures = {
@@ -48518,6 +48339,7 @@ export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPa
48518
48339
  export declare type GraphIntegrationSkill = {
48519
48340
  __typename?: 'GraphIntegrationSkill';
48520
48341
  description: Scalars['String']['output'];
48342
+ file?: Maybe<GraphIntegrationSkillFile>;
48521
48343
  id: Scalars['ID']['output'];
48522
48344
  instructions: Scalars['String']['output'];
48523
48345
  metadata: GraphIntegrationSkillMetadata;
@@ -48561,6 +48383,13 @@ export declare type GraphIntegrationSkillDirectoryItem = {
48561
48383
  slashCommand?: Maybe<Scalars['String']['output']>;
48562
48384
  tags: Array<GraphIntegrationDirectoryFilterDimension>;
48563
48385
  };
48386
+ export declare type GraphIntegrationSkillFile = {
48387
+ __typename?: 'GraphIntegrationSkillFile';
48388
+ checksum: Scalars['String']['output'];
48389
+ downloadUrl: Scalars['String']['output'];
48390
+ fileId: Scalars['String']['output'];
48391
+ fileSize: Scalars['Int']['output'];
48392
+ };
48564
48393
  export declare type GraphIntegrationSkillItem = {
48565
48394
  __typename?: 'GraphIntegrationSkillItem';
48566
48395
  description: Scalars['String']['output'];
@@ -104967,13 +104796,20 @@ export declare type GravityAddReactionPayload = Payload & {
104967
104796
  errors?: Maybe<Array<MutationError>>;
104968
104797
  success: Scalars['Boolean']['output'];
104969
104798
  };
104799
+ export declare type GravityCreateViewFromInlinedTemplateInput = {
104800
+ name?: InputMaybe<Scalars['String']['input']>;
104801
+ projectId: Scalars['ID']['input'];
104802
+ refMappings?: InputMaybe<GravityRefMappingsInput>;
104803
+ refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
104804
+ sectionId?: InputMaybe<Scalars['String']['input']>;
104805
+ template: GravityViewTemplateInput;
104806
+ };
104970
104807
  export declare type GravityCreateViewFromTemplateInput = {
104971
104808
  name?: InputMaybe<Scalars['String']['input']>;
104972
104809
  projectId: Scalars['ID']['input'];
104973
104810
  refMappings?: InputMaybe<GravityRefMappingsInput>;
104974
104811
  refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
104975
104812
  sectionId?: InputMaybe<Scalars['String']['input']>;
104976
- template?: InputMaybe<GravityViewTemplateInput>;
104977
104813
  templateId?: InputMaybe<Scalars['ID']['input']>;
104978
104814
  };
104979
104815
  export declare type GravityCreateViewFromTemplatePayload = Payload & {
@@ -105093,12 +104929,12 @@ export declare enum GravityFieldRollupType {
105093
104929
  Range = "RANGE",
105094
104930
  Sum = "SUM"
105095
104931
  }
105096
- export declare type GravityGenerateViewFromUserPromptInput = {
104932
+ export declare type GravityGenerateViewTemplateFromUserPromptInput = {
105097
104933
  projectId: Scalars['ID']['input'];
105098
104934
  prompt: Scalars['String']['input'];
105099
104935
  };
105100
- export declare type GravityGenerateViewFromUserPromptPayload = Payload & {
105101
- __typename?: 'GravityGenerateViewFromUserPromptPayload';
104936
+ export declare type GravityGenerateViewTemplateFromUserPromptPayload = Payload & {
104937
+ __typename?: 'GravityGenerateViewTemplateFromUserPromptPayload';
105102
104938
  errors?: Maybe<Array<MutationError>>;
105103
104939
  success: Scalars['Boolean']['output'];
105104
104940
  template?: Maybe<GravityViewTemplate>;
@@ -105576,6 +105412,23 @@ export declare type GrowthUnifiedProfileBestPerformingTargetData = {
105576
105412
  type?: Maybe<Scalars['String']['output']>;
105577
105413
  value?: Maybe<Scalars['String']['output']>;
105578
105414
  };
105415
+ export declare type GrowthUnifiedProfileCampaign = {
105416
+ __typename?: 'GrowthUnifiedProfileCampaign';
105417
+ campaign?: Maybe<Scalars['String']['output']>;
105418
+ content?: Maybe<Scalars['String']['output']>;
105419
+ medium?: Maybe<Scalars['String']['output']>;
105420
+ name?: Maybe<Scalars['String']['output']>;
105421
+ sfdcCampaignId?: Maybe<Scalars['String']['output']>;
105422
+ source?: Maybe<Scalars['String']['output']>;
105423
+ };
105424
+ export declare type GrowthUnifiedProfileCampaignInput = {
105425
+ campaign?: InputMaybe<Scalars['String']['input']>;
105426
+ content?: InputMaybe<Scalars['String']['input']>;
105427
+ medium?: InputMaybe<Scalars['String']['input']>;
105428
+ name?: InputMaybe<Scalars['String']['input']>;
105429
+ sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
105430
+ source?: InputMaybe<Scalars['String']['input']>;
105431
+ };
105579
105432
  export declare enum GrowthUnifiedProfileChannel {
105580
105433
  PaidContent = "PAID_CONTENT",
105581
105434
  PaidDisplay = "PAID_DISPLAY",
@@ -105679,6 +105532,17 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
105679
105532
  tenantId?: InputMaybe<Scalars['ID']['input']>;
105680
105533
  unifiedProfile: GrowthUnifiedProfileInput;
105681
105534
  };
105535
+ export declare type GrowthUnifiedProfileCreateSnIdProfileInput = {
105536
+ firstActivationContext: GrowthUnifiedProfileFirstActivationContextInput;
105537
+ snId: Scalars['ID']['input'];
105538
+ };
105539
+ export declare type GrowthUnifiedProfileCreateSnIdProfileResponse = {
105540
+ __typename?: 'GrowthUnifiedProfileCreateSnIdProfileResponse';
105541
+ error?: Maybe<Scalars['String']['output']>;
105542
+ message?: Maybe<Scalars['String']['output']>;
105543
+ snId?: Maybe<Scalars['ID']['output']>;
105544
+ success: Scalars['Boolean']['output'];
105545
+ };
105682
105546
  export declare enum GrowthUnifiedProfileDomainType {
105683
105547
  Business = "BUSINESS",
105684
105548
  Personal = "PERSONAL"
@@ -105752,6 +105616,55 @@ export declare enum GrowthUnifiedProfileFeatureType {
105752
105616
  Stateful = "STATEFUL",
105753
105617
  Stateless = "STATELESS"
105754
105618
  }
105619
+ export declare type GrowthUnifiedProfileFirstActivationContext = {
105620
+ __typename?: 'GrowthUnifiedProfileFirstActivationContext';
105621
+ activeGroups?: Maybe<Scalars['String']['output']>;
105622
+ bxpGatewayRequestId?: Maybe<Scalars['String']['output']>;
105623
+ campaign?: Maybe<GrowthUnifiedProfileCampaign>;
105624
+ cmsPageVariant?: Maybe<Scalars['String']['output']>;
105625
+ cookiesEnabled?: Maybe<Scalars['Boolean']['output']>;
105626
+ expiresAt?: Maybe<Scalars['Float']['output']>;
105627
+ isMarketingEvent?: Maybe<Scalars['Boolean']['output']>;
105628
+ onboardingJourney?: Maybe<Scalars['String']['output']>;
105629
+ originProduct?: Maybe<Scalars['String']['output']>;
105630
+ pageCanonicalUrl?: Maybe<Scalars['String']['output']>;
105631
+ pageDomain?: Maybe<Scalars['String']['output']>;
105632
+ pagePath?: Maybe<Scalars['String']['output']>;
105633
+ pageReferrerDomain?: Maybe<Scalars['String']['output']>;
105634
+ pageReferrerSubdomain?: Maybe<Scalars['String']['output']>;
105635
+ pageReferrerUrl?: Maybe<Scalars['String']['output']>;
105636
+ pageReferrerUrlParameters?: Maybe<Scalars['String']['output']>;
105637
+ pageSubdomain?: Maybe<Scalars['String']['output']>;
105638
+ pageUrl?: Maybe<Scalars['String']['output']>;
105639
+ pageUrlParameters?: Maybe<Scalars['String']['output']>;
105640
+ pageUrlParamsJson?: Maybe<Scalars['String']['output']>;
105641
+ userAgent?: Maybe<Scalars['String']['output']>;
105642
+ writeKey?: Maybe<Scalars['String']['output']>;
105643
+ };
105644
+ export declare type GrowthUnifiedProfileFirstActivationContextInput = {
105645
+ activeGroups?: InputMaybe<Scalars['String']['input']>;
105646
+ bxpGatewayRequestId?: InputMaybe<Scalars['String']['input']>;
105647
+ campaign?: InputMaybe<GrowthUnifiedProfileCampaignInput>;
105648
+ cmsPageVariant?: InputMaybe<Scalars['String']['input']>;
105649
+ cookiesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
105650
+ expiresAt?: InputMaybe<Scalars['Float']['input']>;
105651
+ isMarketingEvent?: InputMaybe<Scalars['Boolean']['input']>;
105652
+ onboardingJourney?: InputMaybe<Scalars['String']['input']>;
105653
+ originProduct?: InputMaybe<Scalars['String']['input']>;
105654
+ pageCanonicalUrl?: InputMaybe<Scalars['String']['input']>;
105655
+ pageDomain?: InputMaybe<Scalars['String']['input']>;
105656
+ pagePath?: InputMaybe<Scalars['String']['input']>;
105657
+ pageReferrerDomain?: InputMaybe<Scalars['String']['input']>;
105658
+ pageReferrerSubdomain?: InputMaybe<Scalars['String']['input']>;
105659
+ pageReferrerUrl?: InputMaybe<Scalars['String']['input']>;
105660
+ pageReferrerUrlParameters?: InputMaybe<Scalars['String']['input']>;
105661
+ pageSubdomain?: InputMaybe<Scalars['String']['input']>;
105662
+ pageUrl?: InputMaybe<Scalars['String']['input']>;
105663
+ pageUrlParameters?: InputMaybe<Scalars['String']['input']>;
105664
+ pageUrlParamsJson?: InputMaybe<Scalars['String']['input']>;
105665
+ userAgent?: InputMaybe<Scalars['String']['input']>;
105666
+ writeKey?: InputMaybe<Scalars['String']['input']>;
105667
+ };
105755
105668
  export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
105756
105669
  __typename?: 'GrowthUnifiedProfileFunctionalOnboardingResult';
105757
105670
  completedCoreActions: Array<GrowthUnifiedProfileCompletedCoreAction>;
@@ -106114,6 +106027,11 @@ export declare type GrowthUnifiedProfileSiteProfileResultOnboardingHubInsightsPe
106114
106027
  onboardingIds: Array<Scalars['ID']['input']>;
106115
106028
  rollingIntervals: Array<GrowthUnifiedProfileRollingDateIntervalInput>;
106116
106029
  };
106030
+ export declare type GrowthUnifiedProfileSnIdProfileResponse = {
106031
+ __typename?: 'GrowthUnifiedProfileSnIdProfileResponse';
106032
+ firstActivationContext?: Maybe<GrowthUnifiedProfileFirstActivationContext>;
106033
+ snId: Scalars['ID']['output'];
106034
+ };
106117
106035
  export declare enum GrowthUnifiedProfileTeamType {
106118
106036
  CustomerService = "CUSTOMER_SERVICE",
106119
106037
  DataScience = "DATA_SCIENCE",
@@ -110102,6 +110020,7 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraListRowFi
110102
110020
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
110103
110021
  isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
110104
110022
  issue?: Maybe<JiraIssue>;
110023
+ missingAggregatedDateType?: Maybe<JiraMissingAggregatedDateType>;
110105
110024
  name: Scalars['String']['output'];
110106
110025
  type: Scalars['String']['output'];
110107
110026
  };
@@ -110125,6 +110044,10 @@ export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs
110125
110044
  input?: InputMaybe<JiraFieldAggregationQueryInput>;
110126
110045
  viewId?: InputMaybe<Scalars['String']['input']>;
110127
110046
  };
110047
+ export declare type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
110048
+ input?: InputMaybe<JiraFieldAggregationQueryInput>;
110049
+ viewId?: InputMaybe<Scalars['String']['input']>;
110050
+ };
110128
110051
  export declare enum JiraAiAgentConversationState {
110129
110052
  ArtefactReady = "ARTEFACT_READY",
110130
110053
  AuthRequired = "AUTH_REQUIRED",
@@ -112266,7 +112189,7 @@ export declare type JiraBoardViewIssueCreateInput = {
112266
112189
  rank?: InputMaybe<JiraIssueCreateRankInput>;
112267
112190
  transitionId?: InputMaybe<Scalars['Int']['input']>;
112268
112191
  };
112269
- export declare type JiraBoardViewIssueCreatePayload = {
112192
+ export declare type JiraBoardViewIssueCreatePayload = Payload & {
112270
112193
  __typename?: 'JiraBoardViewIssueCreatePayload';
112271
112194
  errors?: Maybe<Array<MutationError>>;
112272
112195
  issue?: Maybe<JiraIssue>;
@@ -115993,6 +115916,10 @@ export declare type JiraEditFieldSchemeInput = {
115993
115916
  name: Scalars['String']['input'];
115994
115917
  schemeId: Scalars['ID']['input'];
115995
115918
  };
115919
+ export declare type JiraEligibleProjectsFilter = {
115920
+ projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
115921
+ query?: InputMaybe<Scalars['String']['input']>;
115922
+ };
115996
115923
  export declare enum JiraEmailMimeType {
115997
115924
  Html = "HTML",
115998
115925
  Text = "TEXT"
@@ -116345,6 +116272,7 @@ export declare type JiraFieldConfigFilterInput = {
116345
116272
  includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
116346
116273
  includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
116347
116274
  includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
116275
+ includedFieldTypeCategories?: InputMaybe<Array<JiraFieldTypeGroupCategory>>;
116348
116276
  includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
116349
116277
  orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
116350
116278
  orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
@@ -116573,6 +116501,7 @@ export declare type JiraFieldSchemesConnection = {
116573
116501
  __typename?: 'JiraFieldSchemesConnection';
116574
116502
  edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
116575
116503
  pageInfo: PageInfo;
116504
+ totalCount?: Maybe<Scalars['Int']['output']>;
116576
116505
  };
116577
116506
  export declare type JiraFieldSchemesEdge = {
116578
116507
  __typename?: 'JiraFieldSchemesEdge';
@@ -116734,6 +116663,17 @@ export declare type JiraFieldTypeGroup = {
116734
116663
  displayName?: Maybe<Scalars['String']['output']>;
116735
116664
  key?: Maybe<Scalars['String']['output']>;
116736
116665
  };
116666
+ export declare enum JiraFieldTypeGroupCategory {
116667
+ DateFields = "DATE_FIELDS",
116668
+ ListsFields = "LISTS_FIELDS",
116669
+ NumberFields = "NUMBER_FIELDS",
116670
+ OtherFields = "OTHER_FIELDS",
116671
+ PeopleFields = "PEOPLE_FIELDS",
116672
+ RestrictedFields = "RESTRICTED_FIELDS",
116673
+ SystemAndAppFields = "SYSTEM_AND_APP_FIELDS",
116674
+ TextFields = "TEXT_FIELDS",
116675
+ WorkSortingFields = "WORK_SORTING_FIELDS"
116676
+ }
116737
116677
  export declare type JiraFieldTypeGroupConnection = {
116738
116678
  __typename?: 'JiraFieldTypeGroupConnection';
116739
116679
  edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
@@ -122327,6 +122267,14 @@ export declare type JiraLinkedIssuesInput = {
122327
122267
  inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
122328
122268
  outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
122329
122269
  };
122270
+ export declare type JiraLinkedWorkItemsSortInput = {
122271
+ fieldSetId: Scalars['String']['input'];
122272
+ order: JiraLinkedWorkItemsSortOrder;
122273
+ };
122274
+ export declare enum JiraLinkedWorkItemsSortOrder {
122275
+ Asc = "ASC",
122276
+ Desc = "DESC"
122277
+ }
122330
122278
  export declare type JiraListRow = {
122331
122279
  assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
122332
122280
  canBeExported?: Maybe<Scalars['Boolean']['output']>;
@@ -122718,6 +122666,11 @@ export declare type JiraMergeVersionPayload = Payload & {
122718
122666
  success: Scalars['Boolean']['output'];
122719
122667
  targetVersion?: Maybe<JiraVersion>;
122720
122668
  };
122669
+ export declare enum JiraMissingAggregatedDateType {
122670
+ Both = "BOTH",
122671
+ EndDate = "END_DATE",
122672
+ StartDate = "START_DATE"
122673
+ }
122721
122674
  export declare enum JiraMoveBoardViewIssueToCellEnd {
122722
122675
  Bottom = "BOTTOM",
122723
122676
  Top = "TOP"
@@ -123098,6 +123051,7 @@ export declare type JiraMutation = {
123098
123051
  jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
123099
123052
  jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
123100
123053
  jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
123054
+ jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
123101
123055
  jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
123102
123056
  jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
123103
123057
  jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
@@ -123544,6 +123498,9 @@ export declare type JiraMutationJira_DismissForYouRecommendedActionArgs = {
123544
123498
  cloudId: Scalars['ID']['input'];
123545
123499
  input: JiraDismissForYouRecommendedActionInput;
123546
123500
  };
123501
+ export declare type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
123502
+ input: JiraSetProjectPolicyAssociatedProjectsInput;
123503
+ };
123547
123504
  export declare type JiraMutationJwmAssociateFieldArgs = {
123548
123505
  cloudId: Scalars['ID']['input'];
123549
123506
  input: JiraWorkManagementAssociateFieldInput;
@@ -125852,6 +125809,7 @@ export declare type JiraProject = Node & {
125852
125809
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
125853
125810
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
125854
125811
  optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
125812
+ policyAssociations?: Maybe<JiraProjectPolicyAssociationConnection>;
125855
125813
  policyViolations?: Maybe<JiraProjectPolicyRuleViolationConnection>;
125856
125814
  projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
125857
125815
  projectId?: Maybe<Scalars['String']['output']>;
@@ -126012,6 +125970,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
126012
125970
  after?: InputMaybe<Scalars['String']['input']>;
126013
125971
  first?: InputMaybe<Scalars['Int']['input']>;
126014
125972
  };
125973
+ export declare type JiraProjectPolicyAssociationsArgs = {
125974
+ after?: InputMaybe<Scalars['String']['input']>;
125975
+ before?: InputMaybe<Scalars['String']['input']>;
125976
+ first?: InputMaybe<Scalars['Int']['input']>;
125977
+ last?: InputMaybe<Scalars['Int']['input']>;
125978
+ };
126015
125979
  export declare type JiraProjectPolicyViolationsArgs = {
126016
125980
  after?: InputMaybe<Scalars['String']['input']>;
126017
125981
  before?: InputMaybe<Scalars['String']['input']>;
@@ -126549,10 +126513,44 @@ export declare enum JiraProjectPermissionType {
126549
126513
  }
126550
126514
  export declare type JiraProjectPolicy = Node & {
126551
126515
  __typename?: 'JiraProjectPolicy';
126516
+ associatedProjects?: Maybe<JiraProjectPolicyAssociationConnection>;
126552
126517
  description?: Maybe<Scalars['String']['output']>;
126518
+ eligibleProjects?: Maybe<JiraProjectConnection>;
126553
126519
  id: Scalars['ID']['output'];
126554
126520
  name?: Maybe<Scalars['String']['output']>;
126555
126521
  };
126522
+ export declare type JiraProjectPolicyAssociatedProjectsArgs = {
126523
+ after?: InputMaybe<Scalars['String']['input']>;
126524
+ before?: InputMaybe<Scalars['String']['input']>;
126525
+ filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
126526
+ first?: InputMaybe<Scalars['Int']['input']>;
126527
+ last?: InputMaybe<Scalars['Int']['input']>;
126528
+ projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
126529
+ };
126530
+ export declare type JiraProjectPolicyEligibleProjectsArgs = {
126531
+ after?: InputMaybe<Scalars['String']['input']>;
126532
+ filter?: InputMaybe<JiraEligibleProjectsFilter>;
126533
+ first?: InputMaybe<Scalars['Int']['input']>;
126534
+ };
126535
+ export declare type JiraProjectPolicyAssociation = {
126536
+ __typename?: 'JiraProjectPolicyAssociation';
126537
+ project?: Maybe<JiraProject>;
126538
+ };
126539
+ export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & {
126540
+ __typename?: 'JiraProjectPolicyAssociationConnection';
126541
+ edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
126542
+ nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
126543
+ pageInfo: PageInfo;
126544
+ };
126545
+ export declare type JiraProjectPolicyAssociationEdge = {
126546
+ __typename?: 'JiraProjectPolicyAssociationEdge';
126547
+ cursor: Scalars['String']['output'];
126548
+ node?: Maybe<JiraProjectPolicyAssociation>;
126549
+ };
126550
+ export declare enum JiraProjectPolicyComplianceState {
126551
+ Compliant = "COMPLIANT",
126552
+ Noncompliant = "NONCOMPLIANT"
126553
+ }
126556
126554
  export declare type JiraProjectPolicyConnection = HasPageInfo & HasTotal & {
126557
126555
  __typename?: 'JiraProjectPolicyConnection';
126558
126556
  edges?: Maybe<Array<Maybe<JiraProjectPolicyEdge>>>;
@@ -126565,6 +126563,10 @@ export declare type JiraProjectPolicyEdge = {
126565
126563
  cursor: Scalars['String']['output'];
126566
126564
  node?: Maybe<JiraProjectPolicy>;
126567
126565
  };
126566
+ export declare type JiraProjectPolicyProjectFilter = {
126567
+ complianceState?: InputMaybe<JiraProjectPolicyComplianceState>;
126568
+ projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
126569
+ };
126568
126570
  export declare type JiraProjectPolicyRuleViolation = {
126569
126571
  __typename?: 'JiraProjectPolicyRuleViolation';
126570
126572
  domain?: Maybe<Scalars['String']['output']>;
@@ -126589,7 +126591,6 @@ export declare type JiraProjectPolicyRuleViolationEdge = {
126589
126591
  };
126590
126592
  export declare type JiraProjectPolicyRuleViolationFilter = {
126591
126593
  domains?: InputMaybe<Array<Scalars['String']['input']>>;
126592
- ruleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
126593
126594
  };
126594
126595
  export declare type JiraProjectRecommendation = {
126595
126596
  __typename?: 'JiraProjectRecommendation';
@@ -128083,6 +128084,7 @@ export declare type JiraQueryLinkedWorkItemsArgs = {
128083
128084
  hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
128084
128085
  last?: InputMaybe<Scalars['Int']['input']>;
128085
128086
  shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
128087
+ sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
128086
128088
  viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
128087
128089
  };
128088
128090
  export declare type JiraQueryLockedIssueTypeIdsArgs = {
@@ -131615,6 +131617,16 @@ export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
131615
131617
  cloudId: Scalars['ID']['input'];
131616
131618
  projectId: Scalars['ID']['input'];
131617
131619
  };
131620
+ export declare type JiraSetProjectPolicyAssociatedProjectsInput = {
131621
+ policyId: Scalars['ID']['input'];
131622
+ projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
131623
+ };
131624
+ export declare type JiraSetProjectPolicyAssociatedProjectsPayload = Payload & {
131625
+ __typename?: 'JiraSetProjectPolicyAssociatedProjectsPayload';
131626
+ errors?: Maybe<Array<MutationError>>;
131627
+ projectPolicy?: Maybe<JiraProjectPolicy>;
131628
+ success: Scalars['Boolean']['output'];
131629
+ };
131618
131630
  export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
131619
131631
  deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
131620
131632
  projectId: Scalars['ID']['input'];
@@ -132595,6 +132607,7 @@ export declare type JiraSubscription = {
132595
132607
  bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
132596
132608
  onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
132597
132609
  onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
132610
+ onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
132598
132611
  onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
132599
132612
  onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
132600
132613
  onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
@@ -132648,6 +132661,10 @@ export declare type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
132648
132661
  cloudId: Scalars['ID']['input'];
132649
132662
  issueId: Scalars['String']['input'];
132650
132663
  };
132664
+ export declare type JiraSubscriptionOnAiAgentSessionCreateV3Args = {
132665
+ cloudId: Scalars['ID']['input'];
132666
+ issueId: Scalars['String']['input'];
132667
+ };
132651
132668
  export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
132652
132669
  cloudId: Scalars['ID']['input'];
132653
132670
  projectIds: Array<Scalars['String']['input']>;
@@ -138018,6 +138035,8 @@ export declare type KitsuneCustomerConnection = KitsuneConnection & {
138018
138035
  __typename?: 'KitsuneCustomerConnection';
138019
138036
  edges: Array<KitsuneCustomerEdge>;
138020
138037
  pageInfo: PageInfo;
138038
+ totalCount: Scalars['Int']['output'];
138039
+ totalHasBeenDetermined: Scalars['Boolean']['output'];
138021
138040
  };
138022
138041
  export declare type KitsuneCustomerCustomField = {
138023
138042
  __typename?: 'KitsuneCustomerCustomField';
@@ -143437,6 +143456,11 @@ export declare type MarketplaceStoreApprovalDetails = {
143437
143456
  __typename?: 'MarketplaceStoreApprovalDetails';
143438
143457
  approvalTimestamp?: Maybe<Scalars['String']['output']>;
143439
143458
  };
143459
+ export declare type MarketplaceStoreAsset = {
143460
+ __typename?: 'MarketplaceStoreAsset';
143461
+ altText?: Maybe<Scalars['String']['output']>;
143462
+ id: Scalars['String']['output'];
143463
+ };
143440
143464
  export declare enum MarketplaceStoreAtlassianProductHostingType {
143441
143465
  Cloud = "CLOUD",
143442
143466
  Datacenter = "DATACENTER",
@@ -143516,6 +143540,25 @@ export declare type MarketplaceStoreCcpaDetails = {
143516
143540
  business?: Maybe<MarketplaceStoreBusiness>;
143517
143541
  serviceProvider?: Maybe<MarketplaceStoreServiceProvider>;
143518
143542
  };
143543
+ export declare type MarketplaceStoreCapabilities = {
143544
+ __typename?: 'MarketplaceStoreCapabilities';
143545
+ heading?: Maybe<Scalars['String']['output']>;
143546
+ values?: Maybe<Array<MarketplaceStoreCapabilityItem>>;
143547
+ };
143548
+ export declare type MarketplaceStoreCapabilityItem = {
143549
+ __typename?: 'MarketplaceStoreCapabilityItem';
143550
+ description?: Maybe<Scalars['String']['output']>;
143551
+ image?: Maybe<MarketplaceStoreAsset>;
143552
+ title: Scalars['String']['output'];
143553
+ };
143554
+ export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
143555
+ __typename?: 'MarketplaceStoreCapabilitySection';
143556
+ capabilities?: Maybe<MarketplaceStoreCapabilities>;
143557
+ description?: Maybe<Scalars['String']['output']>;
143558
+ key: MarketplaceStoreLayoutSectionKeys;
143559
+ title: Scalars['String']['output'];
143560
+ type: MarketplaceStoreLayoutSectionType;
143561
+ };
143519
143562
  export declare type MarketplaceStoreCategoryHeroSection = {
143520
143563
  __typename?: 'MarketplaceStoreCategoryHeroSection';
143521
143564
  backgroundColor: Scalars['String']['output'];
@@ -144043,6 +144086,10 @@ export declare type MarketplaceStoreLayoutSection = {
144043
144086
  title: Scalars['String']['output'];
144044
144087
  };
144045
144088
  export declare enum MarketplaceStoreLayoutSectionKeys {
144089
+ BrowseAll = "BROWSE_ALL",
144090
+ Capability = "CAPABILITY",
144091
+ CategoryHero = "CATEGORY_HERO",
144092
+ CollectionHero = "COLLECTION_HERO",
144046
144093
  ExploreCategories = "EXPLORE_CATEGORIES",
144047
144094
  ExploreObjects = "EXPLORE_OBJECTS",
144048
144095
  Hero = "HERO",
@@ -144050,13 +144097,16 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
144050
144097
  RecommendedForYou = "RECOMMENDED_FOR_YOU",
144051
144098
  Spotlight = "SPOTLIGHT",
144052
144099
  Statistics = "STATISTICS",
144100
+ TopUseCases = "TOP_USE_CASES",
144053
144101
  TrustedPartners = "TRUSTED_PARTNERS"
144054
144102
  }
144055
144103
  export declare enum MarketplaceStoreLayoutSectionType {
144056
144104
  Brand = "BRAND",
144105
+ Capability = "CAPABILITY",
144057
144106
  Dark = "DARK",
144058
144107
  ExploreCategories = "EXPLORE_CATEGORIES",
144059
- List = "LIST"
144108
+ List = "LIST",
144109
+ TopUseCases = "TOP_USE_CASES"
144060
144110
  }
144061
144111
  export declare enum MarketplaceStoreLayoutSlotTheme {
144062
144112
  Bounded = "BOUNDED",
@@ -144482,6 +144532,17 @@ export declare type MarketplaceStoreProductMigrationError = {
144482
144532
  subCode?: Maybe<Scalars['String']['output']>;
144483
144533
  };
144484
144534
  export declare type MarketplaceStoreProductMigrationResponse = MarketplaceStoreProductMigration | MarketplaceStoreProductMigrationError;
144535
+ export declare type MarketplaceStoreProductTag = {
144536
+ __typename?: 'MarketplaceStoreProductTag';
144537
+ description?: Maybe<Scalars['String']['output']>;
144538
+ id: Scalars['ID']['output'];
144539
+ name: Scalars['String']['output'];
144540
+ tagType?: Maybe<MarketplaceStoreProductTagType>;
144541
+ };
144542
+ export declare enum MarketplaceStoreProductTagType {
144543
+ Category = "CATEGORY",
144544
+ Keywords = "KEYWORDS"
144545
+ }
144485
144546
  export declare type MarketplaceStoreProperties = {
144486
144547
  __typename?: 'MarketplaceStoreProperties';
144487
144548
  formStatus: MarketplaceStoreFormStatus;
@@ -144526,6 +144587,7 @@ export declare type MarketplaceStoreQueryApi = {
144526
144587
  partnerByPartnerName?: Maybe<MarketplaceStoreSearchPartnerResponse>;
144527
144588
  personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
144528
144589
  privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
144590
+ productTags?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
144529
144591
  recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
144530
144592
  reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
144531
144593
  siteDetails: MarketplaceStoreSiteDetailsResponse;
@@ -144648,6 +144710,9 @@ export declare type MarketplaceStoreQueryApiPersonalisedContextAndLayoutArgs = {
144648
144710
  export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
144649
144711
  input: MarketplaceStorePrivacyAndSecurityRequestInput;
144650
144712
  };
144713
+ export declare type MarketplaceStoreQueryApiProductTagsArgs = {
144714
+ tagType?: InputMaybe<MarketplaceStoreProductTagType>;
144715
+ };
144651
144716
  export declare type MarketplaceStoreQueryApiRecommendationsSectionArgs = {
144652
144717
  usecase: MarketplaceStoreRecommendationsUsecase;
144653
144718
  };
@@ -144841,6 +144906,18 @@ export declare type MarketplaceStoreThirdPartyInformation = {
144841
144906
  isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
144842
144907
  thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
144843
144908
  };
144909
+ export declare type MarketplaceStoreTopUseCasesSection = MarketplaceStoreLayoutSection & {
144910
+ __typename?: 'MarketplaceStoreTopUseCasesSection';
144911
+ description?: Maybe<Scalars['String']['output']>;
144912
+ key: MarketplaceStoreLayoutSectionKeys;
144913
+ navigationUrl?: Maybe<Scalars['String']['output']>;
144914
+ objectsFetchCount?: Maybe<Scalars['Int']['output']>;
144915
+ searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
144916
+ title: Scalars['String']['output'];
144917
+ topUseCases?: Maybe<MarketplaceStoreUseCases>;
144918
+ type: MarketplaceStoreLayoutSectionType;
144919
+ widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
144920
+ };
144844
144921
  export declare type MarketplaceStoreTrustSignalDataRules = {
144845
144922
  __typename?: 'MarketplaceStoreTrustSignalDataRules';
144846
144923
  name: Scalars['String']['output'];
@@ -144888,6 +144965,17 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
144888
144965
  status: Scalars['String']['output'];
144889
144966
  version: Scalars['Int']['output'];
144890
144967
  };
144968
+ export declare type MarketplaceStoreUseCaseValue = {
144969
+ __typename?: 'MarketplaceStoreUseCaseValue';
144970
+ iconKey?: Maybe<Scalars['String']['output']>;
144971
+ id: Scalars['String']['output'];
144972
+ name?: Maybe<Scalars['String']['output']>;
144973
+ };
144974
+ export declare type MarketplaceStoreUseCases = {
144975
+ __typename?: 'MarketplaceStoreUseCases';
144976
+ heading?: Maybe<Scalars['String']['output']>;
144977
+ values?: Maybe<Array<MarketplaceStoreUseCaseValue>>;
144978
+ };
144891
144979
  export declare type MarketplaceStoreUserPreferences = {
144892
144980
  __typename?: 'MarketplaceStoreUserPreferences';
144893
144981
  notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
@@ -145068,6 +145156,22 @@ export declare type MercuryAddCustomFieldDefinitionOptionsPayload = Payload & {
145068
145156
  errors?: Maybe<Array<MutationError>>;
145069
145157
  success: Scalars['Boolean']['output'];
145070
145158
  };
145159
+ export declare type MercuryAddOrganizationMembershipInput = {
145160
+ endDate?: InputMaybe<Scalars['Date']['input']>;
145161
+ organizationId: Scalars['ID']['input'];
145162
+ startDate: Scalars['Date']['input'];
145163
+ userId: Scalars['ID']['input'];
145164
+ };
145165
+ export declare type MercuryAddOrganizationMembershipsInput = {
145166
+ cloudId: Scalars['ID']['input'];
145167
+ organizationMemberships: Array<MercuryAddOrganizationMembershipInput>;
145168
+ };
145169
+ export declare type MercuryAddOrganizationMembershipsPayload = Payload & {
145170
+ __typename?: 'MercuryAddOrganizationMembershipsPayload';
145171
+ errors?: Maybe<Array<MutationError>>;
145172
+ organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
145173
+ success: Scalars['Boolean']['output'];
145174
+ };
145071
145175
  export declare type MercuryAddTagsToEntityInput = {
145072
145176
  entityId: Scalars['ID']['input'];
145073
145177
  tagIds: Array<Scalars['ID']['input']>;
@@ -145130,6 +145234,7 @@ export declare type MercuryApplication = {
145130
145234
  __typename?: 'MercuryApplication';
145131
145235
  id: Scalars['ID']['output'];
145132
145236
  key: Scalars['String']['output'];
145237
+ logo: MercuryMultiResolutionIcon;
145133
145238
  name: Scalars['String']['output'];
145134
145239
  };
145135
145240
  export declare type MercuryApplicationConnection = {
@@ -145715,6 +145820,7 @@ export declare type MercuryCostItem = Node & {
145715
145820
  focusAreaId?: Maybe<MercuryFocusArea>;
145716
145821
  id: Scalars['ID']['output'];
145717
145822
  investmentCategory?: Maybe<MercuryInvestmentCategory>;
145823
+ linkedWork?: Maybe<Array<Maybe<MercuryLinkedWork>>>;
145718
145824
  name: Scalars['String']['output'];
145719
145825
  tags?: Maybe<MercuryHomeTagConnection>;
145720
145826
  };
@@ -148370,6 +148476,14 @@ export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
148370
148476
  countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
148371
148477
  totalCount?: Maybe<Scalars['Int']['output']>;
148372
148478
  };
148479
+ export declare type MercuryMultiResolutionIcon = {
148480
+ __typename?: 'MercuryMultiResolutionIcon';
148481
+ defaultUrl: Scalars['URL']['output'];
148482
+ large?: Maybe<Scalars['URL']['output']>;
148483
+ medium?: Maybe<Scalars['URL']['output']>;
148484
+ small?: Maybe<Scalars['URL']['output']>;
148485
+ xlarge?: Maybe<Scalars['URL']['output']>;
148486
+ };
148373
148487
  export declare type MercuryMultiSelectCustomField = MercuryCustomField & {
148374
148488
  __typename?: 'MercuryMultiSelectCustomField';
148375
148489
  createdBy?: Maybe<User>;
@@ -148694,6 +148808,7 @@ export declare type MercuryNormalizedWorkProjectType = MercuryProjectType & {
148694
148808
  };
148695
148809
  export declare type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
148696
148810
  export declare type MercuryNormalizedWorkSearchFiltersInput = {
148811
+ applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148697
148812
  owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148698
148813
  source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148699
148814
  status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -148701,6 +148816,7 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
148701
148816
  type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148702
148817
  };
148703
148818
  export declare enum MercuryNormalizedWorkSortField {
148819
+ ApplicationName = "APPLICATION_NAME",
148704
148820
  FocusAreaId = "FOCUS_AREA_ID",
148705
148821
  Key = "KEY",
148706
148822
  Name = "NAME",
@@ -148765,6 +148881,7 @@ export declare type MercuryOrganization = Node & {
148765
148881
  aboutContent: MercuryOrganizationAbout;
148766
148882
  aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationStatusCount>;
148767
148883
  archived: Scalars['Boolean']['output'];
148884
+ capacitySummaries?: Maybe<MercuryOrganizationCapacitySummary>;
148768
148885
  createdDate: Scalars['String']['output'];
148769
148886
  customFields?: Maybe<Array<MercuryCustomField>>;
148770
148887
  draft: Scalars['Boolean']['output'];
@@ -148775,6 +148892,7 @@ export declare type MercuryOrganization = Node & {
148775
148892
  linkedGoalSummary?: Maybe<MercuryOrganizationLinkedGoalSummary>;
148776
148893
  linkedGoals?: Maybe<Array<Maybe<TownsquareGoal>>>;
148777
148894
  linkedWorkSummary?: Maybe<MercuryOrganizationLinkedWorkSummary>;
148895
+ memberships?: Maybe<MercuryOrganizationMembershipConnection>;
148778
148896
  name: Scalars['String']['output'];
148779
148897
  organizationLinks?: Maybe<MercuryOrganizationLinks>;
148780
148898
  organizationStatusUpdates?: Maybe<MercuryOrganizationStatusUpdateConnection>;
@@ -148796,6 +148914,15 @@ export declare type MercuryOrganization = Node & {
148796
148914
  watchers?: Maybe<MercuryOrganizationUserConnection>;
148797
148915
  watching: Scalars['Boolean']['output'];
148798
148916
  };
148917
+ export declare type MercuryOrganizationCapacitySummariesArgs = {
148918
+ endDate?: InputMaybe<Scalars['Date']['input']>;
148919
+ startDate?: InputMaybe<Scalars['Date']['input']>;
148920
+ };
148921
+ export declare type MercuryOrganizationMembershipsArgs = {
148922
+ after?: InputMaybe<Scalars['String']['input']>;
148923
+ first?: InputMaybe<Scalars['Int']['input']>;
148924
+ q?: InputMaybe<Scalars['String']['input']>;
148925
+ };
148799
148926
  export declare type MercuryOrganizationOrganizationStatusUpdatesArgs = {
148800
148927
  after?: InputMaybe<Scalars['String']['input']>;
148801
148928
  createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
@@ -148820,6 +148947,18 @@ export declare type MercuryOrganizationAbout = {
148820
148947
  __typename?: 'MercuryOrganizationAbout';
148821
148948
  editorAdfContent?: Maybe<Scalars['String']['output']>;
148822
148949
  };
148950
+ export declare type MercuryOrganizationCapacity = {
148951
+ __typename?: 'MercuryOrganizationCapacity';
148952
+ count: Scalars['BigDecimal']['output'];
148953
+ endDate: Scalars['Date']['output'];
148954
+ startDate: Scalars['Date']['output'];
148955
+ };
148956
+ export declare type MercuryOrganizationCapacitySummary = {
148957
+ __typename?: 'MercuryOrganizationCapacitySummary';
148958
+ directCapacitySummaries?: Maybe<Array<MercuryOrganizationCapacity>>;
148959
+ organizationId: Scalars['ID']['output'];
148960
+ totalCapacitySummaries?: Maybe<Array<MercuryOrganizationCapacity>>;
148961
+ };
148823
148962
  export declare type MercuryOrganizationConnection = {
148824
148963
  __typename?: 'MercuryOrganizationConnection';
148825
148964
  edges?: Maybe<Array<Maybe<MercuryOrganizationEdge>>>;
@@ -148916,6 +149055,29 @@ export declare type MercuryOrganizationListSummary = {
148916
149055
  input?: Maybe<Scalars['String']['output']>;
148917
149056
  summary?: Maybe<Scalars['String']['output']>;
148918
149057
  };
149058
+ export declare type MercuryOrganizationMembership = Node & {
149059
+ __typename?: 'MercuryOrganizationMembership';
149060
+ createdBy?: Maybe<User>;
149061
+ createdDate: Scalars['DateTime']['output'];
149062
+ endDate?: Maybe<Scalars['Date']['output']>;
149063
+ id: Scalars['ID']['output'];
149064
+ organization?: Maybe<MercuryOrganization>;
149065
+ startDate: Scalars['Date']['output'];
149066
+ updatedBy?: Maybe<User>;
149067
+ updatedDate: Scalars['DateTime']['output'];
149068
+ user?: Maybe<User>;
149069
+ };
149070
+ export declare type MercuryOrganizationMembershipConnection = {
149071
+ __typename?: 'MercuryOrganizationMembershipConnection';
149072
+ edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
149073
+ pageInfo: PageInfo;
149074
+ totalCount?: Maybe<Scalars['Int']['output']>;
149075
+ };
149076
+ export declare type MercuryOrganizationMembershipEdge = {
149077
+ __typename?: 'MercuryOrganizationMembershipEdge';
149078
+ cursor: Scalars['String']['output'];
149079
+ node?: Maybe<MercuryOrganizationMembership>;
149080
+ };
148919
149081
  export declare enum MercuryOrganizationPermission {
148920
149082
  Archive = "ARCHIVE",
148921
149083
  CreateGoalLink = "CREATE_GOAL_LINK",
@@ -149161,6 +149323,7 @@ export declare enum MercuryOrganizationViewType {
149161
149323
  export declare type MercuryOrganizationsMutationApi = {
149162
149324
  __typename?: 'MercuryOrganizationsMutationApi';
149163
149325
  addOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
149326
+ addOrganizationMemberships?: Maybe<MercuryAddOrganizationMembershipsPayload>;
149164
149327
  addWatcherToOrganization?: Maybe<MercuryAddWatcherToOrganizationPayload>;
149165
149328
  archiveOrganization?: Maybe<MercuryArchiveOrganizationPayload>;
149166
149329
  assignUserAccessToOrganization?: Maybe<MercuryAssignUserAccessToOrganizationPayload>;
@@ -149189,6 +149352,7 @@ export declare type MercuryOrganizationsMutationApi = {
149189
149352
  linkOrganizationsToOrganizationView?: Maybe<MercuryLinkOrganizationsToOrganizationViewPayload>;
149190
149353
  publishOrganization?: Maybe<MercuryPublishOrganizationPayload>;
149191
149354
  recreateOrganizationViewOrganizations?: Maybe<MercuryUpdateOrganizationViewPayload>;
149355
+ removeOrganizationMembership?: Maybe<MercuryRemoveOrganizationMembershipPayload>;
149192
149356
  removeUserAccessToOrganization?: Maybe<MercuryRemoveUserAccessToOrganizationPayload>;
149193
149357
  removeWatcherFromOrganization?: Maybe<MercuryRemoveWatcherFromOrganizationPayload>;
149194
149358
  reorderOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
@@ -149206,6 +149370,8 @@ export declare type MercuryOrganizationsMutationApi = {
149206
149370
  updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
149207
149371
  updateOrganizationCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
149208
149372
  updateOrganizationHierarchyName?: Maybe<MercuryUpdateOrganizationHierarchyPayload>;
149373
+ updateOrganizationMembershipEndDate?: Maybe<MercuryUpdateOrganizationMembershipPayload>;
149374
+ updateOrganizationMembershipStartDate?: Maybe<MercuryUpdateOrganizationMembershipPayload>;
149209
149375
  updateOrganizationName?: Maybe<MercuryUpdateOrganizationPayload>;
149210
149376
  updateOrganizationOwner?: Maybe<MercuryUpdateOrganizationPayload>;
149211
149377
  updateOrganizationStatusUpdate?: Maybe<MercuryUpdateOrganizationStatusUpdatePayload>;
@@ -149218,6 +149384,9 @@ export declare type MercuryOrganizationsMutationApi = {
149218
149384
  export declare type MercuryOrganizationsMutationApiAddOrganizationCustomFieldDefinitionOptionsArgs = {
149219
149385
  input: MercuryAddCustomFieldDefinitionOptionsInput;
149220
149386
  };
149387
+ export declare type MercuryOrganizationsMutationApiAddOrganizationMembershipsArgs = {
149388
+ input: MercuryAddOrganizationMembershipsInput;
149389
+ };
149221
149390
  export declare type MercuryOrganizationsMutationApiAddWatcherToOrganizationArgs = {
149222
149391
  input: MercuryAddWatcherToOrganizationInput;
149223
149392
  };
@@ -149302,6 +149471,9 @@ export declare type MercuryOrganizationsMutationApiPublishOrganizationArgs = {
149302
149471
  export declare type MercuryOrganizationsMutationApiRecreateOrganizationViewOrganizationsArgs = {
149303
149472
  input: MercuryRecreateOrganizationViewOrganizationsInput;
149304
149473
  };
149474
+ export declare type MercuryOrganizationsMutationApiRemoveOrganizationMembershipArgs = {
149475
+ input: MercuryRemoveOrganizationMembershipInput;
149476
+ };
149305
149477
  export declare type MercuryOrganizationsMutationApiRemoveUserAccessToOrganizationArgs = {
149306
149478
  input: MercuryRemoveUserAccessToOrganizationInput;
149307
149479
  };
@@ -149353,6 +149525,12 @@ export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomField
149353
149525
  export declare type MercuryOrganizationsMutationApiUpdateOrganizationHierarchyNameArgs = {
149354
149526
  input: MercuryUpdateOrganizationHierarchyNameInput;
149355
149527
  };
149528
+ export declare type MercuryOrganizationsMutationApiUpdateOrganizationMembershipEndDateArgs = {
149529
+ input: MercuryUpdateOrganizationMembershipEndDateInput;
149530
+ };
149531
+ export declare type MercuryOrganizationsMutationApiUpdateOrganizationMembershipStartDateArgs = {
149532
+ input: MercuryUpdateOrganizationMembershipStartDateInput;
149533
+ };
149356
149534
  export declare type MercuryOrganizationsMutationApiUpdateOrganizationNameArgs = {
149357
149535
  input: MercuryUpdateOrganizationNameInput;
149358
149536
  };
@@ -149386,6 +149564,7 @@ export declare type MercuryOrganizationsQueryApi = {
149386
149564
  organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
149387
149565
  organizationHierarchiesSearch?: Maybe<MercuryOrganizationHierarchyConnection>;
149388
149566
  organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
149567
+ organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
149389
149568
  organizationStatusTransitions?: Maybe<Array<MercuryOrganizationStatusTransition>>;
149390
149569
  organizationStatusUpdates?: Maybe<Array<MercuryOrganizationStatusUpdate>>;
149391
149570
  organizationTypes?: Maybe<Array<Maybe<MercuryOrganizationType>>>;
@@ -149434,6 +149613,9 @@ export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesSearchArg
149434
149613
  export declare type MercuryOrganizationsQueryApiOrganizationHierarchyArgs = {
149435
149614
  id: Scalars['ID']['input'];
149436
149615
  };
149616
+ export declare type MercuryOrganizationsQueryApiOrganizationMembershipsArgs = {
149617
+ ids: Array<Scalars['ID']['input']>;
149618
+ };
149437
149619
  export declare type MercuryOrganizationsQueryApiOrganizationStatusTransitionsArgs = {
149438
149620
  cloudId: Scalars['ID']['input'];
149439
149621
  };
@@ -150185,6 +150367,15 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
150185
150367
  id: Scalars['ID']['input'];
150186
150368
  rankVersion?: InputMaybe<Scalars['String']['input']>;
150187
150369
  };
150370
+ export declare type MercuryRemoveOrganizationMembershipInput = {
150371
+ id: Scalars['ID']['input'];
150372
+ };
150373
+ export declare type MercuryRemoveOrganizationMembershipPayload = Payload & {
150374
+ __typename?: 'MercuryRemoveOrganizationMembershipPayload';
150375
+ errors?: Maybe<Array<MutationError>>;
150376
+ id: Scalars['ID']['output'];
150377
+ success: Scalars['Boolean']['output'];
150378
+ };
150188
150379
  export declare type MercuryRemoveTagsFromEntityInput = {
150189
150380
  entityId: Scalars['ID']['input'];
150190
150381
  tagIds: Array<Scalars['ID']['input']>;
@@ -150214,7 +150405,7 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
150214
150405
  success: Scalars['Boolean']['output'];
150215
150406
  };
150216
150407
  export declare type MercuryRemoveUserAccessToOrganizationInput = {
150217
- organizationAri: Scalars['ID']['input'];
150408
+ organizationId: Scalars['ID']['input'];
150218
150409
  principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
150219
150410
  };
150220
150411
  export declare type MercuryRemoveUserAccessToOrganizationPayload = Payload & {
@@ -151920,6 +152111,20 @@ export declare type MercuryUpdateOrganizationHierarchyPayload = Payload & {
151920
152111
  success: Scalars['Boolean']['output'];
151921
152112
  updatedOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
151922
152113
  };
152114
+ export declare type MercuryUpdateOrganizationMembershipEndDateInput = {
152115
+ endDate?: InputMaybe<Scalars['Date']['input']>;
152116
+ id: Scalars['ID']['input'];
152117
+ };
152118
+ export declare type MercuryUpdateOrganizationMembershipPayload = Payload & {
152119
+ __typename?: 'MercuryUpdateOrganizationMembershipPayload';
152120
+ errors?: Maybe<Array<MutationError>>;
152121
+ organizationMembership?: Maybe<MercuryOrganizationMembership>;
152122
+ success: Scalars['Boolean']['output'];
152123
+ };
152124
+ export declare type MercuryUpdateOrganizationMembershipStartDateInput = {
152125
+ id: Scalars['ID']['input'];
152126
+ startDate: Scalars['Date']['input'];
152127
+ };
151923
152128
  export declare type MercuryUpdateOrganizationNameInput = {
151924
152129
  cloudId?: InputMaybe<Scalars['ID']['input']>;
151925
152130
  id: Scalars['ID']['input'];
@@ -152237,6 +152442,7 @@ export declare type MercuryWorkspaceContext = {
152237
152442
  };
152238
152443
  export declare type MercuryWorkspaceSettings = {
152239
152444
  __typename?: 'MercuryWorkspaceSettings';
152445
+ focusAreaRankingEnabled: Scalars['Boolean']['output'];
152240
152446
  laborCostEnabled: Scalars['Boolean']['output'];
152241
152447
  managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
152242
152448
  };
@@ -152532,22 +152738,11 @@ export declare type Mutation = {
152532
152738
  agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
152533
152739
  agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
152534
152740
  agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
152535
- agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
152536
152741
  agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
152537
- agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
152538
- agentWorkspace_createCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigCreateResponse>;
152539
- agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
152540
- agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
152541
152742
  agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
152542
152743
  agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
152543
- agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
152544
- agentWorkspace_deleteCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigDeleteResponse>;
152545
- agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
152546
- agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
152547
152744
  agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
152548
152745
  agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
152549
- agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
152550
- agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
152551
152746
  agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
152552
152747
  agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
152553
152748
  agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
@@ -152557,16 +152752,8 @@ export declare type Mutation = {
152557
152752
  agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
152558
152753
  agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
152559
152754
  agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
152560
- agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
152561
- agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
152562
- agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
152563
- agentWorkspace_updateCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigUpdateResponse>;
152564
- agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
152565
- agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
152566
152755
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
152567
152756
  agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
152568
- agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
152569
- agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
152570
152757
  agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
152571
152758
  aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
152572
152759
  aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
@@ -152597,6 +152784,7 @@ export declare type Mutation = {
152597
152784
  assetsDM_createDataDictionaryGroupValue?: Maybe<AssetsDmCreateDataDictionaryGroupValueResponse>;
152598
152785
  assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
152599
152786
  assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
152787
+ assetsDM_createDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
152600
152788
  assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
152601
152789
  assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
152602
152790
  assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
@@ -152615,6 +152803,7 @@ export declare type Mutation = {
152615
152803
  assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
152616
152804
  assetsDM_deleteDataSourceConfig?: Maybe<AssetsDmDeleteDataSourceConfigPayload>;
152617
152805
  assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
152806
+ assetsDM_deleteDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
152618
152807
  assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
152619
152808
  assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
152620
152809
  assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
@@ -152623,6 +152812,7 @@ export declare type Mutation = {
152623
152812
  assetsDM_editDataDictionary?: Maybe<AssetsDmEditDataDictionaryResponse>;
152624
152813
  assetsDM_editDataDictionaryGroup?: Maybe<AssetsDmEditDataDictionaryGroupResponse>;
152625
152814
  assetsDM_editDataDictionaryGroupValue?: Maybe<AssetsDmEditDataDictionaryGroupValueResponse>;
152815
+ assetsDM_editDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
152626
152816
  assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
152627
152817
  assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
152628
152818
  assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
@@ -152684,8 +152874,10 @@ export declare type Mutation = {
152684
152874
  avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
152685
152875
  avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
152686
152876
  avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
152877
+ avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
152687
152878
  avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
152688
152879
  avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
152880
+ avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
152689
152881
  avp_updateChart?: Maybe<AvpUpdateChartPayload>;
152690
152882
  avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
152691
152883
  avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
@@ -152700,6 +152892,7 @@ export declare type Mutation = {
152700
152892
  avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
152701
152893
  avpanalytics_deleteMetric?: Maybe<AvpAnalyticsDeleteMetricPayload>;
152702
152894
  avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
152895
+ avpanalytics_discardMetricUpdates?: Maybe<AvpAnalyticsDiscardMetricUpdatesPayload>;
152703
152896
  avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
152704
152897
  avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
152705
152898
  avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
@@ -152720,6 +152913,7 @@ export declare type Mutation = {
152720
152913
  bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
152721
152914
  bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
152722
152915
  ccp?: Maybe<CcpMutationApi>;
152916
+ ccp_updateAllowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationUpdateResult>>>;
152723
152917
  champion?: Maybe<UnifiedChampionMutation>;
152724
152918
  changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
152725
152919
  changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
@@ -152858,6 +153052,7 @@ export declare type Mutation = {
152858
153052
  confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
152859
153053
  confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
152860
153054
  confluence_updateContentApproval?: Maybe<ConfluenceContentApprovalPayload>;
153055
+ confluence_updateContentApprovalsSpaceSettingConfig?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
152861
153056
  confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
152862
153057
  confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
152863
153058
  confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
@@ -152914,6 +153109,10 @@ export declare type Mutation = {
152914
153109
  cpls_deleteContributorWorkAssociationSuggestionForUser?: Maybe<CplsDeleteContributorWorkAssociationSuggestionPayload>;
152915
153110
  cpls_deleteWorkScopeAssociations?: Maybe<CplsDeleteWorkScopeAssociationsPayload>;
152916
153111
  cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
153112
+ cpls_reorderContributor?: Maybe<CplsReorderContributorPayload>;
153113
+ cpls_reorderContributorWork?: Maybe<CplsReorderContributorWorkPayload>;
153114
+ cpls_reorderWork?: Maybe<CplsReorderWorkPayload>;
153115
+ cpls_reorderWorkContributor?: Maybe<CplsReorderWorkContributorPayload>;
152917
153116
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
152918
153117
  cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
152919
153118
  cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
@@ -153129,6 +153328,7 @@ export declare type Mutation = {
153129
153328
  goals_removeNumericCustomFieldValue?: Maybe<TownsquareGoalsRemoveNumericCustomFieldValuePayload>;
153130
153329
  goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
153131
153330
  goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
153331
+ goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
153132
153332
  goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
153133
153333
  goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
153134
153334
  goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
@@ -153154,13 +153354,15 @@ export declare type Mutation = {
153154
153354
  graphStore?: Maybe<GraphStoreMutation>;
153155
153355
  graphStoreV2?: Maybe<GraphStoreV2Mutation>;
153156
153356
  gravity_addReaction?: Maybe<GravityAddReactionPayload>;
153357
+ gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
153157
153358
  gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
153158
153359
  gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
153159
153360
  gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
153160
- gravity_generateViewFromUserPrompt?: Maybe<GravityGenerateViewFromUserPromptPayload>;
153361
+ gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
153161
153362
  gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
153162
153363
  growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
153163
153364
  growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
153365
+ growthUnifiedProfile_createSnIdProfile?: Maybe<GrowthUnifiedProfileCreateSnIdProfileResponse>;
153164
153366
  growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
153165
153367
  hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
153166
153368
  helpCenter?: Maybe<HelpCenterMutationApi>;
@@ -154061,54 +154263,21 @@ export declare type MutationAgentWorkspace_ArchiveSkillArgs = {
154061
154263
  export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
154062
154264
  input: AgentWorkspaceAssignAgentToGapInput;
154063
154265
  };
154064
- export declare type MutationAgentWorkspace_AssignSkillArgs = {
154065
- input: AgentWorkspaceAssignSkillInput;
154066
- };
154067
154266
  export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
154068
154267
  input: AgentWorkspaceCreateAndLinkTeamsInput;
154069
154268
  };
154070
- export declare type MutationAgentWorkspace_CreateCatalogArgs = {
154071
- input: AgentWorkspaceCreateCatalogInput;
154072
- };
154073
- export declare type MutationAgentWorkspace_CreateCatalogConfigArgs = {
154074
- input: AgentWorkspaceCreateCatalogConfigInput;
154075
- };
154076
- export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
154077
- input: AgentWorkspaceCreateCatalogTypeInput;
154078
- };
154079
- export declare type MutationAgentWorkspace_CreateHierarchyDefinitionArgs = {
154080
- input: AgentWorkspaceCreateHierarchyDefinitionInput;
154081
- };
154082
154269
  export declare type MutationAgentWorkspace_CreateScheduleArgs = {
154083
154270
  input: AgentWorkspaceCreateScheduleInput;
154084
154271
  };
154085
154272
  export declare type MutationAgentWorkspace_CreateSkillArgs = {
154086
154273
  input: AgentWorkspaceSkillCreateInput;
154087
154274
  };
154088
- export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
154089
- input: AgentWorkspaceCatalogDeleteInput;
154090
- };
154091
- export declare type MutationAgentWorkspace_DeleteCatalogConfigArgs = {
154092
- input: AgentWorkspaceCatalogConfigDeleteInput;
154093
- };
154094
- export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
154095
- input: AgentWorkspaceCatalogTypeDeleteInput;
154096
- };
154097
- export declare type MutationAgentWorkspace_DeleteHierarchyDefinitionArgs = {
154098
- input: AgentWorkspaceDeleteHierarchyDefinitionInput;
154099
- };
154100
154275
  export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
154101
154276
  input: AgentWorkspaceDeleteScheduleInput;
154102
154277
  };
154103
154278
  export declare type MutationAgentWorkspace_DeleteShiftArgs = {
154104
154279
  input: AgentWorkspaceDeleteShiftInput;
154105
154280
  };
154106
- export declare type MutationAgentWorkspace_DeleteSkillArgs = {
154107
- input: AgentWorkspaceSkillDeleteInput;
154108
- };
154109
- export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
154110
- input: AgentWorkspaceDeleteUserSkillInput;
154111
- };
154112
154281
  export declare type MutationAgentWorkspace_EditShiftArgs = {
154113
154282
  input: AgentWorkspaceEditShiftInput;
154114
154283
  };
@@ -154138,36 +154307,12 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
154138
154307
  export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
154139
154308
  input: AgentWorkspaceStartBulkImportInput;
154140
154309
  };
154141
- export declare type MutationAgentWorkspace_SubscribeSkillArgs = {
154142
- input: AgentWorkspaceSubscribeSkillInput;
154143
- };
154144
- export declare type MutationAgentWorkspace_UnsubscribeSkillArgs = {
154145
- input: AgentWorkspaceUnsubscribeSkillInput;
154146
- };
154147
- export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
154148
- input: AgentWorkspaceUpdateCatalogInput;
154149
- };
154150
- export declare type MutationAgentWorkspace_UpdateCatalogConfigArgs = {
154151
- input: AgentWorkspaceUpdateCatalogConfigInput;
154152
- };
154153
- export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
154154
- input: AgentWorkspaceUpdateCatalogTypeInput;
154155
- };
154156
- export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
154157
- input: AgentWorkspaceUpdateHierarchyDefinitionInput;
154158
- };
154159
154310
  export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
154160
154311
  input: AgentWorkspaceUpdateRoutingConfigInput;
154161
154312
  };
154162
154313
  export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
154163
154314
  input: AgentWorkspaceUpdateScheduleInput;
154164
154315
  };
154165
- export declare type MutationAgentWorkspace_UpdateSkillArgs = {
154166
- input: AgentWorkspaceSkillUpdateInput;
154167
- };
154168
- export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
154169
- input: AgentWorkspaceUpdateSkillProficiencyInput;
154170
- };
154171
154316
  export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
154172
154317
  input: AgentWorkspaceUpdateSmartRoutingConfigInput;
154173
154318
  };
@@ -154281,6 +154426,11 @@ export declare type MutationAssetsDm_CreateDataSourceTypeArgs = {
154281
154426
  input: AssetsDmCreateDataSourceTypeInput;
154282
154427
  workspaceId: Scalars['String']['input'];
154283
154428
  };
154429
+ export declare type MutationAssetsDm_CreateDateFormatArgs = {
154430
+ cloudId: Scalars['ID']['input'];
154431
+ input: AssetsDmCreateDateFormatInput;
154432
+ workspaceId: Scalars['ID']['input'];
154433
+ };
154284
154434
  export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
154285
154435
  cloudId: Scalars['ID']['input'];
154286
154436
  input: AssetsDmCreateDefaultCleansingRuleInput;
@@ -154383,6 +154533,11 @@ export declare type MutationAssetsDm_DeleteDataSourceTypeArgs = {
154383
154533
  dataSourceTypeId: Scalars['ID']['input'];
154384
154534
  workspaceId: Scalars['String']['input'];
154385
154535
  };
154536
+ export declare type MutationAssetsDm_DeleteDateFormatArgs = {
154537
+ cloudId: Scalars['ID']['input'];
154538
+ dateFormatId: Scalars['ID']['input'];
154539
+ workspaceId: Scalars['ID']['input'];
154540
+ };
154386
154541
  export declare type MutationAssetsDm_DeleteDefaultAttributeMappingArgs = {
154387
154542
  cloudId: Scalars['ID']['input'];
154388
154543
  defaultObjectAttributeMappingId: Scalars['ID']['input'];
@@ -154423,6 +154578,11 @@ export declare type MutationAssetsDm_EditDataDictionaryGroupValueArgs = {
154423
154578
  input: AssetsDmEditDataDictionaryGroupValueInput;
154424
154579
  workspaceId: Scalars['ID']['input'];
154425
154580
  };
154581
+ export declare type MutationAssetsDm_EditDateFormatArgs = {
154582
+ cloudId: Scalars['ID']['input'];
154583
+ input: AssetsDmEditDateFormatInput;
154584
+ workspaceId: Scalars['ID']['input'];
154585
+ };
154426
154586
  export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
154427
154587
  cloudId: Scalars['ID']['input'];
154428
154588
  payload: AssetsDmEditDefaultAttributeMappingInput;
@@ -154645,12 +154805,18 @@ export declare type MutationAvp_RemoveDashboardElementArgs = {
154645
154805
  export declare type MutationAvp_RemoveDashboardRowArgs = {
154646
154806
  input: AvpRemoveDashboardRowInput;
154647
154807
  };
154808
+ export declare type MutationAvp_StarDashboardArgs = {
154809
+ input: AvpStarDashboardInput;
154810
+ };
154648
154811
  export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
154649
154812
  input: AvpToggleCanvasElementExpandedInput;
154650
154813
  };
154651
154814
  export declare type MutationAvp_TrackDashboardViewArgs = {
154652
154815
  input: AvpTrackDashboardViewInput;
154653
154816
  };
154817
+ export declare type MutationAvp_UnstarDashboardArgs = {
154818
+ input: AvpUnstarDashboardInput;
154819
+ };
154654
154820
  export declare type MutationAvp_UpdateChartArgs = {
154655
154821
  input: AvpUpdateChartInput;
154656
154822
  };
@@ -154697,6 +154863,10 @@ export declare type MutationAvpanalytics_DeleteModelArgs = {
154697
154863
  cloudId: Scalars['ID']['input'];
154698
154864
  input?: InputMaybe<AvpAnalyticsDeleteModelInput>;
154699
154865
  };
154866
+ export declare type MutationAvpanalytics_DiscardMetricUpdatesArgs = {
154867
+ cloudId: Scalars['ID']['input'];
154868
+ input: AvpAnalyticsDiscardMetricUpdatesInput;
154869
+ };
154700
154870
  export declare type MutationAvpanalytics_DiscardModelUpdatesArgs = {
154701
154871
  cloudId: Scalars['ID']['input'];
154702
154872
  input?: InputMaybe<AvpAnalyticsDiscardModelUpdatesInput>;
@@ -154760,6 +154930,10 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
154760
154930
  input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
154761
154931
  spaceKey: Scalars['String']['input'];
154762
154932
  };
154933
+ export declare type MutationCcp_UpdateAllowancePoolAllocationsArgs = {
154934
+ allocations: Array<CcpAllowancePoolAllocationUpdateInput>;
154935
+ poolId: Scalars['ID']['input'];
154936
+ };
154763
154937
  export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
154764
154938
  cloudId: Scalars['ID']['input'];
154765
154939
  issueId: Scalars['String']['input'];
@@ -155272,6 +155446,11 @@ export declare type MutationConfluence_UpdateContentApprovalArgs = {
155272
155446
  cloudId: Scalars['ID']['input'];
155273
155447
  updateContentApprovalGraphQLInput: ConfluenceUpdateContentApprovalRequestInput;
155274
155448
  };
155449
+ export declare type MutationConfluence_UpdateContentApprovalsSpaceSettingConfigArgs = {
155450
+ cloudId: Scalars['ID']['input'];
155451
+ config: ConfluenceContentApprovalsSpaceSettingConfigInput;
155452
+ spaceKey: Scalars['String']['input'];
155453
+ };
155275
155454
  export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
155276
155455
  cloudId: Scalars['ID']['input'];
155277
155456
  input: ConfluenceUpdateContentDirectRestrictionsInput;
@@ -155478,6 +155657,18 @@ export declare type MutationCpls_DeleteWorkScopeAssociationsArgs = {
155478
155657
  export declare type MutationCpls_ImportCapacityDataArgs = {
155479
155658
  input: CplsImportCapacityDataInput;
155480
155659
  };
155660
+ export declare type MutationCpls_ReorderContributorArgs = {
155661
+ input: CplsReorderContributorInput;
155662
+ };
155663
+ export declare type MutationCpls_ReorderContributorWorkArgs = {
155664
+ input: CplsReorderContributorWorkInput;
155665
+ };
155666
+ export declare type MutationCpls_ReorderWorkArgs = {
155667
+ input: CplsReorderWorkInput;
155668
+ };
155669
+ export declare type MutationCpls_ReorderWorkContributorArgs = {
155670
+ input: CplsReorderWorkContributorInput;
155671
+ };
155481
155672
  export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
155482
155673
  input: CplsUpdateCustomContributionTargetInput;
155483
155674
  };
@@ -156194,6 +156385,9 @@ export declare type MutationGoals_RemoveTextCustomFieldValueArgs = {
156194
156385
  export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
156195
156386
  input: TownsquareGoalsRemoveUserCustomFieldValueInput;
156196
156387
  };
156388
+ export declare type MutationGoals_RemoveWatchersArgs = {
156389
+ input: TownsquareGoalsRemoveWatchersInput;
156390
+ };
156197
156391
  export declare type MutationGoals_RevokeAccessArgs = {
156198
156392
  input: TownsquareGoalRevokeAccessInput;
156199
156393
  };
@@ -156264,6 +156458,10 @@ export declare type MutationGravity_AddReactionArgs = {
156264
156458
  cloudId: Scalars['ID']['input'];
156265
156459
  input: GravityAddReactionInput;
156266
156460
  };
156461
+ export declare type MutationGravity_CreateViewFromInlinedTemplateArgs = {
156462
+ cloudId: Scalars['ID']['input'];
156463
+ input: GravityCreateViewFromInlinedTemplateInput;
156464
+ };
156267
156465
  export declare type MutationGravity_CreateViewFromTemplateArgs = {
156268
156466
  cloudId: Scalars['ID']['input'];
156269
156467
  input: GravityCreateViewFromTemplateInput;
@@ -156276,9 +156474,9 @@ export declare type MutationGravity_DeleteReactionArgs = {
156276
156474
  cloudId: Scalars['ID']['input'];
156277
156475
  input: GravityDeleteReactionInput;
156278
156476
  };
156279
- export declare type MutationGravity_GenerateViewFromUserPromptArgs = {
156477
+ export declare type MutationGravity_GenerateViewTemplateFromUserPromptArgs = {
156280
156478
  cloudId: Scalars['ID']['input'];
156281
- input: GravityGenerateViewFromUserPromptInput;
156479
+ input: GravityGenerateViewTemplateFromUserPromptInput;
156282
156480
  };
156283
156481
  export declare type MutationGravity_UpdateDeliverySettingsArgs = {
156284
156482
  cloudId: Scalars['ID']['input'];
@@ -156290,6 +156488,9 @@ export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs =
156290
156488
  export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
156291
156489
  profile: GrowthUnifiedProfileCreateOrgProfileInput;
156292
156490
  };
156491
+ export declare type MutationGrowthUnifiedProfile_CreateSnIdProfileArgs = {
156492
+ input: GrowthUnifiedProfileCreateSnIdProfileInput;
156493
+ };
156293
156494
  export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
156294
156495
  profile: GrowthUnifiedProfileCreateProfileInput;
156295
156496
  };
@@ -161326,41 +161527,27 @@ export declare type Query = {
161326
161527
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
161327
161528
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
161328
161529
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
161530
+ agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
161329
161531
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
161330
161532
  agentWorkspace_bucketServiceCategories?: Maybe<AgentWorkspaceServiceBucketingResult>;
161331
161533
  agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
161332
161534
  agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
161333
161535
  agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
161334
- agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
161335
- agentWorkspace_catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
161336
- agentWorkspace_catalogConfigs?: Maybe<AgentWorkspaceCatalogConfigConnection>;
161337
- agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
161338
- agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
161339
- agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
161340
161536
  agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
161341
161537
  agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
161342
161538
  agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
161343
- agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
161344
- agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
161345
- agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
161346
161539
  agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
161347
- agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
161348
- agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
161349
161540
  agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
161350
161541
  agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
161351
161542
  agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
161352
161543
  agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
161353
161544
  agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
161354
161545
  agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
161355
- agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
161356
- agentWorkspace_skillGaps?: Maybe<AgentWorkspaceSkillConnection>;
161546
+ agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
161357
161547
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
161358
161548
  agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
161359
161549
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
161360
161550
  agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
161361
- agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
161362
- agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
161363
- agentWorkspace_usersBySkills?: Maybe<AgentWorkspaceUserConnection>;
161364
161551
  agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
161365
161552
  agent_sessionQuery?: Maybe<AgentSessionConnection>;
161366
161553
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
@@ -161426,6 +161613,7 @@ export declare type Query = {
161426
161613
  assetsDM_dataSourceTypes?: Maybe<AssetsDmDataSourceTypeConnection>;
161427
161614
  assetsDM_dataSourcesList?: Maybe<AssetsDmDataSourcesList>;
161428
161615
  assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
161616
+ assetsDM_dateFormatsByTenant?: Maybe<Array<AssetsDmDateFormats>>;
161429
161617
  assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
161430
161618
  assetsDM_defaultCleansingRule?: Maybe<AssetsDmDefaultCleansingRule>;
161431
161619
  assetsDM_defaultCleansingRules?: Maybe<AssetsDmDefaultCleansingRuleConnection>;
@@ -161472,8 +161660,10 @@ export declare type Query = {
161472
161660
  assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
161473
161661
  assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
161474
161662
  assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
161663
+ assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
161475
161664
  assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
161476
161665
  assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
161666
+ assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
161477
161667
  assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
161478
161668
  assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
161479
161669
  assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
@@ -161509,11 +161699,13 @@ export declare type Query = {
161509
161699
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
161510
161700
  avp_getDashboard?: Maybe<AvpDashboard>;
161511
161701
  avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
161702
+ avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
161512
161703
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
161513
161704
  avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
161514
161705
  avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
161515
161706
  avp_getFilterExpression?: Maybe<AvpFilterExpression>;
161516
161707
  avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
161708
+ avp_getRecentDashboards?: Maybe<Array<AvpDashboard>>;
161517
161709
  avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
161518
161710
  avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
161519
161711
  avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
@@ -161646,6 +161838,7 @@ export declare type Query = {
161646
161838
  confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
161647
161839
  confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
161648
161840
  confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
161841
+ confluence_contentApprovalsSpaceSettingConfig?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
161649
161842
  confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
161650
161843
  confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
161651
161844
  confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
@@ -161764,6 +161957,7 @@ export declare type Query = {
161764
161957
  confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
161765
161958
  confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
161766
161959
  confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
161960
+ confluence_validateConvertPageToMarkdownMode?: Maybe<ConfluenceValidateConvertPageToMarkdownModeResult>;
161767
161961
  confluence_watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
161768
161962
  confluence_whiteboardTemplates?: Maybe<PaginatedConfluenceWhiteboardTemplateInfoList>;
161769
161963
  connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
@@ -162011,6 +162205,7 @@ export declare type Query = {
162011
162205
  growthUnifiedProfile_getAccountProfile?: Maybe<GrowthUnifiedProfileAccountProfileResult>;
162012
162206
  growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
162013
162207
  growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
162208
+ growthUnifiedProfile_getSnIdProfile?: Maybe<GrowthUnifiedProfileSnIdProfileResponse>;
162014
162209
  growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
162015
162210
  growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
162016
162211
  growthUnifiedProfile_siteProfile?: Maybe<GrowthUnifiedProfileSiteProfileResult>;
@@ -163171,6 +163366,12 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
163171
163366
  input: AgentWorkspaceAvailabilityInput;
163172
163367
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
163173
163368
  };
163369
+ export declare type QueryAgentWorkspace_AvailabilityBypassingTeamLinkCheckArgs = {
163370
+ after?: InputMaybe<Scalars['String']['input']>;
163371
+ first?: InputMaybe<Scalars['Int']['input']>;
163372
+ input: AgentWorkspaceAvailabilityInputPayload;
163373
+ isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
163374
+ };
163174
163375
  export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
163175
163376
  cloudId: Scalars['ID']['input'];
163176
163377
  projectKey: Scalars['String']['input'];
@@ -163195,24 +163396,6 @@ export declare type QueryAgentWorkspace_CapacityArgs = {
163195
163396
  export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
163196
163397
  input: AgentWorkspaceCapacityInput;
163197
163398
  };
163198
- export declare type QueryAgentWorkspace_CatalogArgs = {
163199
- input: AgentWorkspaceCatalogInput;
163200
- };
163201
- export declare type QueryAgentWorkspace_CatalogConfigArgs = {
163202
- input: AgentWorkspaceCatalogConfigInput;
163203
- };
163204
- export declare type QueryAgentWorkspace_CatalogConfigsArgs = {
163205
- input: AgentWorkspaceCatalogConfigsInput;
163206
- };
163207
- export declare type QueryAgentWorkspace_CatalogTypeArgs = {
163208
- input: AgentWorkspaceCatalogTypeInput;
163209
- };
163210
- export declare type QueryAgentWorkspace_CatalogTypesArgs = {
163211
- input: AgentWorkspaceCatalogTypesInput;
163212
- };
163213
- export declare type QueryAgentWorkspace_CatalogsArgs = {
163214
- input: AgentWorkspaceCatalogsInput;
163215
- };
163216
163399
  export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
163217
163400
  cloudId: Scalars['ID']['input'];
163218
163401
  days?: InputMaybe<Scalars['Int']['input']>;
@@ -163227,25 +163410,10 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
163227
163410
  export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
163228
163411
  projectAri: Scalars['ID']['input'];
163229
163412
  };
163230
- export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
163231
- input: AgentWorkspaceFindBestMatchAgentsInput;
163232
- };
163233
- export declare type QueryAgentWorkspace_HierarchyDefinitionArgs = {
163234
- input: AgentWorkspaceHierarchyDefinitionInput;
163235
- };
163236
- export declare type QueryAgentWorkspace_HierarchyDefinitionsArgs = {
163237
- input: AgentWorkspaceHierarchyDefinitionsInput;
163238
- };
163239
163413
  export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
163240
163414
  cloudId: Scalars['ID']['input'];
163241
163415
  projectId: Scalars['ID']['input'];
163242
163416
  };
163243
- export declare type QueryAgentWorkspace_ProjectSkillArgs = {
163244
- input: AgentWorkspaceProjectSkillInput;
163245
- };
163246
- export declare type QueryAgentWorkspace_ProjectSkillsArgs = {
163247
- input: AgentWorkspaceProjectSkillsInput;
163248
- };
163249
163417
  export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
163250
163418
  cloudId?: InputMaybe<Scalars['ID']['input']>;
163251
163419
  issueId?: InputMaybe<Scalars['ID']['input']>;
@@ -163278,14 +163446,15 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
163278
163446
  input: AgentWorkspaceShiftsQueryInput;
163279
163447
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
163280
163448
  };
163281
- export declare type QueryAgentWorkspace_SkillArgs = {
163282
- input: AgentWorkspaceSkillInput;
163283
- };
163284
- export declare type QueryAgentWorkspace_SkillGapsArgs = {
163285
- input: AgentWorkspaceSkillGapsInput;
163449
+ export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
163450
+ after?: InputMaybe<Scalars['String']['input']>;
163451
+ cloudId: Scalars['ID']['input'];
163452
+ first?: InputMaybe<Scalars['Int']['input']>;
163286
163453
  };
163287
163454
  export declare type QueryAgentWorkspace_SkillsArgs = {
163288
- input: AgentWorkspaceSkillsInput;
163455
+ after?: InputMaybe<Scalars['String']['input']>;
163456
+ cloudId: Scalars['ID']['input'];
163457
+ first?: InputMaybe<Scalars['Int']['input']>;
163289
163458
  };
163290
163459
  export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
163291
163460
  projectAri: Scalars['ID']['input'];
@@ -163299,15 +163468,6 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
163299
163468
  input: AgentWorkspaceTeamSchedulesQueryInput;
163300
163469
  isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
163301
163470
  };
163302
- export declare type QueryAgentWorkspace_UserSkillArgs = {
163303
- input: AgentWorkspaceUserSkillInput;
163304
- };
163305
- export declare type QueryAgentWorkspace_UserSkillsArgs = {
163306
- input: AgentWorkspaceUserSkillsInput;
163307
- };
163308
- export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
163309
- input: AgentWorkspaceUsersBySkillsInput;
163310
- };
163311
163471
  export declare type QueryAgent_SessionAssociationQueryArgs = {
163312
163472
  after?: InputMaybe<Scalars['String']['input']>;
163313
163473
  aqlQuery?: InputMaybe<Scalars['String']['input']>;
@@ -163640,6 +163800,10 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
163640
163800
  dataSourceId: Scalars['ID']['input'];
163641
163801
  workspaceId: Scalars['ID']['input'];
163642
163802
  };
163803
+ export declare type QueryAssetsDm_DateFormatsByTenantArgs = {
163804
+ cloudId: Scalars['ID']['input'];
163805
+ workspaceId: Scalars['ID']['input'];
163806
+ };
163643
163807
  export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
163644
163808
  cloudId: Scalars['ID']['input'];
163645
163809
  filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
@@ -163915,6 +164079,10 @@ export declare type QueryAssetsVertical_ItemMappingsArgs = {
163915
164079
  spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
163916
164080
  verticalInstantiationCategoryId: Scalars['ID']['input'];
163917
164081
  };
164082
+ export declare type QueryAssetsVertical_ModelItamAttributesArgs = {
164083
+ cloudId: Scalars['ID']['input'];
164084
+ workspaceId: Scalars['ID']['input'];
164085
+ };
163918
164086
  export declare type QueryAssetsVertical_ModelObjectsArgs = {
163919
164087
  cloudId: Scalars['ID']['input'];
163920
164088
  input: AssetsVerticalModelObjectsInput;
@@ -163923,6 +164091,10 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
163923
164091
  cloudId: Scalars['ID']['input'];
163924
164092
  input?: InputMaybe<AssetsVerticalObjectsInput>;
163925
164093
  };
164094
+ export declare type QueryAssetsVertical_StockroomObjectsArgs = {
164095
+ cloudId: Scalars['ID']['input'];
164096
+ input: AssetsVerticalStockroomObjectsInput;
164097
+ };
163926
164098
  export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
163927
164099
  cloudId: Scalars['ID']['input'];
163928
164100
  id: Scalars['ID']['input'];
@@ -164070,6 +164242,10 @@ export declare type QueryAvp_GetDashboardIdBySlugArgs = {
164070
164242
  workspaceAri?: InputMaybe<Scalars['ID']['input']>;
164071
164243
  workspaceId?: InputMaybe<Scalars['ID']['input']>;
164072
164244
  };
164245
+ export declare type QueryAvp_GetDashboardTemplateJsonArgs = {
164246
+ dashboardAri: Scalars['ID']['input'];
164247
+ templateType: Scalars['String']['input'];
164248
+ };
164073
164249
  export declare type QueryAvp_GetDashboardTemplatesArgs = {
164074
164250
  input: AvpGetDashboardTemplatesInput;
164075
164251
  };
@@ -164082,6 +164258,7 @@ export declare type QueryAvp_GetDashboardsByStatusArgs = {
164082
164258
  cloudId: Scalars['ID']['input'];
164083
164259
  creatorAri?: InputMaybe<Scalars['String']['input']>;
164084
164260
  first: Scalars['Int']['input'];
164261
+ starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
164085
164262
  status: AvpDashboardStatus;
164086
164263
  workspaceAri: Scalars['ID']['input'];
164087
164264
  };
@@ -164091,6 +164268,11 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
164091
164268
  export declare type QueryAvp_GetReadOnlyDashboardArgs = {
164092
164269
  input: AvpGetReadOnlyDashboardInput;
164093
164270
  };
164271
+ export declare type QueryAvp_GetRecentDashboardsArgs = {
164272
+ cloudId: Scalars['ID']['input'];
164273
+ limit?: InputMaybe<Scalars['Int']['input']>;
164274
+ workspaceAri: Scalars['ID']['input'];
164275
+ };
164094
164276
  export declare type QueryAvp_GetStarredDashboardsArgs = {
164095
164277
  cloudId: Scalars['ID']['input'];
164096
164278
  principalAri: Scalars['ID']['input'];
@@ -164600,6 +164782,11 @@ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
164600
164782
  contentId?: InputMaybe<Scalars['ID']['input']>;
164601
164783
  transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
164602
164784
  };
164785
+ export declare type QueryConfluence_ContentApprovalsSpaceSettingConfigArgs = {
164786
+ cloudId: Scalars['ID']['input'];
164787
+ filterSelf?: InputMaybe<Scalars['Boolean']['input']>;
164788
+ spaceKey: Scalars['String']['input'];
164789
+ };
164603
164790
  export declare type QueryConfluence_ContentPerformanceListArgs = {
164604
164791
  after?: InputMaybe<Scalars['String']['input']>;
164605
164792
  cloudId: Scalars['ID']['input'];
@@ -165174,6 +165361,10 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
165174
165361
  cloudId: Scalars['ID']['input'];
165175
165362
  jql: Scalars['String']['input'];
165176
165363
  };
165364
+ export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
165365
+ cloudId: Scalars['ID']['input'];
165366
+ contentId: Scalars['ID']['input'];
165367
+ };
165177
165368
  export declare type QueryConfluence_WatermarkConfigArgs = {
165178
165369
  resourceAri: Scalars['ID']['input'];
165179
165370
  };
@@ -166181,6 +166372,7 @@ export declare type QueryGraphIntegration_McpToolsArgs = {
166181
166372
  };
166182
166373
  export declare type QueryGraphIntegration_SkillArgs = {
166183
166374
  contextAri: Scalars['ID']['input'];
166375
+ resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
166184
166376
  skillAri: Scalars['ID']['input'];
166185
166377
  };
166186
166378
  export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
@@ -166267,6 +166459,9 @@ export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
166267
166459
  filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
166268
166460
  orgId: Scalars['ID']['input'];
166269
166461
  };
166462
+ export declare type QueryGrowthUnifiedProfile_GetSnIdProfileArgs = {
166463
+ snId: Scalars['ID']['input'];
166464
+ };
166270
166465
  export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
166271
166466
  accountId?: InputMaybe<Scalars['ID']['input']>;
166272
166467
  anonymousId?: InputMaybe<Scalars['ID']['input']>;
@@ -168628,7 +168823,7 @@ export declare enum RadarFieldType {
168628
168823
  Url = "URL",
168629
168824
  User = "USER"
168630
168825
  }
168631
- export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
168826
+ export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarLongFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
168632
168827
  export declare type RadarFieldValueIdPair = {
168633
168828
  __typename?: 'RadarFieldValueIdPair';
168634
168829
  fieldId: Scalars['ID']['output'];
@@ -168775,6 +168970,12 @@ export declare type RadarLastAppliedFilterInput = {
168775
168970
  pageName: Scalars['String']['input'];
168776
168971
  rqlQuery?: InputMaybe<Scalars['String']['input']>;
168777
168972
  };
168973
+ export declare type RadarLongFieldValue = {
168974
+ __typename?: 'RadarLongFieldValue';
168975
+ displayValue?: Maybe<Scalars['Long']['output']>;
168976
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
168977
+ value?: Maybe<Scalars['Long']['output']>;
168978
+ };
168778
168979
  export declare type RadarMetricSettings = {
168779
168980
  __typename?: 'RadarMetricSettings';
168780
168981
  id: Scalars['ID']['output'];
@@ -170808,6 +171009,7 @@ export declare enum Scope {
170808
171009
  ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
170809
171010
  ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
170810
171011
  ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
171012
+ ReadConfluenceTwgCli = "READ_CONFLUENCE_TWG_CLI",
170811
171013
  ReadConfluenceUser = "READ_CONFLUENCE_USER",
170812
171014
  ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
170813
171015
  ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
@@ -170818,7 +171020,14 @@ export declare enum Scope {
170818
171020
  ReadDesign = "READ_DESIGN",
170819
171021
  ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
170820
171022
  ReadDevInfoJira = "READ_DEV_INFO_JIRA",
171023
+ ReadFeedbackCustomer = "READ_FEEDBACK_CUSTOMER",
170821
171024
  ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
171025
+ ReadFeedbackField = "READ_FEEDBACK_FIELD",
171026
+ ReadFeedbackInsight = "READ_FEEDBACK_INSIGHT",
171027
+ ReadFeedbackJob = "READ_FEEDBACK_JOB",
171028
+ ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
171029
+ ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
171030
+ ReadFeedbackView = "READ_FEEDBACK_VIEW",
170822
171031
  ReadHomeTwgCli = "READ_HOME_TWG_CLI",
170823
171032
  ReadInsightJpd = "READ_INSIGHT_JPD",
170824
171033
  ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
@@ -170967,7 +171176,13 @@ export declare enum Scope {
170967
171176
  WriteCustomer = "WRITE_CUSTOMER",
170968
171177
  WriteDesign = "WRITE_DESIGN",
170969
171178
  WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
171179
+ WriteFeedbackCustomer = "WRITE_FEEDBACK_CUSTOMER",
170970
171180
  WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
171181
+ WriteFeedbackField = "WRITE_FEEDBACK_FIELD",
171182
+ WriteFeedbackInsight = "WRITE_FEEDBACK_INSIGHT",
171183
+ WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
171184
+ WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
171185
+ WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
170971
171186
  WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
170972
171187
  WriteInsightJpd = "WRITE_INSIGHT_JPD",
170973
171188
  WriteJiraWork = "WRITE_JIRA_WORK",
@@ -172269,6 +172484,7 @@ export declare type SearchThirdPartyFilter = {
172269
172484
  };
172270
172485
  export declare type SearchThirdPartyMetadata = {
172271
172486
  __typename?: 'SearchThirdPartyMetadata';
172487
+ connectedAt?: Maybe<Scalars['String']['output']>;
172272
172488
  connectionId?: Maybe<Scalars['String']['output']>;
172273
172489
  connectorCreatedAt?: Maybe<Scalars['String']['output']>;
172274
172490
  connectorSyncType?: Maybe<Scalars['String']['output']>;
@@ -191627,10 +191843,21 @@ export declare type SmartsContext = {
191627
191843
  tenantId: Scalars['String']['input'];
191628
191844
  userId: Scalars['String']['input'];
191629
191845
  };
191846
+ export declare type SmartsContextServiceCollaboratorRecommendation = {
191847
+ __typename?: 'SmartsContextServiceCollaboratorRecommendation';
191848
+ id: Scalars['ID']['output'];
191849
+ reason?: Maybe<Scalars['String']['output']>;
191850
+ score?: Maybe<Scalars['Float']['output']>;
191851
+ user?: Maybe<User>;
191852
+ };
191630
191853
  export declare type SmartsContextServiceQueryApi = {
191631
191854
  __typename?: 'SmartsContextServiceQueryApi';
191855
+ orbitRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
191632
191856
  quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
191633
191857
  };
191858
+ export declare type SmartsContextServiceQueryApiOrbitRecommendationsArgs = {
191859
+ recommendationsQuery: SmartsRecommendationsQuery;
191860
+ };
191634
191861
  export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
191635
191862
  recommendationsQuery: SmartsRecommendationsQuery;
191636
191863
  };
@@ -194108,11 +194335,23 @@ export declare type StakeholderCommsCreateStakeholderInput = {
194108
194335
  };
194109
194336
  export declare type StakeholderCommsCustomDomainConfig = {
194110
194337
  __typename?: 'StakeholderCommsCustomDomainConfig';
194338
+ cdoId?: Maybe<Scalars['String']['output']>;
194111
194339
  certificateExpiresAt?: Maybe<Scalars['String']['output']>;
194112
194340
  domain: Scalars['String']['output'];
194341
+ domainStatus?: Maybe<StakeholderCommsCustomDomainLifecycleStatus>;
194113
194342
  recordTypes: Array<StakeholderCommsDnsRecordType>;
194114
194343
  sslStatus: StakeholderCommsSslStatus;
194344
+ statusDescription?: Maybe<Scalars['String']['output']>;
194345
+ version?: Maybe<Scalars['String']['output']>;
194115
194346
  };
194347
+ export declare enum StakeholderCommsCustomDomainLifecycleStatus {
194348
+ Active = "ACTIVE",
194349
+ Deleted = "DELETED",
194350
+ Deleting = "DELETING",
194351
+ Error = "ERROR",
194352
+ Pending = "PENDING",
194353
+ Provisioned = "PROVISIONED"
194354
+ }
194116
194355
  export declare type StakeholderCommsCustomDomainStatusResponse = {
194117
194356
  __typename?: 'StakeholderCommsCustomDomainStatusResponse';
194118
194357
  config?: Maybe<StakeholderCommsCustomDomainConfig>;
@@ -195497,6 +195736,7 @@ export declare type Subscription = {
195497
195736
  bitbucket?: Maybe<BitbucketSubscription>;
195498
195737
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
195499
195738
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
195739
+ confluence_onSuggestedEditsUpdated?: Maybe<ConfluenceSuggestedEditsUpdated>;
195500
195740
  convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
195501
195741
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
195502
195742
  convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
@@ -195547,6 +195787,9 @@ export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
195547
195787
  export declare type SubscriptionConfluence_OnContentModifiedArgs = {
195548
195788
  id: Scalars['ID']['input'];
195549
195789
  };
195790
+ export declare type SubscriptionConfluence_OnSuggestedEditsUpdatedArgs = {
195791
+ id: Scalars['ID']['input'];
195792
+ };
195550
195793
  export declare type SubscriptionConvoai_OnAgentSessionCreateArgs = {
195551
195794
  accountId: Scalars['String']['input'];
195552
195795
  cloudId: Scalars['ID']['input'];
@@ -196261,6 +196504,17 @@ export declare type TeamChildrenEdge = {
196261
196504
  cursor: Scalars['String']['output'];
196262
196505
  node?: Maybe<TeamV2>;
196263
196506
  };
196507
+ export declare type TeamConnection = {
196508
+ __typename?: 'TeamConnection';
196509
+ edges?: Maybe<Array<TeamConnectionEdge>>;
196510
+ nodes?: Maybe<Array<TeamV2>>;
196511
+ pageInfo: PageInfo;
196512
+ };
196513
+ export declare type TeamConnectionEdge = {
196514
+ __typename?: 'TeamConnectionEdge';
196515
+ cursor: Scalars['String']['output'];
196516
+ node?: Maybe<TeamV2>;
196517
+ };
196264
196518
  export declare type TeamCreateCustomFieldPayload = {
196265
196519
  cardinality: TeamCustomFieldCardinality;
196266
196520
  description?: InputMaybe<Scalars['String']['input']>;
@@ -196347,11 +196601,54 @@ export declare type TeamDetailedCustomFieldInfo = {
196347
196601
  options?: Maybe<Array<TeamCustomFieldValue>>;
196348
196602
  type: TeamCustomFieldType;
196349
196603
  };
196604
+ export declare type TeamDisplayNameChange = {
196605
+ __typename?: 'TeamDisplayNameChange';
196606
+ from: Scalars['String']['output'];
196607
+ to: Scalars['String']['output'];
196608
+ };
196350
196609
  export declare type TeamExternalReferenceInput = {
196351
196610
  id: Scalars['String']['input'];
196352
196611
  source: TeamSource;
196353
196612
  syncTeamName?: InputMaybe<Scalars['Boolean']['input']>;
196354
196613
  };
196614
+ export declare type TeamExternalSourceDiff = {
196615
+ __typename?: 'TeamExternalSourceDiff';
196616
+ displayNameChange?: Maybe<TeamDisplayNameChange>;
196617
+ errors: Array<TeamExternalSourceDiffError>;
196618
+ membersToAdd: TeamMembersChange;
196619
+ membersToRemove: TeamMembersChange;
196620
+ };
196621
+ export declare enum TeamExternalSourceDiffError {
196622
+ ExternalSourceTooBig = "EXTERNAL_SOURCE_TOO_BIG",
196623
+ TeamTooBig = "TEAM_TOO_BIG"
196624
+ }
196625
+ export declare type TeamExternalSourceDiffInput = {
196626
+ externalReference: TeamExternalReferenceInput;
196627
+ scopeId: Scalars['ID']['input'];
196628
+ teamId: Scalars['ID']['input'];
196629
+ };
196630
+ export declare type TeamExternalSourceDiffPayload = Payload & {
196631
+ __typename?: 'TeamExternalSourceDiffPayload';
196632
+ diff?: Maybe<TeamExternalSourceDiff>;
196633
+ errors?: Maybe<Array<MutationError>>;
196634
+ success: Scalars['Boolean']['output'];
196635
+ };
196636
+ export declare type TeamGoal = {
196637
+ __typename?: 'TeamGoal';
196638
+ goal?: Maybe<TownsquareGoal>;
196639
+ id: Scalars['ID']['output'];
196640
+ };
196641
+ export declare type TeamGoalConnection = {
196642
+ __typename?: 'TeamGoalConnection';
196643
+ edges?: Maybe<Array<TeamGoalEdge>>;
196644
+ nodes?: Maybe<Array<TeamGoal>>;
196645
+ pageInfo: PageInfo;
196646
+ };
196647
+ export declare type TeamGoalEdge = {
196648
+ __typename?: 'TeamGoalEdge';
196649
+ cursor: Scalars['String']['output'];
196650
+ node?: Maybe<TeamGoal>;
196651
+ };
196355
196652
  export declare type TeamHierarchy = {
196356
196653
  __typename?: 'TeamHierarchy';
196357
196654
  ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
@@ -196417,6 +196714,11 @@ export declare type TeamMemberV2 = {
196417
196714
  role?: Maybe<TeamMembershipRole>;
196418
196715
  state?: Maybe<TeamMembershipState>;
196419
196716
  };
196717
+ export declare type TeamMembersChange = {
196718
+ __typename?: 'TeamMembersChange';
196719
+ count: Scalars['Int']['output'];
196720
+ memberIds: Array<Scalars['ID']['output']>;
196721
+ };
196420
196722
  export declare type TeamMembershipFilter = {
196421
196723
  memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
196422
196724
  };
@@ -196591,6 +196893,11 @@ export declare type TeamMutationUpdateTypeArgs = {
196591
196893
  id: Scalars['ID']['input'];
196592
196894
  typeData: TeamTypeUpdatePayload;
196593
196895
  };
196896
+ export declare type TeamMutationErrorExtension = MutationErrorExtension & {
196897
+ __typename?: 'TeamMutationErrorExtension';
196898
+ errorType: Scalars['String']['output'];
196899
+ statusCode: Scalars['Int']['output'];
196900
+ };
196594
196901
  export declare enum TeamNotificationChannel {
196595
196902
  Email = "EMAIL",
196596
196903
  InApp = "IN_APP"
@@ -196630,11 +196937,28 @@ export declare type TeamPrincipalEdge = {
196630
196937
  cursor: Scalars['String']['output'];
196631
196938
  node?: Maybe<TeamPrincipal>;
196632
196939
  };
196940
+ export declare type TeamProject = {
196941
+ __typename?: 'TeamProject';
196942
+ id: Scalars['ID']['output'];
196943
+ project?: Maybe<TownsquareProject>;
196944
+ };
196945
+ export declare type TeamProjectConnection = {
196946
+ __typename?: 'TeamProjectConnection';
196947
+ edges?: Maybe<Array<TeamProjectEdge>>;
196948
+ nodes?: Maybe<Array<TeamProject>>;
196949
+ pageInfo: PageInfo;
196950
+ };
196951
+ export declare type TeamProjectEdge = {
196952
+ __typename?: 'TeamProjectEdge';
196953
+ cursor: Scalars['String']['output'];
196954
+ node?: Maybe<TeamProject>;
196955
+ };
196633
196956
  export declare type TeamQuery = {
196634
196957
  __typename?: 'TeamQuery';
196635
196958
  customField?: Maybe<TeamDetailedCustomFieldInfo>;
196636
196959
  customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
196637
196960
  customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
196961
+ getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
196638
196962
  notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
196639
196963
  roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
196640
196964
  scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
@@ -196643,6 +196967,7 @@ export declare type TeamQuery = {
196643
196967
  teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
196644
196968
  teamV2?: Maybe<TeamV2>;
196645
196969
  teamV3?: Maybe<TeamV2>;
196970
+ teamsTql?: Maybe<TeamConnection>;
196646
196971
  teamsV2?: Maybe<Array<Maybe<TeamV2>>>;
196647
196972
  typeInformation?: Maybe<TeamType>;
196648
196973
  typesWithinScope?: Maybe<TeamTypeConnection>;
@@ -196657,6 +196982,9 @@ export declare type TeamQueryCustomFieldsWithinTeamArgs = {
196657
196982
  scopeId: Scalars['ID']['input'];
196658
196983
  teamId: Scalars['ID']['input'];
196659
196984
  };
196985
+ export declare type TeamQueryGetTeamExternalSourceDiffArgs = {
196986
+ input: TeamExternalSourceDiffInput;
196987
+ };
196660
196988
  export declare type TeamQueryNotificationConfigurationsArgs = {
196661
196989
  ari: Scalars['ID']['input'];
196662
196990
  };
@@ -196698,6 +197026,12 @@ export declare type TeamQueryTeamV2Args = {
196698
197026
  export declare type TeamQueryTeamV3Args = {
196699
197027
  id: Scalars['ID']['input'];
196700
197028
  };
197029
+ export declare type TeamQueryTeamsTqlArgs = {
197030
+ after?: InputMaybe<Scalars['String']['input']>;
197031
+ first?: InputMaybe<Scalars['Int']['input']>;
197032
+ q?: InputMaybe<Scalars['String']['input']>;
197033
+ scopeId: Scalars['ID']['input'];
197034
+ };
196701
197035
  export declare type TeamQueryTeamsV2Args = {
196702
197036
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
196703
197037
  siteId: Scalars['String']['input'];
@@ -196990,6 +197324,7 @@ export declare type TeamV2 = Node & {
196990
197324
  creator?: Maybe<User>;
196991
197325
  description?: Maybe<Scalars['String']['output']>;
196992
197326
  displayName?: Maybe<Scalars['String']['output']>;
197327
+ goals?: Maybe<TeamGoalConnection>;
196993
197328
  hierarchy?: Maybe<TeamHierarchy>;
196994
197329
  id: Scalars['ID']['output'];
196995
197330
  isCurrentUserMemberOfTeam?: Maybe<Scalars['Boolean']['output']>;
@@ -197002,16 +197337,25 @@ export declare type TeamV2 = Node & {
197002
197337
  permission?: Maybe<TeamPermission>;
197003
197338
  permissions?: Maybe<Array<TeamPermissions>>;
197004
197339
  profileUrl?: Maybe<Scalars['String']['output']>;
197340
+ projects?: Maybe<TeamProjectConnection>;
197005
197341
  smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
197006
197342
  smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
197007
197343
  state?: Maybe<TeamStateV2>;
197008
197344
  type?: Maybe<TeamType>;
197009
197345
  };
197346
+ export declare type TeamV2GoalsArgs = {
197347
+ after?: InputMaybe<Scalars['String']['input']>;
197348
+ first?: Scalars['Int']['input'];
197349
+ };
197010
197350
  export declare type TeamV2MembersArgs = {
197011
197351
  after?: InputMaybe<Scalars['String']['input']>;
197012
197352
  first?: Scalars['Int']['input'];
197013
197353
  state?: Array<TeamMembershipState>;
197014
197354
  };
197355
+ export declare type TeamV2ProjectsArgs = {
197356
+ after?: InputMaybe<Scalars['String']['input']>;
197357
+ first?: Scalars['Int']['input'];
197358
+ };
197015
197359
  export declare type TeamWithMembershipSyncPayload = Payload & {
197016
197360
  __typename?: 'TeamWithMembershipSyncPayload';
197017
197361
  errors?: Maybe<Array<MutationError>>;
@@ -198295,6 +198639,7 @@ export declare type TownsquareGoalBundledUpdateConnection = {
198295
198639
  export declare type TownsquareGoalBundledUpdateEdge = {
198296
198640
  __typename?: 'TownsquareGoalBundledUpdateEdge';
198297
198641
  cursor: Scalars['String']['output'];
198642
+ goal?: Maybe<TownsquareGoal>;
198298
198643
  node?: Maybe<TownsquareGoalUpdate>;
198299
198644
  nodeMissingReason?: Maybe<TownsquareBundledUpdateNodeMissingReason>;
198300
198645
  successMeasure?: Maybe<TownsquareGoal>;
@@ -199184,6 +199529,17 @@ export declare type TownsquareGoalsRemoveUserCustomFieldValuePayload = {
199184
199529
  success: Scalars['Boolean']['output'];
199185
199530
  userId?: Maybe<Scalars['ID']['output']>;
199186
199531
  };
199532
+ export declare type TownsquareGoalsRemoveWatchersInput = {
199533
+ goalId: Scalars['ID']['input'];
199534
+ watcherIds: Array<Scalars['ID']['input']>;
199535
+ };
199536
+ export declare type TownsquareGoalsRemoveWatchersPayload = {
199537
+ __typename?: 'TownsquareGoalsRemoveWatchersPayload';
199538
+ errors?: Maybe<Array<MutationError>>;
199539
+ goal?: Maybe<TownsquareGoal>;
199540
+ removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
199541
+ success: Scalars['Boolean']['output'];
199542
+ };
199187
199543
  export declare type TownsquareGoalsSetRollupProgressInput = {
199188
199544
  enableRollupProgress?: InputMaybe<Scalars['Boolean']['input']>;
199189
199545
  goalId: Scalars['ID']['input'];
@@ -201983,6 +202339,10 @@ export declare type TrelloBoardBoardsLimits = {
201983
202339
  totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
201984
202340
  totalMembersPerBoard?: Maybe<TrelloLimitProps>;
201985
202341
  };
202342
+ export declare enum TrelloBoardCardAgingModes {
202343
+ Pirate = "PIRATE",
202344
+ Regular = "REGULAR"
202345
+ }
201986
202346
  export declare type TrelloBoardCardsLimits = {
201987
202347
  __typename?: 'TrelloBoardCardsLimits';
201988
202348
  openPerBoard?: Maybe<TrelloLimitProps>;
@@ -201999,6 +202359,13 @@ export declare type TrelloBoardChecklistsLimits = {
201999
202359
  perBoard?: Maybe<TrelloLimitProps>;
202000
202360
  perCard?: Maybe<TrelloLimitProps>;
202001
202361
  };
202362
+ export declare enum TrelloBoardCommentPermissions {
202363
+ Disabled = "DISABLED",
202364
+ Members = "MEMBERS",
202365
+ Observers = "OBSERVERS",
202366
+ Org = "ORG",
202367
+ Public = "PUBLIC"
202368
+ }
202002
202369
  export declare enum TrelloBoardCommentingPermissions {
202003
202370
  Board = "BOARD",
202004
202371
  Disabled = "DISABLED",
@@ -202010,6 +202377,13 @@ export declare type TrelloBoardConnectionUpdated = {
202010
202377
  __typename?: 'TrelloBoardConnectionUpdated';
202011
202378
  edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
202012
202379
  };
202380
+ export declare enum TrelloBoardCreationMethod {
202381
+ Ai = "AI",
202382
+ Assisted = "ASSISTED",
202383
+ Automatic = "AUTOMATIC",
202384
+ Demo = "DEMO",
202385
+ EmailSource = "EMAIL_SOURCE"
202386
+ }
202013
202387
  export declare type TrelloBoardCustomFieldOptionsLimits = {
202014
202388
  __typename?: 'TrelloBoardCustomFieldOptionsLimits';
202015
202389
  perField?: Maybe<TrelloLimitProps>;
@@ -202032,6 +202406,10 @@ export declare type TrelloBoardId = TrelloBaseBoardId & {
202032
202406
  id: Scalars['ID']['output'];
202033
202407
  objectId: Scalars['ID']['output'];
202034
202408
  };
202409
+ export declare enum TrelloBoardInvitationPermissions {
202410
+ Admins = "ADMINS",
202411
+ Members = "MEMBERS"
202412
+ }
202035
202413
  export declare enum TrelloBoardInvitePermissionsInput {
202036
202414
  Admins = "ADMINS",
202037
202415
  Members = "MEMBERS"
@@ -202135,6 +202513,25 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
202135
202513
  export declare type TrelloBoardPowerUpFilterInput = {
202136
202514
  access?: InputMaybe<Scalars['String']['input']>;
202137
202515
  };
202516
+ export declare enum TrelloBoardPowerUps {
202517
+ Calendar = "CALENDAR",
202518
+ Cardaging = "CARDAGING",
202519
+ Voting = "VOTING"
202520
+ }
202521
+ export declare type TrelloBoardPreferencesInput = {
202522
+ background?: InputMaybe<TrelloCreateBoardBackgroundInput>;
202523
+ cardAging?: InputMaybe<TrelloBoardCardAgingModes>;
202524
+ cardCounts?: InputMaybe<Scalars['Boolean']['input']>;
202525
+ cardCovers?: InputMaybe<Scalars['Boolean']['input']>;
202526
+ comments?: InputMaybe<TrelloBoardCommentPermissions>;
202527
+ invitations?: InputMaybe<TrelloBoardInvitationPermissions>;
202528
+ isTemplate?: InputMaybe<Scalars['Boolean']['input']>;
202529
+ permissionLevel?: InputMaybe<TrelloBoardPrefsPermissionLevel>;
202530
+ selfJoin?: InputMaybe<Scalars['Boolean']['input']>;
202531
+ showCompleteStatus?: InputMaybe<Scalars['Boolean']['input']>;
202532
+ switcherViews?: InputMaybe<Array<InputMaybe<TrelloSwitcherViewsInfoInput>>>;
202533
+ voting?: InputMaybe<TrelloBoardVotingPermissions>;
202534
+ };
202138
202535
  export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
202139
202536
  __typename?: 'TrelloBoardPrefs';
202140
202537
  background?: Maybe<TrelloBoardBackground>;
@@ -203048,6 +203445,25 @@ export declare type TrelloCreateApplicationPayload = Payload & {
203048
203445
  errors?: Maybe<Array<MutationError>>;
203049
203446
  success: Scalars['Boolean']['output'];
203050
203447
  };
203448
+ export declare type TrelloCreateBoardBackgroundInput = {
203449
+ key?: InputMaybe<Scalars['String']['input']>;
203450
+ url?: InputMaybe<Scalars['String']['input']>;
203451
+ };
203452
+ export declare type TrelloCreateBoardInput = {
203453
+ creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
203454
+ description?: InputMaybe<Scalars['String']['input']>;
203455
+ name: Scalars['String']['input'];
203456
+ powerUps?: InputMaybe<TrelloBoardPowerUps>;
203457
+ preferences?: InputMaybe<TrelloBoardPreferencesInput>;
203458
+ setup?: InputMaybe<TrelloSetupInput>;
203459
+ workspaceId: Scalars['ID']['input'];
203460
+ };
203461
+ export declare type TrelloCreateBoardPayload = Payload & {
203462
+ __typename?: 'TrelloCreateBoardPayload';
203463
+ board?: Maybe<TrelloBoard>;
203464
+ errors?: Maybe<Array<MutationError>>;
203465
+ success: Scalars['Boolean']['output'];
203466
+ };
203051
203467
  export declare type TrelloCreateBoardWithAiInput = {
203052
203468
  userInput: TrelloAiBoardUserInput;
203053
203469
  workspaceId: Scalars['ID']['input'];
@@ -203554,6 +203970,15 @@ export declare type TrelloEnableCardFrontCompleteTogglePayload = Payload & {
203554
203970
  errors?: Maybe<Array<MutationError>>;
203555
203971
  success: Scalars['Boolean']['output'];
203556
203972
  };
203973
+ export declare type TrelloEndVoiceCaptureSessionInput = {
203974
+ lastSequenceNumber: Scalars['Int']['input'];
203975
+ sessionId: Scalars['ID']['input'];
203976
+ };
203977
+ export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
203978
+ __typename?: 'TrelloEndVoiceCaptureSessionPayload';
203979
+ errors?: Maybe<Array<MutationError>>;
203980
+ success: Scalars['Boolean']['output'];
203981
+ };
203557
203982
  export declare type TrelloEnterprise = Node & {
203558
203983
  __typename?: 'TrelloEnterprise';
203559
203984
  admins?: Maybe<TrelloMemberConnection>;
@@ -204103,6 +204528,7 @@ export declare type TrelloMember = Node & {
204103
204528
  url?: Maybe<Scalars['URL']['output']>;
204104
204529
  user?: Maybe<User>;
204105
204530
  username?: Maybe<Scalars['String']['output']>;
204531
+ webhooks?: Maybe<TrelloMemberOwnedWebhookConnection>;
204106
204532
  workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
204107
204533
  };
204108
204534
  export declare type TrelloMemberAiRulesArgs = {
@@ -204127,6 +204553,10 @@ export declare type TrelloMemberNotificationsArgs = {
204127
204553
  filter?: InputMaybe<TrelloNotificationFilter>;
204128
204554
  first?: InputMaybe<Scalars['Int']['input']>;
204129
204555
  };
204556
+ export declare type TrelloMemberWebhooksArgs = {
204557
+ after?: InputMaybe<Scalars['String']['input']>;
204558
+ first?: InputMaybe<Scalars['Int']['input']>;
204559
+ };
204130
204560
  export declare type TrelloMemberWorkspacesArgs = {
204131
204561
  after?: InputMaybe<Scalars['String']['input']>;
204132
204562
  filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
@@ -204228,6 +204658,33 @@ export declare type TrelloMemberOAuth2AccessGrantsResult = {
204228
204658
  grants: Array<TrelloMemberOAuth2AccessGrant>;
204229
204659
  member: TrelloMember;
204230
204660
  };
204661
+ export declare type TrelloMemberOwnedWebhook = {
204662
+ __typename?: 'TrelloMemberOwnedWebhook';
204663
+ application?: Maybe<TrelloMemberOwnedWebhookLegacyApplication>;
204664
+ id: Scalars['ID']['output'];
204665
+ modelId: Scalars['ID']['output'];
204666
+ oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
204667
+ };
204668
+ export declare type TrelloMemberOwnedWebhookConnection = {
204669
+ __typename?: 'TrelloMemberOwnedWebhookConnection';
204670
+ edges?: Maybe<Array<Maybe<TrelloMemberOwnedWebhookEdge>>>;
204671
+ nodes?: Maybe<Array<TrelloMemberOwnedWebhook>>;
204672
+ pageInfo: PageInfo;
204673
+ };
204674
+ export declare type TrelloMemberOwnedWebhookEdge = {
204675
+ __typename?: 'TrelloMemberOwnedWebhookEdge';
204676
+ cursor: Scalars['String']['output'];
204677
+ node?: Maybe<TrelloMemberOwnedWebhook>;
204678
+ };
204679
+ export declare type TrelloMemberOwnedWebhookLegacyApplication = {
204680
+ __typename?: 'TrelloMemberOwnedWebhookLegacyApplication';
204681
+ id?: Maybe<Scalars['ID']['output']>;
204682
+ name?: Maybe<Scalars['String']['output']>;
204683
+ };
204684
+ export declare type TrelloMemberOwnedWebhookOAuth2Client = {
204685
+ __typename?: 'TrelloMemberOwnedWebhookOAuth2Client';
204686
+ oauth2ClientId?: Maybe<Scalars['ID']['output']>;
204687
+ };
204231
204688
  export declare type TrelloMemberPlannerEventCardsUpdated = {
204232
204689
  __typename?: 'TrelloMemberPlannerEventCardsUpdated';
204233
204690
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
@@ -204449,6 +204906,7 @@ export declare type TrelloMutationApi = {
204449
204906
  convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
204450
204907
  convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
204451
204908
  createApplication?: Maybe<TrelloCreateApplicationPayload>;
204909
+ createBoard?: Maybe<TrelloCreateBoardPayload>;
204452
204910
  createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
204453
204911
  createCard?: Maybe<TrelloCreateCardPayload>;
204454
204912
  createChecklist?: Maybe<TrelloCreateChecklistPayload>;
@@ -204474,6 +204932,7 @@ export declare type TrelloMutationApi = {
204474
204932
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
204475
204933
  enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
204476
204934
  enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
204935
+ endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
204477
204936
  generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
204478
204937
  generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
204479
204938
  hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
@@ -204604,6 +205063,9 @@ export declare type TrelloMutationApiConvertTemplateToBoardArgs = {
204604
205063
  export declare type TrelloMutationApiCreateApplicationArgs = {
204605
205064
  input: TrelloCreateApplicationInput;
204606
205065
  };
205066
+ export declare type TrelloMutationApiCreateBoardArgs = {
205067
+ input: TrelloCreateBoardInput;
205068
+ };
204607
205069
  export declare type TrelloMutationApiCreateBoardWithAiArgs = {
204608
205070
  input: TrelloCreateBoardWithAiInput;
204609
205071
  };
@@ -204679,6 +205141,9 @@ export declare type TrelloMutationApiEnableBoardSelfJoinArgs = {
204679
205141
  export declare type TrelloMutationApiEnableCardFrontCompleteToggleArgs = {
204680
205142
  input: TrelloEnableCardFrontCompleteToggleInput;
204681
205143
  };
205144
+ export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
205145
+ input: TrelloEndVoiceCaptureSessionInput;
205146
+ };
204682
205147
  export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
204683
205148
  input: TrelloGenerateBoardBackgroundWithAiInput;
204684
205149
  };
@@ -206263,6 +206728,11 @@ export declare type TrelloSetPlannerBoardOverridePayload = Payload & {
206263
206728
  planner?: Maybe<TrelloPlanner>;
206264
206729
  success: Scalars['Boolean']['output'];
206265
206730
  };
206731
+ export declare type TrelloSetupInput = {
206732
+ addDefaultLabels?: InputMaybe<Scalars['Boolean']['input']>;
206733
+ addDefaultLists?: InputMaybe<Scalars['Boolean']['input']>;
206734
+ addStarterGuide?: InputMaybe<Scalars['Boolean']['input']>;
206735
+ };
206266
206736
  export declare type TrelloShowCardCoversOnCardFrontInput = {
206267
206737
  boardId: Scalars['ID']['input'];
206268
206738
  };
@@ -206392,6 +206862,10 @@ export declare type TrelloSwitcherViewsInfo = {
206392
206862
  enabled?: Maybe<Scalars['Boolean']['output']>;
206393
206863
  viewType?: Maybe<Scalars['String']['output']>;
206394
206864
  };
206865
+ export declare type TrelloSwitcherViewsInfoInput = {
206866
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
206867
+ viewType?: InputMaybe<Scalars['String']['input']>;
206868
+ };
206395
206869
  export declare type TrelloTag = {
206396
206870
  __typename?: 'TrelloTag';
206397
206871
  name?: Maybe<Scalars['String']['output']>;