@forge/cli-shared 8.12.1-next.4 → 8.13.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1534,7 +1534,7 @@ export declare type AdminAccessUrlConnection = {
1534
1534
  };
1535
1535
  export declare type AdminAccessUrlCreationResponsePayload = Payload & {
1536
1536
  __typename?: 'AdminAccessUrlCreationResponsePayload';
1537
- accessUrl?: Maybe<AdminAccessUrl>;
1537
+ accessUrl?: Maybe<AdminAccessUrlV2>;
1538
1538
  errors?: Maybe<Array<MutationError>>;
1539
1539
  success: Scalars['Boolean']['output'];
1540
1540
  };
@@ -1546,7 +1546,16 @@ export declare type AdminAccessUrlDeletionResponsePayload = {
1546
1546
  export declare type AdminAccessUrlEdge = {
1547
1547
  __typename?: 'AdminAccessUrlEdge';
1548
1548
  cursor: Scalars['String']['output'];
1549
- node: AdminAccessUrl;
1549
+ node: AdminAccessUrlV2;
1550
+ };
1551
+ export declare type AdminAccessUrlV2 = {
1552
+ __typename?: 'AdminAccessUrlV2';
1553
+ expirationDate?: Maybe<Scalars['String']['output']>;
1554
+ id: Scalars['ID']['output'];
1555
+ resourceUrl?: Maybe<Scalars['String']['output']>;
1556
+ resources?: Maybe<Array<AdminResource>>;
1557
+ status: Scalars['String']['output'];
1558
+ url: Scalars['String']['output'];
1550
1559
  };
1551
1560
  export declare type AdminAccountStatusCounts = {
1552
1561
  __typename?: 'AdminAccountStatusCounts';
@@ -5754,6 +5763,82 @@ export declare type AssetsDmCreateDataSourceTypeResponse = {
5754
5763
  isSuccessful?: Maybe<Scalars['Boolean']['output']>;
5755
5764
  message?: Maybe<Scalars['String']['output']>;
5756
5765
  };
5766
+ export declare enum AssetsDmDataDictionaryColumnName {
5767
+ ComputeDictionaryId = "computeDictionaryId",
5768
+ DestinationObjectAttributeId = "destinationObjectAttributeId",
5769
+ DmComputeDictionaryDate = "dmComputeDictionaryDate",
5770
+ DmComputeDictionaryId = "dmComputeDictionaryId",
5771
+ Name = "name",
5772
+ ObjectId = "objectId",
5773
+ Priority = "priority",
5774
+ Scope = "scope",
5775
+ SourceObjectAttributeId = "sourceObjectAttributeId",
5776
+ SourceObjectAttributeId2 = "sourceObjectAttributeId2",
5777
+ TenantId = "tenantId"
5778
+ }
5779
+ export declare type AssetsDmDataDictionaryFilter = {
5780
+ columnName: AssetsDmDataDictionaryFilterColumn;
5781
+ value: Scalars['String']['input'];
5782
+ };
5783
+ export declare enum AssetsDmDataDictionaryFilterColumn {
5784
+ Name = "name"
5785
+ }
5786
+ export declare type AssetsDmDataDictionaryPageInfo = {
5787
+ __typename?: 'AssetsDMDataDictionaryPageInfo';
5788
+ currentPageCursor?: Maybe<Scalars['Int']['output']>;
5789
+ hasNextPage: Scalars['Boolean']['output'];
5790
+ hasPreviousPage: Scalars['Boolean']['output'];
5791
+ nextPageCursor?: Maybe<Scalars['Int']['output']>;
5792
+ pageSize: Scalars['Int']['output'];
5793
+ previousPageCursor?: Maybe<Scalars['Int']['output']>;
5794
+ totalPages: Scalars['Int']['output'];
5795
+ };
5796
+ export declare type AssetsDmDataDictionaryPageInfoInput = {
5797
+ pageCursor?: InputMaybe<Scalars['Int']['input']>;
5798
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
5799
+ };
5800
+ export declare type AssetsDmDataDictionaryResponse = {
5801
+ __typename?: 'AssetsDMDataDictionaryResponse';
5802
+ pageInfo: AssetsDmDataDictionaryPageInfo;
5803
+ rows: Array<AssetsDmDataDictionaryRow>;
5804
+ totalCount: Scalars['Int']['output'];
5805
+ };
5806
+ export declare type AssetsDmDataDictionaryRow = {
5807
+ __typename?: 'AssetsDMDataDictionaryRow';
5808
+ computeDictionaryId: Scalars['ID']['output'];
5809
+ computedIssuesCount: Scalars['Int']['output'];
5810
+ destinationObjectAttributeId: Scalars['ID']['output'];
5811
+ dmComputeDictionaryDate: Scalars['String']['output'];
5812
+ dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
5813
+ name: Scalars['String']['output'];
5814
+ objectId: Scalars['ID']['output'];
5815
+ priority: Scalars['Int']['output'];
5816
+ scope: AssetsDmDataDictionaryScope;
5817
+ sourceObjectAttributeId: Scalars['ID']['output'];
5818
+ sourceObjectAttributeId2?: Maybe<Scalars['ID']['output']>;
5819
+ tenantId: Scalars['ID']['output'];
5820
+ };
5821
+ export declare enum AssetsDmDataDictionaryScope {
5822
+ Imported = "imported",
5823
+ Local = "local"
5824
+ }
5825
+ export declare type AssetsDmDataDictionarySortBy = {
5826
+ columnName: AssetsDmDataDictionarySortColumn;
5827
+ order: AssetsDmDataDictionarySortOrder;
5828
+ };
5829
+ export declare enum AssetsDmDataDictionarySortColumn {
5830
+ ComputedIssuesCount = "computedIssuesCount",
5831
+ DestinationObjectAttributeId = "destinationObjectAttributeId",
5832
+ Name = "name",
5833
+ Priority = "priority",
5834
+ Scope = "scope",
5835
+ SourceObjectAttributeId = "sourceObjectAttributeId",
5836
+ SourceObjectAttributeId2 = "sourceObjectAttributeId2"
5837
+ }
5838
+ export declare enum AssetsDmDataDictionarySortOrder {
5839
+ Asc = "asc",
5840
+ Desc = "desc"
5841
+ }
5757
5842
  export declare type AssetsDmDataSource = {
5758
5843
  __typename?: 'AssetsDMDataSource';
5759
5844
  dataSourceId?: Maybe<Scalars['String']['output']>;
@@ -6370,19 +6455,6 @@ export declare type AssetsDmDataSourceTypeInfo = {
6370
6455
  name: Scalars['String']['output'];
6371
6456
  tenantId: Scalars['ID']['output'];
6372
6457
  };
6373
- export declare type AssetsDmDataSourceTypeResponse = {
6374
- __typename?: 'AssetsDMDataSourceTypeResponse';
6375
- pageInfo: AssetsDmDefaultAttributeMappingPageInfo;
6376
- rows: Array<AssetsDmDataSourceTypeRow>;
6377
- totalCount: Scalars['Int']['output'];
6378
- };
6379
- export declare type AssetsDmDataSourceTypeRow = {
6380
- __typename?: 'AssetsDMDataSourceTypeRow';
6381
- dataSourceTypeId: Scalars['ID']['output'];
6382
- defaultGap: Scalars['Int']['output'];
6383
- name: Scalars['String']['output'];
6384
- tenantId: Scalars['ID']['output'];
6385
- };
6386
6458
  export declare type AssetsDmDataSourceTypes = {
6387
6459
  __typename?: 'AssetsDMDataSourceTypes';
6388
6460
  dataSourceTypeId: Scalars['ID']['output'];
@@ -6487,6 +6559,11 @@ export declare type AssetsDmDeleteCleansingReasonResponse = {
6487
6559
  isSuccessful: Scalars['Boolean']['output'];
6488
6560
  message: Scalars['String']['output'];
6489
6561
  };
6562
+ export declare type AssetsDmDeleteDataDictionaryResponse = {
6563
+ __typename?: 'AssetsDMDeleteDataDictionaryResponse';
6564
+ isSuccessful: Scalars['Boolean']['output'];
6565
+ message: Scalars['String']['output'];
6566
+ };
6490
6567
  export declare type AssetsDmDeleteDataSourceArgs = {
6491
6568
  cloudId: Scalars['ID']['input'];
6492
6569
  input: AssetsDmDeleteDataSourceInput;
@@ -6505,6 +6582,20 @@ export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
6505
6582
  isSuccessful: Scalars['Boolean']['output'];
6506
6583
  message: Scalars['String']['output'];
6507
6584
  };
6585
+ export declare type AssetsDmEditDataDictionaryInput = {
6586
+ computeDictionaryId: Scalars['ID']['input'];
6587
+ destinationObjectAttributeId: Scalars['ID']['input'];
6588
+ name: Scalars['String']['input'];
6589
+ objectId: Scalars['ID']['input'];
6590
+ priority: Scalars['Int']['input'];
6591
+ sourceObjectAttributeId: Scalars['ID']['input'];
6592
+ sourceObjectAttributeId2?: InputMaybe<Scalars['ID']['input']>;
6593
+ };
6594
+ export declare type AssetsDmEditDataDictionaryResponse = {
6595
+ __typename?: 'AssetsDMEditDataDictionaryResponse';
6596
+ isSuccessful: Scalars['Boolean']['output'];
6597
+ message: Scalars['String']['output'];
6598
+ };
6508
6599
  export declare type AssetsDmEditDefaultAttributeMappingInput = {
6509
6600
  columnType: AssetsDmDefaultAttributeMappingColumnType;
6510
6601
  dataSourceTypeId: Scalars['ID']['input'];
@@ -10447,6 +10538,11 @@ export declare enum ChannelPlatformContactState {
10447
10538
  Initialized = "INITIALIZED",
10448
10539
  Unassigned = "UNASSIGNED"
10449
10540
  }
10541
+ export declare type ChannelPlatformCreateContactResponse = {
10542
+ __typename?: 'ChannelPlatformCreateContactResponse';
10543
+ channel?: Maybe<ChannelPlatformChannelType>;
10544
+ value?: Maybe<ChannelPlatformGetChannelTokenResponse>;
10545
+ };
10450
10546
  export declare type ChannelPlatformCustomerConversationsResponse = {
10451
10547
  __typename?: 'ChannelPlatformCustomerConversationsResponse';
10452
10548
  conversations?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -19378,6 +19474,23 @@ export declare type ConfluenceNbmVerificationEntryInput = {
19378
19474
  isApproved: Scalars['Boolean']['input'];
19379
19475
  manualState?: InputMaybe<ConfluenceNbmCategoryTypes>;
19380
19476
  };
19477
+ export declare type ConfluenceNbmVerificationJob = {
19478
+ __typename?: 'ConfluenceNbmVerificationJob';
19479
+ completeDate?: Maybe<Scalars['String']['output']>;
19480
+ phase?: Maybe<ConfluenceNbmVerificationPhase>;
19481
+ startDate?: Maybe<Scalars['String']['output']>;
19482
+ status?: Maybe<ConfluenceNbmVerificationStatus>;
19483
+ taskId?: Maybe<Scalars['ID']['output']>;
19484
+ verificationEntryIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
19485
+ };
19486
+ export declare enum ConfluenceNbmVerificationPhase {
19487
+ AiAnalysis = "AI_ANALYSIS",
19488
+ Completed = "COMPLETED",
19489
+ Copy = "COPY",
19490
+ Pending = "PENDING",
19491
+ Screenshot = "SCREENSHOT",
19492
+ Setup = "SETUP"
19493
+ }
19381
19494
  export declare type ConfluenceNbmVerificationResultConnection = {
19382
19495
  __typename?: 'ConfluenceNbmVerificationResultConnection';
19383
19496
  edges?: Maybe<Array<Maybe<ConfluenceNbmVerificationResultEdge>>>;
@@ -19397,6 +19510,13 @@ export declare enum ConfluenceNbmVerificationResultOrder {
19397
19510
  AiState = "AI_STATE",
19398
19511
  ManualState = "MANUAL_STATE"
19399
19512
  }
19513
+ export declare enum ConfluenceNbmVerificationStatus {
19514
+ Cancelled = "CANCELLED",
19515
+ Completed = "COMPLETED",
19516
+ Failed = "FAILED",
19517
+ Pending = "PENDING",
19518
+ Running = "RUNNING"
19519
+ }
19400
19520
  export declare type ConfluenceNcsPdfExportConfiguration = {
19401
19521
  __typename?: 'ConfluenceNcsPdfExportConfiguration';
19402
19522
  bodyFontSize: Scalars['Int']['output'];
@@ -38693,6 +38813,8 @@ export declare type GraphStore = {
38693
38813
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
38694
38814
  atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
38695
38815
  atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
38816
+ atlassianUserCreatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection>;
38817
+ atlassianUserCreatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection>;
38696
38818
  atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
38697
38819
  atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
38698
38820
  atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
@@ -38701,6 +38823,10 @@ export declare type GraphStore = {
38701
38823
  atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
38702
38824
  atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
38703
38825
  atlassianUserInvitedToLoomMeetingInverseBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
38826
+ atlassianUserOwnsExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection>;
38827
+ atlassianUserOwnsExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection>;
38828
+ atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
38829
+ atlassianUserUpdatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection>;
38704
38830
  boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
38705
38831
  boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
38706
38832
  branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
@@ -39944,6 +40070,22 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
39944
40070
  queryContext?: InputMaybe<Scalars['String']['input']>;
39945
40071
  sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
39946
40072
  };
40073
+ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryArgs = {
40074
+ after?: InputMaybe<Scalars['String']['input']>;
40075
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40076
+ first?: InputMaybe<Scalars['Int']['input']>;
40077
+ id: Scalars['ID']['input'];
40078
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40079
+ sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput>;
40080
+ };
40081
+ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategoryInverseArgs = {
40082
+ after?: InputMaybe<Scalars['String']['input']>;
40083
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40084
+ first?: InputMaybe<Scalars['Int']['input']>;
40085
+ id: Scalars['ID']['input'];
40086
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40087
+ sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput>;
40088
+ };
39947
40089
  export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
39948
40090
  after?: InputMaybe<Scalars['String']['input']>;
39949
40091
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -40008,6 +40150,38 @@ export declare type GraphStoreAtlassianUserInvitedToLoomMeetingInverseBatchArgs
40008
40150
  queryContext?: InputMaybe<Scalars['String']['input']>;
40009
40151
  sort?: InputMaybe<GraphStoreAtlassianUserInvitedToLoomMeetingSortInput>;
40010
40152
  };
40153
+ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryArgs = {
40154
+ after?: InputMaybe<Scalars['String']['input']>;
40155
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40156
+ first?: InputMaybe<Scalars['Int']['input']>;
40157
+ id: Scalars['ID']['input'];
40158
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40159
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput>;
40160
+ };
40161
+ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategoryInverseArgs = {
40162
+ after?: InputMaybe<Scalars['String']['input']>;
40163
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40164
+ first?: InputMaybe<Scalars['Int']['input']>;
40165
+ id: Scalars['ID']['input'];
40166
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40167
+ sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput>;
40168
+ };
40169
+ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryArgs = {
40170
+ after?: InputMaybe<Scalars['String']['input']>;
40171
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40172
+ first?: InputMaybe<Scalars['Int']['input']>;
40173
+ id: Scalars['ID']['input'];
40174
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40175
+ sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput>;
40176
+ };
40177
+ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategoryInverseArgs = {
40178
+ after?: InputMaybe<Scalars['String']['input']>;
40179
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40180
+ first?: InputMaybe<Scalars['Int']['input']>;
40181
+ id: Scalars['ID']['input'];
40182
+ queryContext?: InputMaybe<Scalars['String']['input']>;
40183
+ sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput>;
40184
+ };
40011
40185
  export declare type GraphStoreBoardBelongsToProjectArgs = {
40012
40186
  after?: InputMaybe<Scalars['String']['input']>;
40013
40187
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -46483,6 +46657,9 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
46483
46657
  export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
46484
46658
  lastModified?: InputMaybe<GraphStoreSortInput>;
46485
46659
  };
46660
+ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySortInput = {
46661
+ lastModified?: InputMaybe<GraphStoreSortInput>;
46662
+ };
46486
46663
  export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
46487
46664
  and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
46488
46665
  category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
@@ -46533,6 +46710,12 @@ export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEnti
46533
46710
  export declare type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
46534
46711
  lastModified?: InputMaybe<GraphStoreSortInput>;
46535
46712
  };
46713
+ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortInput = {
46714
+ lastModified?: InputMaybe<GraphStoreSortInput>;
46715
+ };
46716
+ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySortInput = {
46717
+ lastModified?: InputMaybe<GraphStoreSortInput>;
46718
+ };
46536
46719
  export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
46537
46720
  __typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
46538
46721
  edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
@@ -54562,6 +54745,34 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
54562
54745
  };
54563
54746
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
54564
54747
  export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
54748
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
54749
+ __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryConnection';
54750
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge>>>;
54751
+ pageInfo: PageInfo;
54752
+ };
54753
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge = {
54754
+ __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryEdge';
54755
+ createdAt: Scalars['DateTime']['output'];
54756
+ cursor?: Maybe<Scalars['String']['output']>;
54757
+ id: Scalars['ID']['output'];
54758
+ lastUpdated: Scalars['DateTime']['output'];
54759
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryUnion>;
54760
+ };
54761
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
54762
+ __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection';
54763
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge>>>;
54764
+ pageInfo: PageInfo;
54765
+ };
54766
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge = {
54767
+ __typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseEdge';
54768
+ createdAt: Scalars['DateTime']['output'];
54769
+ cursor?: Maybe<Scalars['String']['output']>;
54770
+ id: Scalars['ID']['output'];
54771
+ lastUpdated: Scalars['DateTime']['output'];
54772
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseUnion>;
54773
+ };
54774
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
54775
+ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
54565
54776
  export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
54566
54777
  __typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
54567
54778
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
@@ -54622,6 +54833,62 @@ export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverse
54622
54833
  };
54623
54834
  export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
54624
54835
  export declare type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingUnion = LoomMeeting;
54836
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection = HasPageInfo & {
54837
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryConnection';
54838
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge>>>;
54839
+ pageInfo: PageInfo;
54840
+ };
54841
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge = {
54842
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryEdge';
54843
+ createdAt: Scalars['DateTime']['output'];
54844
+ cursor?: Maybe<Scalars['String']['output']>;
54845
+ id: Scalars['ID']['output'];
54846
+ lastUpdated: Scalars['DateTime']['output'];
54847
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryUnion>;
54848
+ };
54849
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
54850
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection';
54851
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge>>>;
54852
+ pageInfo: PageInfo;
54853
+ };
54854
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge = {
54855
+ __typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseEdge';
54856
+ createdAt: Scalars['DateTime']['output'];
54857
+ cursor?: Maybe<Scalars['String']['output']>;
54858
+ id: Scalars['ID']['output'];
54859
+ lastUpdated: Scalars['DateTime']['output'];
54860
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseUnion>;
54861
+ };
54862
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
54863
+ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
54864
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection = HasPageInfo & {
54865
+ __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection';
54866
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge>>>;
54867
+ pageInfo: PageInfo;
54868
+ };
54869
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge = {
54870
+ __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryEdge';
54871
+ createdAt: Scalars['DateTime']['output'];
54872
+ cursor?: Maybe<Scalars['String']['output']>;
54873
+ id: Scalars['ID']['output'];
54874
+ lastUpdated: Scalars['DateTime']['output'];
54875
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryUnion>;
54876
+ };
54877
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection = HasPageInfo & {
54878
+ __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection';
54879
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge>>>;
54880
+ pageInfo: PageInfo;
54881
+ };
54882
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge = {
54883
+ __typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseEdge';
54884
+ createdAt: Scalars['DateTime']['output'];
54885
+ cursor?: Maybe<Scalars['String']['output']>;
54886
+ id: Scalars['ID']['output'];
54887
+ lastUpdated: Scalars['DateTime']['output'];
54888
+ node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseUnion>;
54889
+ };
54890
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
54891
+ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryUnion = ExternalCustomerOrgCategory;
54625
54892
  export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
54626
54893
  __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
54627
54894
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
@@ -78814,6 +79081,7 @@ export declare enum GrowthUnifiedProfileTrialTrigger {
78814
79081
  AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
78815
79082
  CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
78816
79083
  EditionParity = "EDITION_PARITY",
79084
+ EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
78817
79085
  Reactivation = "REACTIVATION",
78818
79086
  ReverseTrial = "REVERSE_TRIAL",
78819
79087
  Ui = "UI"
@@ -86081,6 +86349,16 @@ export declare type JiraCreateBoardViewStatusColumnPayload = Payload & {
86081
86349
  errors?: Maybe<Array<MutationError>>;
86082
86350
  success: Scalars['Boolean']['output'];
86083
86351
  };
86352
+ export declare type JiraCreateBoardViewsForWorkflowsInput = {
86353
+ viewId: Scalars['ID']['input'];
86354
+ workflowIds: Array<Scalars['ID']['input']>;
86355
+ };
86356
+ export declare type JiraCreateBoardViewsForWorkflowsPayload = Payload & {
86357
+ __typename?: 'JiraCreateBoardViewsForWorkflowsPayload';
86358
+ containerNavigation?: Maybe<JiraContainerNavigationResult>;
86359
+ errors?: Maybe<Array<MutationError>>;
86360
+ success: Scalars['Boolean']['output'];
86361
+ };
86084
86362
  export declare type JiraCreateCalendarIssuePayload = Payload & {
86085
86363
  __typename?: 'JiraCreateCalendarIssuePayload';
86086
86364
  errors?: Maybe<Array<MutationError>>;
@@ -97457,6 +97735,7 @@ export declare type JiraQueryIssueSearchArgs = {
97457
97735
  first?: InputMaybe<Scalars['Int']['input']>;
97458
97736
  issueSearchInput: JiraIssueSearchInput;
97459
97737
  last?: InputMaybe<Scalars['Int']['input']>;
97738
+ namespace?: InputMaybe<Scalars['String']['input']>;
97460
97739
  options?: InputMaybe<JiraIssueSearchOptions>;
97461
97740
  saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
97462
97741
  scope?: InputMaybe<JiraIssueSearchScope>;
@@ -101539,6 +101818,7 @@ export declare type JiraSubscription = {
101539
101818
  onChildIssueAddedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
101540
101819
  onChildIssueCreatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
101541
101820
  onChildIssueRemovedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
101821
+ onChildIssueStatusUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
101542
101822
  onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
101543
101823
  onIssueCreatedByProject?: Maybe<JiraIssue>;
101544
101824
  onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -101617,6 +101897,10 @@ export declare type JiraSubscriptionOnChildIssueRemovedNoEnrichmentArgs = {
101617
101897
  cloudId: Scalars['ID']['input'];
101618
101898
  parentIssueId: Scalars['String']['input'];
101619
101899
  };
101900
+ export declare type JiraSubscriptionOnChildIssueStatusUpdatedNoEnrichmentArgs = {
101901
+ cloudId: Scalars['ID']['input'];
101902
+ parentIssueId: Scalars['String']['input'];
101903
+ };
101620
101904
  export declare type JiraSubscriptionOnChildIssueUpdatedNoEnrichmentArgs = {
101621
101905
  cloudId: Scalars['ID']['input'];
101622
101906
  parentIssueId: Scalars['String']['input'];
@@ -103754,6 +104038,7 @@ export declare type JiraViewProjectKeyAndItemQuery = {
103754
104038
  export declare type JiraViewQueryInput = {
103755
104039
  boardIdAndItemQuery?: InputMaybe<JiraViewBoardIdAndItemQuery>;
103756
104040
  projectKeyAndItemQuery?: InputMaybe<JiraViewProjectKeyAndItemQuery>;
104041
+ subcontainerIdAndItemQuery?: InputMaybe<JiraViewSubcontainerIdAndItemQuery>;
103757
104042
  viewId?: InputMaybe<Scalars['ID']['input']>;
103758
104043
  };
103759
104044
  export declare type JiraViewResult = JiraBoardView | QueryError;
@@ -103761,6 +104046,11 @@ export declare type JiraViewScopeInput = {
103761
104046
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
103762
104047
  projectKeys?: InputMaybe<JiraProjectKeysInput>;
103763
104048
  };
104049
+ export declare type JiraViewSubcontainerIdAndItemQuery = {
104050
+ cloudId: Scalars['ID']['input'];
104051
+ itemId: Scalars['String']['input'];
104052
+ subcontainerId: Scalars['String']['input'];
104053
+ };
103764
104054
  export declare enum JiraVisibilityControlMechanism {
103765
104055
  AppAccessRules = "AppAccessRules",
103766
104056
  DisplayConditions = "DisplayConditions",
@@ -104810,6 +105100,7 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
104810
105100
  }
104811
105101
  export declare type JsmChannelsServiceAgentResolutionPlan = {
104812
105102
  __typename?: 'JsmChannelsServiceAgentResolutionPlan';
105103
+ customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
104813
105104
  planId?: Maybe<Scalars['ID']['output']>;
104814
105105
  runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
104815
105106
  status?: Maybe<JsmChannelsResolutionPlanStatus>;
@@ -108651,6 +108942,12 @@ export declare enum MarketplaceConsoleDevSpaceTier {
108651
108942
  Platinum = "PLATINUM",
108652
108943
  Silver = "SILVER"
108653
108944
  }
108945
+ export declare type MarketplaceConsoleDeveloperNewsletterSubscribeResponse = MarketplaceConsoleDeveloperNewsletterSubscribeResult | MarketplaceConsoleKnownError;
108946
+ export declare type MarketplaceConsoleDeveloperNewsletterSubscribeResult = {
108947
+ __typename?: 'MarketplaceConsoleDeveloperNewsletterSubscribeResult';
108948
+ locale: Scalars['String']['output'];
108949
+ subscribedEmail: Scalars['String']['output'];
108950
+ };
108654
108951
  export declare type MarketplaceConsoleDomainError = MarketplaceConsoleError & {
108655
108952
  __typename?: 'MarketplaceConsoleDomainError';
108656
108953
  code: Scalars['String']['output'];
@@ -109118,6 +109415,7 @@ export declare type MarketplaceConsoleMutationApi = {
109118
109415
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
109119
109416
  makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
109120
109417
  patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
109418
+ subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
109121
109419
  updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
109122
109420
  updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
109123
109421
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
@@ -110861,6 +111159,7 @@ export declare type MarketplaceStoreReviewNodeWithProductListing = MarketplaceSt
110861
111159
  export declare type MarketplaceStoreReviewsByUserResponse = {
110862
111160
  __typename?: 'MarketplaceStoreReviewsByUserResponse';
110863
111161
  id: Scalars['ID']['output'];
111162
+ nextCursor?: Maybe<Scalars['String']['output']>;
110864
111163
  reviews: Array<Maybe<MarketplaceStoreReviewNodeWithProductListing>>;
110865
111164
  };
110866
111165
  export declare type MarketplaceStoreReviewsResponse = {
@@ -114968,12 +115267,14 @@ export declare type Mutation = {
114968
115267
  assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
114969
115268
  assetsDM_deleteAttributePriority?: Maybe<AssetsDmAttributePriorityResponse>;
114970
115269
  assetsDM_deleteCleansingReason?: Maybe<AssetsDmDeleteCleansingReasonResponse>;
115270
+ assetsDM_deleteDataDictionary?: Maybe<AssetsDmDeleteDataDictionaryResponse>;
114971
115271
  assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
114972
115272
  assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
114973
115273
  assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
114974
115274
  assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
114975
115275
  assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
114976
115276
  assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
115277
+ assetsDM_editDataDictionary?: Maybe<AssetsDmEditDataDictionaryResponse>;
114977
115278
  assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
114978
115279
  assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
114979
115280
  assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
@@ -115385,6 +115686,7 @@ export declare type Mutation = {
115385
115686
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
115386
115687
  jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
115387
115688
  jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
115689
+ jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
115388
115690
  jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
115389
115691
  jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
115390
115692
  jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
@@ -116164,6 +116466,11 @@ export declare type MutationAssetsDm_DeleteCleansingReasonArgs = {
116164
116466
  reasonId: Scalars['ID']['input'];
116165
116467
  workspaceId: Scalars['ID']['input'];
116166
116468
  };
116469
+ export declare type MutationAssetsDm_DeleteDataDictionaryArgs = {
116470
+ cloudId: Scalars['ID']['input'];
116471
+ computeDictionaryId: Scalars['ID']['input'];
116472
+ workspaceId: Scalars['ID']['input'];
116473
+ };
116167
116474
  export declare type MutationAssetsDm_DeleteDataSourceArgs = {
116168
116475
  cloudId: Scalars['ID']['input'];
116169
116476
  input: AssetsDmDeleteDataSourceInput;
@@ -116194,6 +116501,11 @@ export declare type MutationAssetsDm_DissociateObjectTagArgs = {
116194
116501
  input: AssetsDmObjectTagDissociateInput;
116195
116502
  workspaceId: Scalars['ID']['input'];
116196
116503
  };
116504
+ export declare type MutationAssetsDm_EditDataDictionaryArgs = {
116505
+ cloudId: Scalars['ID']['input'];
116506
+ payload: AssetsDmEditDataDictionaryInput;
116507
+ workspaceId: Scalars['ID']['input'];
116508
+ };
116197
116509
  export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
116198
116510
  cloudId: Scalars['ID']['input'];
116199
116511
  payload: AssetsDmEditDefaultAttributeMappingInput;
@@ -117613,6 +117925,9 @@ export declare type MutationJira_ClearBoardIssueCardCoverArgs = {
117613
117925
  export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
117614
117926
  input: JiraCreateBoardViewStatusColumnInput;
117615
117927
  };
117928
+ export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
117929
+ input: JiraCreateBoardViewsForWorkflowsInput;
117930
+ };
117616
117931
  export declare type MutationJira_CreateCustomBackgroundArgs = {
117617
117932
  input: JiraCreateCustomBackgroundInput;
117618
117933
  };
@@ -121905,6 +122220,7 @@ export declare type Query = {
121905
122220
  assetsDM_adapters?: Maybe<AssetsDmAdapters>;
121906
122221
  assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
121907
122222
  assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
122223
+ assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
121908
122224
  assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetailResponse>;
121909
122225
  assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
121910
122226
  assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
@@ -121916,7 +122232,6 @@ export declare type Query = {
121916
122232
  assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
121917
122233
  assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
121918
122234
  assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
121919
- assetsDM_dataSourceType?: Maybe<AssetsDmDataSourceTypeResponse>;
121920
122235
  assetsDM_dataSourceTypes?: Maybe<AssetsDmDataSourceTypeConnection>;
121921
122236
  assetsDM_dataSourcesList?: Maybe<AssetsDmDataSourcesList>;
121922
122237
  assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
@@ -121989,6 +122304,7 @@ export declare type Query = {
121989
122304
  ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
121990
122305
  cfo_analytics?: Maybe<CfoAnalyticsResult>;
121991
122306
  channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
122307
+ channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
121992
122308
  channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
121993
122309
  channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
121994
122310
  channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
@@ -122077,6 +122393,7 @@ export declare type Query = {
122077
122393
  confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
122078
122394
  confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
122079
122395
  confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
122396
+ confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
122080
122397
  confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
122081
122398
  confluence_nbmPerfScanResult?: Maybe<ConfluenceNbmPerfScanResult>;
122082
122399
  confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
@@ -122688,6 +123005,7 @@ export declare type Query = {
122688
123005
  stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
122689
123006
  stakeholderComms_getStakeholdersFromSimilarIncidents?: Maybe<StakeholderCommsGetStakeholdersFromSimilarIncidentsResponse>;
122690
123007
  stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
123008
+ stakeholderComms_getSuggestedPublicCommunication?: Maybe<StakeholderCommsPublicCommunicationResponse>;
122691
123009
  stakeholderComms_getTotalSubscribersInCloud?: Maybe<Scalars['Int']['output']>;
122692
123010
  stakeholderComms_getUniqueSubdomainForPage?: Maybe<Scalars['String']['output']>;
122693
123011
  stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
@@ -122793,6 +123111,7 @@ export declare type QueryAdmin_AccessUrlsArgs = {
122793
123111
  first?: InputMaybe<Scalars['Int']['input']>;
122794
123112
  last?: InputMaybe<Scalars['Int']['input']>;
122795
123113
  orgId: Scalars['ID']['input'];
123114
+ resourceId?: InputMaybe<Scalars['ID']['input']>;
122796
123115
  };
122797
123116
  export declare type QueryAdmin_AppModulesArgs = {
122798
123117
  after?: InputMaybe<Scalars['String']['input']>;
@@ -123393,6 +123712,14 @@ export declare type QueryAssetsDm_AttributePriorityArgs = {
123393
123712
  objectAttributePriorityId: Scalars['ID']['input'];
123394
123713
  workspaceId: Scalars['ID']['input'];
123395
123714
  };
123715
+ export declare type QueryAssetsDm_DataDictionariesArgs = {
123716
+ cloudId: Scalars['ID']['input'];
123717
+ filter?: InputMaybe<AssetsDmDataDictionaryFilter>;
123718
+ objectClassId: Scalars['ID']['input'];
123719
+ pageInfo?: InputMaybe<AssetsDmDataDictionaryPageInfoInput>;
123720
+ sortBy?: InputMaybe<AssetsDmDataDictionarySortBy>;
123721
+ workspaceId: Scalars['ID']['input'];
123722
+ };
123396
123723
  export declare type QueryAssetsDm_DataSourceArgs = {
123397
123724
  cloudId: Scalars['ID']['input'];
123398
123725
  dataSourceId: Scalars['ID']['input'];
@@ -123456,12 +123783,6 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
123456
123783
  jobId?: InputMaybe<Scalars['ID']['input']>;
123457
123784
  workspaceId: Scalars['ID']['input'];
123458
123785
  };
123459
- export declare type QueryAssetsDm_DataSourceTypeArgs = {
123460
- cloudId: Scalars['ID']['input'];
123461
- name?: InputMaybe<Scalars['String']['input']>;
123462
- pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
123463
- workspaceId: Scalars['ID']['input'];
123464
- };
123465
123786
  export declare type QueryAssetsDm_DataSourceTypesArgs = {
123466
123787
  after?: InputMaybe<Scalars['String']['input']>;
123467
123788
  cloudId: Scalars['String']['input'];
@@ -123783,6 +124104,10 @@ export declare type QueryCfo_AnalyticsArgs = {
123783
124104
  export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
123784
124105
  request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
123785
124106
  };
124107
+ export declare type QueryChannelPlatform_CreateContactArgs = {
124108
+ request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
124109
+ requestType?: InputMaybe<ChannelPlatformChannelType>;
124110
+ };
123786
124111
  export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
123787
124112
  request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
123788
124113
  };
@@ -124169,6 +124494,10 @@ export declare type QueryConfluence_NbmEligibleTransformersForChainArgs = {
124169
124494
  chain: Scalars['String']['input'];
124170
124495
  cloudId: Scalars['ID']['input'];
124171
124496
  };
124497
+ export declare type QueryConfluence_NbmMostRecentVerificationJobArgs = {
124498
+ cloudId: Scalars['ID']['input'];
124499
+ scanId: Scalars['ID']['input'];
124500
+ };
124172
124501
  export declare type QueryConfluence_NbmPerfReportListArgs = {
124173
124502
  after?: InputMaybe<Scalars['String']['input']>;
124174
124503
  cloudId: Scalars['ID']['input'];
@@ -126607,6 +126936,10 @@ export declare type QueryStakeholderComms_GetStakeholdersFromSimilarIncidentsArg
126607
126936
  export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
126608
126937
  stakeholderAris: Array<Scalars['String']['input']>;
126609
126938
  };
126939
+ export declare type QueryStakeholderComms_GetSuggestedPublicCommunicationArgs = {
126940
+ dataJson?: InputMaybe<Scalars['String']['input']>;
126941
+ promptTemplate?: InputMaybe<Scalars['String']['input']>;
126942
+ };
126610
126943
  export declare type QueryStakeholderComms_GetUniqueSubdomainForPageArgs = {
126611
126944
  pageName: Scalars['String']['input'];
126612
126945
  };
@@ -127515,6 +127848,10 @@ export declare type RadarStringFieldValue = {
127515
127848
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
127516
127849
  value?: Maybe<Scalars['String']['output']>;
127517
127850
  };
127851
+ export declare type RadarSyncData = {
127852
+ __typename?: 'RadarSyncData';
127853
+ lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
127854
+ };
127518
127855
  export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
127519
127856
  __typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
127520
127857
  changes?: Maybe<Array<RadarPositionAllocationChange>>;
@@ -127648,6 +127985,7 @@ export declare type RadarWorkspace = {
127648
127985
  proposalFields: Array<RadarFieldDefinition>;
127649
127986
  proposedMovementFields: Array<RadarFieldDefinition>;
127650
127987
  settings: RadarSettings;
127988
+ syncData?: Maybe<RadarSyncData>;
127651
127989
  teamFields: Array<RadarFieldDefinition>;
127652
127990
  userContext?: Maybe<RadarUserContext>;
127653
127991
  workerFields: Array<RadarFieldDefinition>;
@@ -152137,6 +152475,12 @@ export declare type StakeholderCommsPreferencesInput = {
152137
152475
  sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
152138
152476
  webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
152139
152477
  };
152478
+ export declare type StakeholderCommsPublicCommunicationResponse = {
152479
+ __typename?: 'StakeholderCommsPublicCommunicationResponse';
152480
+ error?: Maybe<Scalars['String']['output']>;
152481
+ message?: Maybe<Scalars['String']['output']>;
152482
+ title?: Maybe<Scalars['String']['output']>;
152483
+ };
152140
152484
  export declare type StakeholderCommsResendInviteInput = {
152141
152485
  aaid?: InputMaybe<Scalars['String']['input']>;
152142
152486
  emailId: Scalars['String']['input'];