@forge/cli-shared 8.17.0-next.5 → 8.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/out/graphql/graphql-types.d.ts +492 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +83 -43
- package/package.json +2 -2
|
@@ -292,11 +292,6 @@ export declare type AvpAnalyticsFormulaColumnInput = {
|
|
|
292
292
|
name: Scalars['String']['input'];
|
|
293
293
|
type: AvpAnalyticsColumnType;
|
|
294
294
|
};
|
|
295
|
-
export declare type AvpAnalyticsGetDataSourceInput = {
|
|
296
|
-
cloudId: Scalars['ID']['input'];
|
|
297
|
-
dataSourceId: Scalars['ID']['input'];
|
|
298
|
-
workspaceId: Scalars['ID']['input'];
|
|
299
|
-
};
|
|
300
295
|
export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
301
296
|
cloudId: Scalars['ID']['input'];
|
|
302
297
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
@@ -304,7 +299,6 @@ export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
|
304
299
|
};
|
|
305
300
|
export declare type AvpAnalyticsGetModelInput = {
|
|
306
301
|
modelId: Scalars['ID']['input'];
|
|
307
|
-
modelType: AvpAnalyticsModelType;
|
|
308
302
|
modelVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
309
303
|
modelViewMode: AvpAnalyticsModelViewMode;
|
|
310
304
|
};
|
|
@@ -366,6 +360,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
366
360
|
};
|
|
367
361
|
export declare type AvpAnalyticsModel = {
|
|
368
362
|
__typename?: 'AVPAnalyticsModel';
|
|
363
|
+
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
369
364
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
370
365
|
description?: Maybe<Scalars['String']['output']>;
|
|
371
366
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
@@ -376,15 +371,41 @@ export declare type AvpAnalyticsModel = {
|
|
|
376
371
|
type: AvpAnalyticsModelType;
|
|
377
372
|
version: Scalars['Int']['output'];
|
|
378
373
|
};
|
|
374
|
+
export declare type AvpAnalyticsModelDataArgs = {
|
|
375
|
+
paginationInput: AvpAnalyticsPaginationInput;
|
|
376
|
+
sortInput: AvpAnalyticsModelDataSortInput;
|
|
377
|
+
};
|
|
379
378
|
export declare type AvpAnalyticsModelConnection = {
|
|
380
379
|
__typename?: 'AVPAnalyticsModelConnection';
|
|
381
380
|
edges?: Maybe<Array<Maybe<AvpAnalyticsModelEdge>>>;
|
|
382
381
|
pageInfo: PageInfo;
|
|
383
382
|
};
|
|
383
|
+
export declare type AvpAnalyticsModelDataConnection = {
|
|
384
|
+
__typename?: 'AVPAnalyticsModelDataConnection';
|
|
385
|
+
edges?: Maybe<Array<AvpAnalyticsModelDataEdge>>;
|
|
386
|
+
pageInfo: PageInfo;
|
|
387
|
+
};
|
|
388
|
+
export declare type AvpAnalyticsModelDataEdge = {
|
|
389
|
+
__typename?: 'AVPAnalyticsModelDataEdge';
|
|
390
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
391
|
+
node: AvpAnalyticsModelDataRow;
|
|
392
|
+
};
|
|
393
|
+
export declare type AvpAnalyticsModelDataRow = {
|
|
394
|
+
__typename?: 'AVPAnalyticsModelDataRow';
|
|
395
|
+
values: Array<AvpAnalyticsModelDataRowValue>;
|
|
396
|
+
};
|
|
397
|
+
export declare type AvpAnalyticsModelDataRowValue = {
|
|
398
|
+
__typename?: 'AVPAnalyticsModelDataRowValue';
|
|
399
|
+
columnName: Scalars['String']['output'];
|
|
400
|
+
columnValue: Scalars['String']['output'];
|
|
401
|
+
};
|
|
384
402
|
export declare type AvpAnalyticsModelDataSort = {
|
|
385
403
|
columnName: Scalars['String']['input'];
|
|
386
404
|
sortType: AvpAnalyticsSortType;
|
|
387
405
|
};
|
|
406
|
+
export declare type AvpAnalyticsModelDataSortInput = {
|
|
407
|
+
sorts: Array<AvpAnalyticsModelDataSort>;
|
|
408
|
+
};
|
|
388
409
|
export declare type AvpAnalyticsModelDataSource = {
|
|
389
410
|
__typename?: 'AVPAnalyticsModelDataSource';
|
|
390
411
|
id: Scalars['ID']['output'];
|
|
@@ -5465,6 +5486,16 @@ export declare enum AgentWorkspaceEligibilityErrorCode {
|
|
|
5465
5486
|
TeamNotFound = "TEAM_NOT_FOUND",
|
|
5466
5487
|
ValidationError = "VALIDATION_ERROR"
|
|
5467
5488
|
}
|
|
5489
|
+
export declare type AgentWorkspaceEligibleGroup = {
|
|
5490
|
+
__typename?: 'AgentWorkspaceEligibleGroup';
|
|
5491
|
+
group?: Maybe<IdentityGroup>;
|
|
5492
|
+
groupAri: Scalars['ID']['output'];
|
|
5493
|
+
};
|
|
5494
|
+
export declare type AgentWorkspaceEligibleGroupsPayload = {
|
|
5495
|
+
__typename?: 'AgentWorkspaceEligibleGroupsPayload';
|
|
5496
|
+
eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
|
|
5497
|
+
groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
|
|
5498
|
+
};
|
|
5468
5499
|
export declare type AgentWorkspaceFindBestMatchAgentsInput = {
|
|
5469
5500
|
cloudId: Scalars['ID']['input'];
|
|
5470
5501
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5478,6 +5509,11 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
|
|
|
5478
5509
|
rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
|
|
5479
5510
|
success: Scalars['Boolean']['output'];
|
|
5480
5511
|
};
|
|
5512
|
+
export declare type AgentWorkspaceGroupTooLarge = {
|
|
5513
|
+
__typename?: 'AgentWorkspaceGroupTooLarge';
|
|
5514
|
+
group?: Maybe<IdentityGroup>;
|
|
5515
|
+
groupAri: Scalars['ID']['output'];
|
|
5516
|
+
};
|
|
5481
5517
|
export declare type AgentWorkspaceHierarchyDefinition = {
|
|
5482
5518
|
__typename?: 'AgentWorkspaceHierarchyDefinition';
|
|
5483
5519
|
catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
|
|
@@ -5916,6 +5952,7 @@ export declare type AgentWorkspaceTeamSchedules = {
|
|
|
5916
5952
|
export declare type AgentWorkspaceTeamSchedulesConnection = {
|
|
5917
5953
|
__typename?: 'AgentWorkspaceTeamSchedulesConnection';
|
|
5918
5954
|
edges: Array<AgentWorkspaceTeamSchedulesEdge>;
|
|
5955
|
+
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
5919
5956
|
pageInfo: AgentWorkspaceTeamsPageInfo;
|
|
5920
5957
|
summary: AgentWorkspaceTeamSchedulesSummary;
|
|
5921
5958
|
};
|
|
@@ -5927,6 +5964,7 @@ export declare type AgentWorkspaceTeamSchedulesEdge = {
|
|
|
5927
5964
|
export declare type AgentWorkspaceTeamSchedulesQueryInput = {
|
|
5928
5965
|
cloudId: Scalars['ID']['input'];
|
|
5929
5966
|
endTime: Scalars['DateTime']['input'];
|
|
5967
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5930
5968
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5931
5969
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5932
5970
|
startTime: Scalars['DateTime']['input'];
|
|
@@ -10460,11 +10498,6 @@ export declare type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
|
10460
10498
|
success: Scalars['Boolean']['output'];
|
|
10461
10499
|
taskId: Scalars['String']['output'];
|
|
10462
10500
|
};
|
|
10463
|
-
export declare enum AssetsVerticalAttributeCategory {
|
|
10464
|
-
Hardwares = "HARDWARES",
|
|
10465
|
-
Models = "MODELS",
|
|
10466
|
-
Stockrooms = "STOCKROOMS"
|
|
10467
|
-
}
|
|
10468
10501
|
export declare type AssetsVerticalAttributeDetailsInput = {
|
|
10469
10502
|
otId: Scalars['String']['input'];
|
|
10470
10503
|
otaId: Scalars['String']['input'];
|
|
@@ -10475,7 +10508,7 @@ export declare type AssetsVerticalAttributeValuesFailure = {
|
|
|
10475
10508
|
};
|
|
10476
10509
|
export declare type AssetsVerticalAttributeValuesInput = {
|
|
10477
10510
|
attributes: Array<AssetsVerticalAttributeDetailsInput>;
|
|
10478
|
-
category:
|
|
10511
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10479
10512
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
10480
10513
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
10481
10514
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -10518,7 +10551,7 @@ export declare type AssetsVerticalCountByStatus = {
|
|
|
10518
10551
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
10519
10552
|
};
|
|
10520
10553
|
export declare type AssetsVerticalCountByStatusInput = {
|
|
10521
|
-
category:
|
|
10554
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10522
10555
|
filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
|
|
10523
10556
|
statusField: Scalars['String']['input'];
|
|
10524
10557
|
statuses: Array<Scalars['String']['input']>;
|
|
@@ -10613,6 +10646,11 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
10613
10646
|
name?: Maybe<Scalars['String']['output']>;
|
|
10614
10647
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10615
10648
|
};
|
|
10649
|
+
export declare enum AssetsVerticalObjectTypeCategory {
|
|
10650
|
+
Hardwares = "HARDWARES",
|
|
10651
|
+
Models = "MODELS",
|
|
10652
|
+
Stockrooms = "STOCKROOMS"
|
|
10653
|
+
}
|
|
10616
10654
|
export declare type AssetsVerticalObjectsFilterCondition = {
|
|
10617
10655
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
10618
10656
|
operator?: InputMaybe<AssetsVerticalObjectsFilterOperator>;
|
|
@@ -10623,6 +10661,26 @@ export declare enum AssetsVerticalObjectsFilterOperator {
|
|
|
10623
10661
|
In = "IN",
|
|
10624
10662
|
Like = "LIKE"
|
|
10625
10663
|
}
|
|
10664
|
+
export declare type AssetsVerticalObjectsInput = {
|
|
10665
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
10666
|
+
filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
|
|
10667
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
10668
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
10669
|
+
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
10670
|
+
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
10671
|
+
};
|
|
10672
|
+
export declare enum AssetsVerticalObjectsOrderDirection {
|
|
10673
|
+
Asc = "ASC",
|
|
10674
|
+
Desc = "DESC"
|
|
10675
|
+
}
|
|
10676
|
+
export declare type AssetsVerticalObjectsResult = AssetsVerticalObjectsSuccess | QueryError;
|
|
10677
|
+
export declare type AssetsVerticalObjectsSuccess = {
|
|
10678
|
+
__typename?: 'AssetsVerticalObjectsSuccess';
|
|
10679
|
+
objects?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
10680
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
10681
|
+
pageInfo?: Maybe<PageInfo>;
|
|
10682
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10683
|
+
};
|
|
10626
10684
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10627
10685
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10628
10686
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -13624,6 +13682,17 @@ export declare type CcpQuoteUpcomingBillsLine = {
|
|
|
13624
13682
|
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
13625
13683
|
total?: Maybe<Scalars['Float']['output']>;
|
|
13626
13684
|
};
|
|
13685
|
+
export declare type CcpRecommendCollectionExperienceCapability = {
|
|
13686
|
+
__typename?: 'CcpRecommendCollectionExperienceCapability';
|
|
13687
|
+
createCollection?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
13688
|
+
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
13689
|
+
offering?: Maybe<CcpOffering>;
|
|
13690
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13691
|
+
};
|
|
13692
|
+
export declare type CcpRecommendCollectionExperienceCapabilityCreateCollectionArgs = {
|
|
13693
|
+
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
13694
|
+
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
13695
|
+
};
|
|
13627
13696
|
export declare type CcpRelationshipCardinality = {
|
|
13628
13697
|
__typename?: 'CcpRelationshipCardinality';
|
|
13629
13698
|
max?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13673,10 +13742,15 @@ export declare enum CcpRelationshipType {
|
|
|
13673
13742
|
export declare type CcpRootExperienceCapabilities = {
|
|
13674
13743
|
__typename?: 'CcpRootExperienceCapabilities';
|
|
13675
13744
|
createEntitlement?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
13745
|
+
recommendCollection?: Maybe<CcpRecommendCollectionExperienceCapability>;
|
|
13676
13746
|
};
|
|
13677
13747
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
13678
13748
|
input: CcpCreateEntitlementInput;
|
|
13679
13749
|
};
|
|
13750
|
+
export declare type CcpRootExperienceCapabilitiesRecommendCollectionArgs = {
|
|
13751
|
+
entitlementIds: Array<Scalars['ID']['input']>;
|
|
13752
|
+
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
13753
|
+
};
|
|
13680
13754
|
export declare type CcpScheduledChanges = {
|
|
13681
13755
|
__typename?: 'CcpScheduledChanges';
|
|
13682
13756
|
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
@@ -35404,6 +35478,7 @@ export declare type CustomerServiceExternalStatus = {
|
|
|
35404
35478
|
__typename?: 'CustomerServiceExternalStatus';
|
|
35405
35479
|
externalLabel: Scalars['String']['output'];
|
|
35406
35480
|
jiraStatusIds: Array<Scalars['String']['output']>;
|
|
35481
|
+
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
35407
35482
|
};
|
|
35408
35483
|
export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
|
|
35409
35484
|
export declare type CustomerServiceExternalStatusesResponse = {
|
|
@@ -36072,6 +36147,7 @@ export declare type CustomerServiceStatusMapping = {
|
|
|
36072
36147
|
__typename?: 'CustomerServiceStatusMapping';
|
|
36073
36148
|
externalLabel: Scalars['String']['output'];
|
|
36074
36149
|
jiraStatusId: Scalars['String']['output'];
|
|
36150
|
+
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
36075
36151
|
};
|
|
36076
36152
|
export declare type CustomerServiceStatusMappingConfig = {
|
|
36077
36153
|
__typename?: 'CustomerServiceStatusMappingConfig';
|
|
@@ -36082,6 +36158,7 @@ export declare type CustomerServiceStatusMappingConfig = {
|
|
|
36082
36158
|
export declare type CustomerServiceStatusMappingInput = {
|
|
36083
36159
|
externalLabel: Scalars['String']['input'];
|
|
36084
36160
|
jiraStatusId: Scalars['String']['input'];
|
|
36161
|
+
statusCategory?: InputMaybe<Scalars['String']['input']>;
|
|
36085
36162
|
};
|
|
36086
36163
|
export declare type CustomerServiceStatusMappingQueryResult = CustomerServiceStatusMappingConfig | QueryError;
|
|
36087
36164
|
export declare type CustomerServiceStatusMappingUpdateInput = {
|
|
@@ -39855,6 +39932,7 @@ export declare enum EcosystemAppsInstalledInContextsSortKey {
|
|
|
39855
39932
|
}
|
|
39856
39933
|
export declare type EcosystemConnectApp = {
|
|
39857
39934
|
__typename?: 'EcosystemConnectApp';
|
|
39935
|
+
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
39858
39936
|
description: Scalars['String']['output'];
|
|
39859
39937
|
distributionStatus: Scalars['String']['output'];
|
|
39860
39938
|
id: Scalars['ID']['output'];
|
|
@@ -98497,6 +98575,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
98497
98575
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
98498
98576
|
};
|
|
98499
98577
|
export declare type HelpCenterCreateInput = {
|
|
98578
|
+
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
98500
98579
|
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
98501
98580
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
98502
98581
|
name: HelpCenterNameInput;
|
|
@@ -100074,6 +100153,7 @@ export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData
|
|
|
100074
100153
|
export declare enum HelpObjectStoreEntityTypes {
|
|
100075
100154
|
ExtResources = "EXT_RESOURCES",
|
|
100076
100155
|
KbArticles = "KB_ARTICLES",
|
|
100156
|
+
KbCategories = "KB_CATEGORIES",
|
|
100077
100157
|
PortalGroups = "PORTAL_GROUPS",
|
|
100078
100158
|
RequestTypes = "REQUEST_TYPES"
|
|
100079
100159
|
}
|
|
@@ -100111,6 +100191,32 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
100111
100191
|
Portal = "PORTAL",
|
|
100112
100192
|
RequestForm = "REQUEST_FORM"
|
|
100113
100193
|
}
|
|
100194
|
+
export declare type HelpObjectStoreKbCategories = {
|
|
100195
|
+
__typename?: 'HelpObjectStoreKbCategories';
|
|
100196
|
+
articles?: Maybe<Array<HelpObjectStoreKbCategoriesArticle>>;
|
|
100197
|
+
id: Scalars['ID']['output'];
|
|
100198
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type HelpObjectStoreKbCategoriesArticle = {
|
|
100201
|
+
__typename?: 'HelpObjectStoreKbCategoriesArticle';
|
|
100202
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
100203
|
+
displayLink?: Maybe<Scalars['String']['output']>;
|
|
100204
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
100205
|
+
id: Scalars['ID']['output'];
|
|
100206
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100207
|
+
};
|
|
100208
|
+
export declare type HelpObjectStoreKbCategoriesConnection = {
|
|
100209
|
+
__typename?: 'HelpObjectStoreKbCategoriesConnection';
|
|
100210
|
+
edges?: Maybe<Array<HelpObjectStoreKbCategoriesEdge>>;
|
|
100211
|
+
pageInfo: PageInfo;
|
|
100212
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100213
|
+
};
|
|
100214
|
+
export declare type HelpObjectStoreKbCategoriesEdge = {
|
|
100215
|
+
__typename?: 'HelpObjectStoreKbCategoriesEdge';
|
|
100216
|
+
cursor: Scalars['String']['output'];
|
|
100217
|
+
node?: Maybe<HelpObjectStoreKbCategories>;
|
|
100218
|
+
};
|
|
100219
|
+
export declare type HelpObjectStoreKbCategoriesResult = HelpObjectStoreKbCategoriesConnection | QueryError;
|
|
100114
100220
|
export declare type HelpObjectStoreMutationApi = {
|
|
100115
100221
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
100116
100222
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
@@ -100205,6 +100311,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
100205
100311
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
100206
100312
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
100207
100313
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
100314
|
+
kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
|
|
100208
100315
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
100209
100316
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
100210
100317
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
@@ -100220,6 +100327,10 @@ export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
|
100220
100327
|
input: HelpObjectStoreProductEntityInput;
|
|
100221
100328
|
sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
|
|
100222
100329
|
};
|
|
100330
|
+
export declare type HelpObjectStoreQueryApiKbCategoriesArgs = {
|
|
100331
|
+
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100332
|
+
input: HelpObjectStoreProductEntityInput;
|
|
100333
|
+
};
|
|
100223
100334
|
export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
100224
100335
|
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
100225
100336
|
input: HelpObjectStoreProductEntityInput;
|
|
@@ -101776,6 +101887,8 @@ export declare type JiraAggregatedStatusFieldAggregatedStatusCategoryArgs = {
|
|
|
101776
101887
|
export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineVirtualField & Node & {
|
|
101777
101888
|
__typename?: 'JiraAggregatedTimelineField';
|
|
101778
101889
|
aggregatedEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101890
|
+
aggregatedSprintEndDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101891
|
+
aggregatedSprintStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101779
101892
|
aggregatedStartDateViewField?: Maybe<JiraAggregatedDate>;
|
|
101780
101893
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
101781
101894
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -101791,9 +101904,19 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraTimelineV
|
|
|
101791
101904
|
type: Scalars['String']['output'];
|
|
101792
101905
|
};
|
|
101793
101906
|
export declare type JiraAggregatedTimelineFieldAggregatedEndDateViewFieldArgs = {
|
|
101907
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101908
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101909
|
+
};
|
|
101910
|
+
export declare type JiraAggregatedTimelineFieldAggregatedSprintEndDateViewFieldArgs = {
|
|
101911
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101912
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101913
|
+
};
|
|
101914
|
+
export declare type JiraAggregatedTimelineFieldAggregatedSprintStartDateViewFieldArgs = {
|
|
101915
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101794
101916
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101795
101917
|
};
|
|
101796
101918
|
export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs = {
|
|
101919
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
101797
101920
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
101798
101921
|
};
|
|
101799
101922
|
export declare type JiraAiAgentSession = {
|
|
@@ -105227,7 +105350,7 @@ export declare enum JiraCommentSortField {
|
|
|
105227
105350
|
}
|
|
105228
105351
|
export declare type JiraCommentSortInput = {
|
|
105229
105352
|
field: JiraCommentSortField;
|
|
105230
|
-
order
|
|
105353
|
+
order?: InputMaybe<SortDirection>;
|
|
105231
105354
|
};
|
|
105232
105355
|
export declare type JiraCommentSummary = {
|
|
105233
105356
|
__typename?: 'JiraCommentSummary';
|
|
@@ -107157,6 +107280,15 @@ export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
|
|
|
107157
107280
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
107158
107281
|
viewId: Scalars['ID']['input'];
|
|
107159
107282
|
};
|
|
107283
|
+
export declare type JiraDisconnectTownsquareProjectPayload = Payload & {
|
|
107284
|
+
__typename?: 'JiraDisconnectTownsquareProjectPayload';
|
|
107285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107286
|
+
success: Scalars['Boolean']['output'];
|
|
107287
|
+
};
|
|
107288
|
+
export declare type JiraDisconnectTownsquareProjectToSpaceInput = {
|
|
107289
|
+
spaceAri: Scalars['ID']['input'];
|
|
107290
|
+
townsquareProjectAri: Scalars['String']['input'];
|
|
107291
|
+
};
|
|
107160
107292
|
export declare type JiraDismissAiAgentSessionInput = {
|
|
107161
107293
|
agentIdentityAccountId: Scalars['String']['input'];
|
|
107162
107294
|
cloudId: Scalars['ID']['input'];
|
|
@@ -107242,6 +107374,15 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
107242
107374
|
export declare type JiraDurationFieldInput = {
|
|
107243
107375
|
originalEstimateField?: InputMaybe<Scalars['String']['input']>;
|
|
107244
107376
|
};
|
|
107377
|
+
export declare enum JiraDurationUnit {
|
|
107378
|
+
Days = "DAYS",
|
|
107379
|
+
Hours = "HOURS",
|
|
107380
|
+
Minutes = "MINUTES",
|
|
107381
|
+
Months = "MONTHS",
|
|
107382
|
+
Seconds = "SECONDS",
|
|
107383
|
+
Weeks = "WEEKS",
|
|
107384
|
+
Years = "YEARS"
|
|
107385
|
+
}
|
|
107245
107386
|
export declare type JiraEchoWhereInput = {
|
|
107246
107387
|
delayMs?: InputMaybe<Scalars['Int']['input']>;
|
|
107247
107388
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -107506,6 +107647,23 @@ export declare type JiraField = {
|
|
|
107506
107647
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
107507
107648
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
107508
107649
|
};
|
|
107650
|
+
export declare type JiraFieldAggregationByBoardQuery = {
|
|
107651
|
+
boardId: Scalars['Long']['input'];
|
|
107652
|
+
cloudId: Scalars['ID']['input'];
|
|
107653
|
+
};
|
|
107654
|
+
export declare type JiraFieldAggregationByProjectQuery = {
|
|
107655
|
+
cloudId: Scalars['ID']['input'];
|
|
107656
|
+
projectIdOrKey: JiraFieldAggregationProjectIdOrKeyInput;
|
|
107657
|
+
};
|
|
107658
|
+
export declare type JiraFieldAggregationProjectIdOrKeyInput = {
|
|
107659
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
107660
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
107661
|
+
};
|
|
107662
|
+
export declare type JiraFieldAggregationQueryInput = {
|
|
107663
|
+
boardQuery?: InputMaybe<JiraFieldAggregationByBoardQuery>;
|
|
107664
|
+
projectQuery?: InputMaybe<JiraFieldAggregationByProjectQuery>;
|
|
107665
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
107666
|
+
};
|
|
107509
107667
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
107510
107668
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
107511
107669
|
field?: Maybe<JiraField>;
|
|
@@ -111826,6 +111984,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
111826
111984
|
Absolute = "ABSOLUTE",
|
|
111827
111985
|
Relative = "RELATIVE"
|
|
111828
111986
|
}
|
|
111987
|
+
export declare enum JiraIssueViewUwsTabPreference {
|
|
111988
|
+
ChildItems = "CHILD_ITEMS",
|
|
111989
|
+
LinkedWorkItems = "LINKED_WORK_ITEMS"
|
|
111990
|
+
}
|
|
111829
111991
|
export declare enum JiraIssueViewUserPreferenceLayoutType {
|
|
111830
111992
|
Custom = "CUSTOM",
|
|
111831
111993
|
Discussion = "DISCUSSION",
|
|
@@ -113647,6 +113809,7 @@ export declare type JiraMutation = {
|
|
|
113647
113809
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113648
113810
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113649
113811
|
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
113812
|
+
disconnectTownsquareProjectToSpace?: Maybe<JiraDisconnectTownsquareProjectPayload>;
|
|
113650
113813
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
113651
113814
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
113652
113815
|
forge: JiraForgeMutation;
|
|
@@ -114053,6 +114216,9 @@ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfiguratio
|
|
|
114053
114216
|
export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
114054
114217
|
input: JiraDiscardUserViewConfigInput;
|
|
114055
114218
|
};
|
|
114219
|
+
export declare type JiraMutationDisconnectTownsquareProjectToSpaceArgs = {
|
|
114220
|
+
input: JiraDisconnectTownsquareProjectToSpaceInput;
|
|
114221
|
+
};
|
|
114056
114222
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
114057
114223
|
cloudId: Scalars['ID']['input'];
|
|
114058
114224
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -114854,6 +115020,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
114854
115020
|
export declare type JiraNumberFieldFormatConfig = {
|
|
114855
115021
|
__typename?: 'JiraNumberFieldFormatConfig';
|
|
114856
115022
|
decimalSeparator?: Maybe<JiraDecimalSeparator>;
|
|
115023
|
+
durationUnits?: Maybe<Array<JiraDurationUnit>>;
|
|
114857
115024
|
formatDecimals?: Maybe<Scalars['Int']['output']>;
|
|
114858
115025
|
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
114859
115026
|
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
@@ -114861,6 +115028,7 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
114861
115028
|
};
|
|
114862
115029
|
export declare type JiraNumberFieldFormatConfigInput = {
|
|
114863
115030
|
decimalSeparator?: InputMaybe<JiraDecimalSeparator>;
|
|
115031
|
+
durationUnits?: InputMaybe<Array<JiraDurationUnit>>;
|
|
114864
115032
|
formatDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
114865
115033
|
formatStyle: JiraNumberFieldFormatStyle;
|
|
114866
115034
|
formatUnit?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -114869,6 +115037,7 @@ export declare type JiraNumberFieldFormatConfigInput = {
|
|
|
114869
115037
|
export declare enum JiraNumberFieldFormatStyle {
|
|
114870
115038
|
Currency = "CURRENCY",
|
|
114871
115039
|
Decimal = "DECIMAL",
|
|
115040
|
+
Duration = "DURATION",
|
|
114872
115041
|
Percent = "PERCENT",
|
|
114873
115042
|
Unit = "UNIT"
|
|
114874
115043
|
}
|
|
@@ -124231,6 +124400,7 @@ export declare type JiraUserPreferences = {
|
|
|
124231
124400
|
issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
124232
124401
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
124233
124402
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
124403
|
+
issueViewUWSTabPreference?: Maybe<JiraIssueViewUwsTabPreference>;
|
|
124234
124404
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
124235
124405
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
124236
124406
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
@@ -124263,6 +124433,9 @@ export declare type JiraUserPreferencesIssueViewHiddenFieldsMenuStateArgs = {
|
|
|
124263
124433
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
124264
124434
|
projectKey: Scalars['String']['input'];
|
|
124265
124435
|
};
|
|
124436
|
+
export declare type JiraUserPreferencesIssueViewUwsTabPreferenceArgs = {
|
|
124437
|
+
projectKey: Scalars['String']['input'];
|
|
124438
|
+
};
|
|
124266
124439
|
export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
|
|
124267
124440
|
projectKey: Scalars['String']['input'];
|
|
124268
124441
|
};
|
|
@@ -127766,9 +127939,9 @@ export declare type KitsuneSnippet = Node & {
|
|
|
127766
127939
|
createdAt: Scalars['DateTime']['output'];
|
|
127767
127940
|
creator?: Maybe<User>;
|
|
127768
127941
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
127769
|
-
feedback
|
|
127942
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
127770
127943
|
id: Scalars['ID']['output'];
|
|
127771
|
-
insight
|
|
127944
|
+
insight?: Maybe<KitsuneInsight>;
|
|
127772
127945
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
127773
127946
|
};
|
|
127774
127947
|
export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
@@ -133169,6 +133342,10 @@ export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
|
133169
133342
|
export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
|
|
133170
133343
|
input: MarketplaceStoreUpdateUserPreferencesInput;
|
|
133171
133344
|
};
|
|
133345
|
+
export declare type MarketplaceStoreNavigation = {
|
|
133346
|
+
__typename?: 'MarketplaceStoreNavigation';
|
|
133347
|
+
sideNavigation: MarketplaceStoreSideNavigationConfig;
|
|
133348
|
+
};
|
|
133172
133349
|
export declare enum MarketplaceStoreObjectType {
|
|
133173
133350
|
App = "APP"
|
|
133174
133351
|
}
|
|
@@ -133303,6 +133480,7 @@ export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
|
133303
133480
|
export declare type MarketplaceStorePersonalisedContextAndLayoutResponse = {
|
|
133304
133481
|
__typename?: 'MarketplaceStorePersonalisedContextAndLayoutResponse';
|
|
133305
133482
|
context: MarketplaceStorePersonalisationContext;
|
|
133483
|
+
navigation?: Maybe<MarketplaceStoreNavigation>;
|
|
133306
133484
|
sections: Array<MarketplaceStoreLayoutSection>;
|
|
133307
133485
|
};
|
|
133308
133486
|
export declare type MarketplaceStorePersonalisedContextAndLayoutResponseSectionsArgs = {
|
|
@@ -133679,6 +133857,18 @@ export declare type MarketplaceStoreServiceProvider = {
|
|
|
133679
133857
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
133680
133858
|
isAppServiceProvider: MarketplaceStoreAcceptableResponse;
|
|
133681
133859
|
};
|
|
133860
|
+
export declare type MarketplaceStoreSideNavigationConfig = {
|
|
133861
|
+
__typename?: 'MarketplaceStoreSideNavigationConfig';
|
|
133862
|
+
items: Array<MarketplaceStoreSideNavigationItem>;
|
|
133863
|
+
};
|
|
133864
|
+
export declare type MarketplaceStoreSideNavigationItem = {
|
|
133865
|
+
__typename?: 'MarketplaceStoreSideNavigationItem';
|
|
133866
|
+
featureGate?: Maybe<Scalars['String']['output']>;
|
|
133867
|
+
iconKey: Scalars['String']['output'];
|
|
133868
|
+
key: Scalars['String']['output'];
|
|
133869
|
+
name: Scalars['String']['output'];
|
|
133870
|
+
path: Scalars['String']['output'];
|
|
133871
|
+
};
|
|
133682
133872
|
export declare type MarketplaceStoreSiteDetailsInput = {
|
|
133683
133873
|
cloudId: Scalars['String']['input'];
|
|
133684
133874
|
product: MarketplaceStoreSiteProduct;
|
|
@@ -133942,6 +134132,52 @@ export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
|
133942
134132
|
mappedStatusKey: Scalars['String']['output'];
|
|
133943
134133
|
providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
|
|
133944
134134
|
};
|
|
134135
|
+
export declare type MercuryBenefitItem = Node & {
|
|
134136
|
+
__typename?: 'MercuryBenefitItem';
|
|
134137
|
+
benefitType?: Maybe<MercuryBenefitType>;
|
|
134138
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
134139
|
+
id: Scalars['ID']['output'];
|
|
134140
|
+
name: Scalars['String']['output'];
|
|
134141
|
+
};
|
|
134142
|
+
export declare type MercuryBenefitItemConnection = {
|
|
134143
|
+
__typename?: 'MercuryBenefitItemConnection';
|
|
134144
|
+
edges?: Maybe<Array<MercuryBenefitItemEdge>>;
|
|
134145
|
+
pageInfo: PageInfo;
|
|
134146
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
134147
|
+
};
|
|
134148
|
+
export declare type MercuryBenefitItemEdge = {
|
|
134149
|
+
__typename?: 'MercuryBenefitItemEdge';
|
|
134150
|
+
cursor: Scalars['String']['output'];
|
|
134151
|
+
node?: Maybe<MercuryBenefitItem>;
|
|
134152
|
+
};
|
|
134153
|
+
export declare type MercuryBenefitItemSort = {
|
|
134154
|
+
field: MercuryBenefitItemSortField;
|
|
134155
|
+
order: SortOrder;
|
|
134156
|
+
};
|
|
134157
|
+
export declare enum MercuryBenefitItemSortField {
|
|
134158
|
+
Name = "NAME"
|
|
134159
|
+
}
|
|
134160
|
+
export declare type MercuryBenefitPeriodValue = Node & {
|
|
134161
|
+
__typename?: 'MercuryBenefitPeriodValue';
|
|
134162
|
+
amount?: Maybe<MercuryMoney>;
|
|
134163
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
134164
|
+
id: Scalars['ID']['output'];
|
|
134165
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
134166
|
+
};
|
|
134167
|
+
export declare type MercuryBenefitType = Node & {
|
|
134168
|
+
__typename?: 'MercuryBenefitType';
|
|
134169
|
+
createdBy?: Maybe<User>;
|
|
134170
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
134171
|
+
id: Scalars['ID']['output'];
|
|
134172
|
+
name: Scalars['String']['output'];
|
|
134173
|
+
references?: Maybe<MercuryBenefitTypeReferences>;
|
|
134174
|
+
updatedBy?: Maybe<User>;
|
|
134175
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
134176
|
+
};
|
|
134177
|
+
export declare type MercuryBenefitTypeReferences = {
|
|
134178
|
+
__typename?: 'MercuryBenefitTypeReferences';
|
|
134179
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
134180
|
+
};
|
|
133945
134181
|
export declare type MercuryBooleanCustomField = MercuryCustomField & {
|
|
133946
134182
|
__typename?: 'MercuryBooleanCustomField';
|
|
133947
134183
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -134104,6 +134340,8 @@ export declare type MercuryChangeProposalFundSummary = {
|
|
|
134104
134340
|
export declare type MercuryChangeProposalFunding = {
|
|
134105
134341
|
__typename?: 'MercuryChangeProposalFunding';
|
|
134106
134342
|
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
134343
|
+
targetBenefit?: Maybe<Scalars['BigDecimal']['output']>;
|
|
134344
|
+
targetRoi?: Maybe<Scalars['Float']['output']>;
|
|
134107
134345
|
};
|
|
134108
134346
|
export declare type MercuryChangeProposalImpact = {
|
|
134109
134347
|
__typename?: 'MercuryChangeProposalImpact';
|
|
@@ -134388,6 +134626,38 @@ export declare type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
|
134388
134626
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
134389
134627
|
name: Scalars['String']['input'];
|
|
134390
134628
|
};
|
|
134629
|
+
export declare type MercuryCreateBenefitItemInput = {
|
|
134630
|
+
focusAreaId: Scalars['ID']['input'];
|
|
134631
|
+
name: Scalars['String']['input'];
|
|
134632
|
+
};
|
|
134633
|
+
export declare type MercuryCreateBenefitItemPayload = Payload & {
|
|
134634
|
+
__typename?: 'MercuryCreateBenefitItemPayload';
|
|
134635
|
+
createdBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
134636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134637
|
+
success: Scalars['Boolean']['output'];
|
|
134638
|
+
};
|
|
134639
|
+
export declare type MercuryCreateBenefitPeriodValueInput = {
|
|
134640
|
+
amount: Scalars['String']['input'];
|
|
134641
|
+
benefitItemId: Scalars['ID']['input'];
|
|
134642
|
+
financialVersionId: Scalars['ID']['input'];
|
|
134643
|
+
yearMonth: Scalars['String']['input'];
|
|
134644
|
+
};
|
|
134645
|
+
export declare type MercuryCreateBenefitPeriodValuePayload = Payload & {
|
|
134646
|
+
__typename?: 'MercuryCreateBenefitPeriodValuePayload';
|
|
134647
|
+
createdBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
|
|
134648
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134649
|
+
success: Scalars['Boolean']['output'];
|
|
134650
|
+
};
|
|
134651
|
+
export declare type MercuryCreateBenefitTypeInput = {
|
|
134652
|
+
cloudId: Scalars['ID']['input'];
|
|
134653
|
+
name: Scalars['String']['input'];
|
|
134654
|
+
};
|
|
134655
|
+
export declare type MercuryCreateBenefitTypePayload = Payload & {
|
|
134656
|
+
__typename?: 'MercuryCreateBenefitTypePayload';
|
|
134657
|
+
createdBenefitType?: Maybe<MercuryBenefitType>;
|
|
134658
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134659
|
+
success: Scalars['Boolean']['output'];
|
|
134660
|
+
};
|
|
134391
134661
|
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
134392
134662
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
134393
134663
|
};
|
|
@@ -134775,6 +135045,30 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
|
|
|
134775
135045
|
errors?: Maybe<Array<MutationError>>;
|
|
134776
135046
|
success: Scalars['Boolean']['output'];
|
|
134777
135047
|
};
|
|
135048
|
+
export declare type MercuryDeleteBenefitItemInput = {
|
|
135049
|
+
id: Scalars['ID']['input'];
|
|
135050
|
+
};
|
|
135051
|
+
export declare type MercuryDeleteBenefitItemPayload = Payload & {
|
|
135052
|
+
__typename?: 'MercuryDeleteBenefitItemPayload';
|
|
135053
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135054
|
+
success: Scalars['Boolean']['output'];
|
|
135055
|
+
};
|
|
135056
|
+
export declare type MercuryDeleteBenefitPeriodValueInput = {
|
|
135057
|
+
id: Scalars['ID']['input'];
|
|
135058
|
+
};
|
|
135059
|
+
export declare type MercuryDeleteBenefitPeriodValuePayload = Payload & {
|
|
135060
|
+
__typename?: 'MercuryDeleteBenefitPeriodValuePayload';
|
|
135061
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135062
|
+
success: Scalars['Boolean']['output'];
|
|
135063
|
+
};
|
|
135064
|
+
export declare type MercuryDeleteBenefitTypeInput = {
|
|
135065
|
+
id: Scalars['ID']['input'];
|
|
135066
|
+
};
|
|
135067
|
+
export declare type MercuryDeleteBenefitTypePayload = Payload & {
|
|
135068
|
+
__typename?: 'MercuryDeleteBenefitTypePayload';
|
|
135069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
135070
|
+
success: Scalars['Boolean']['output'];
|
|
135071
|
+
};
|
|
134778
135072
|
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
134779
135073
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
134780
135074
|
id: Scalars['ID']['input'];
|
|
@@ -135621,16 +135915,25 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
135621
135915
|
};
|
|
135622
135916
|
export declare type MercuryFundsMutationApi = {
|
|
135623
135917
|
__typename?: 'MercuryFundsMutationApi';
|
|
135918
|
+
createBenefitItem?: Maybe<MercuryCreateBenefitItemPayload>;
|
|
135919
|
+
createBenefitPeriodValue?: Maybe<MercuryCreateBenefitPeriodValuePayload>;
|
|
135920
|
+
createBenefitType?: Maybe<MercuryCreateBenefitTypePayload>;
|
|
135624
135921
|
createCostItem?: Maybe<MercuryCreateCostItemPayload>;
|
|
135625
135922
|
createCostPeriodValue?: Maybe<MercuryCreateCostPeriodValuePayload>;
|
|
135626
135923
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
135627
135924
|
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
135628
135925
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
135926
|
+
deleteBenefitItem?: Maybe<MercuryDeleteBenefitItemPayload>;
|
|
135927
|
+
deleteBenefitPeriodValue?: Maybe<MercuryDeleteBenefitPeriodValuePayload>;
|
|
135928
|
+
deleteBenefitType?: Maybe<MercuryDeleteBenefitTypePayload>;
|
|
135629
135929
|
deleteCostItem?: Maybe<MercuryDeleteCostItemPayload>;
|
|
135630
135930
|
deleteCostPeriodValue?: Maybe<MercuryDeleteCostPeriodValuePayload>;
|
|
135631
135931
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
135632
135932
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
135633
135933
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
135934
|
+
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
135935
|
+
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
135936
|
+
updateBenefitTypeName?: Maybe<MercuryUpdateBenefitTypePayload>;
|
|
135634
135937
|
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
135635
135938
|
updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
|
|
135636
135939
|
updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
|
|
@@ -135639,6 +135942,15 @@ export declare type MercuryFundsMutationApi = {
|
|
|
135639
135942
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
135640
135943
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
135641
135944
|
};
|
|
135945
|
+
export declare type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
135946
|
+
input: MercuryCreateBenefitItemInput;
|
|
135947
|
+
};
|
|
135948
|
+
export declare type MercuryFundsMutationApiCreateBenefitPeriodValueArgs = {
|
|
135949
|
+
input: MercuryCreateBenefitPeriodValueInput;
|
|
135950
|
+
};
|
|
135951
|
+
export declare type MercuryFundsMutationApiCreateBenefitTypeArgs = {
|
|
135952
|
+
input: MercuryCreateBenefitTypeInput;
|
|
135953
|
+
};
|
|
135642
135954
|
export declare type MercuryFundsMutationApiCreateCostItemArgs = {
|
|
135643
135955
|
input: MercuryCreateCostItemInput;
|
|
135644
135956
|
};
|
|
@@ -135654,6 +135966,15 @@ export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs
|
|
|
135654
135966
|
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
135655
135967
|
input: MercuryCreateInvestmentCategoryInput;
|
|
135656
135968
|
};
|
|
135969
|
+
export declare type MercuryFundsMutationApiDeleteBenefitItemArgs = {
|
|
135970
|
+
input: MercuryDeleteBenefitItemInput;
|
|
135971
|
+
};
|
|
135972
|
+
export declare type MercuryFundsMutationApiDeleteBenefitPeriodValueArgs = {
|
|
135973
|
+
input: MercuryDeleteBenefitPeriodValueInput;
|
|
135974
|
+
};
|
|
135975
|
+
export declare type MercuryFundsMutationApiDeleteBenefitTypeArgs = {
|
|
135976
|
+
input: MercuryDeleteBenefitTypeInput;
|
|
135977
|
+
};
|
|
135657
135978
|
export declare type MercuryFundsMutationApiDeleteCostItemArgs = {
|
|
135658
135979
|
input: MercuryDeleteCostItemInput;
|
|
135659
135980
|
};
|
|
@@ -135669,6 +135990,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
135669
135990
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
135670
135991
|
input: MercuryUpdateActiveCurrencyInput;
|
|
135671
135992
|
};
|
|
135993
|
+
export declare type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
135994
|
+
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
135995
|
+
};
|
|
135996
|
+
export declare type MercuryFundsMutationApiUpdateBenefitPeriodValueAmountArgs = {
|
|
135997
|
+
input: MercuryUpdateBenefitPeriodValueAmountInput;
|
|
135998
|
+
};
|
|
135999
|
+
export declare type MercuryFundsMutationApiUpdateBenefitTypeNameArgs = {
|
|
136000
|
+
input: MercuryUpdateBenefitTypeNameInput;
|
|
136001
|
+
};
|
|
135672
136002
|
export declare type MercuryFundsMutationApiUpdateCostItemClassificationArgs = {
|
|
135673
136003
|
input: MercuryUpdateCostItemClassificationInput;
|
|
135674
136004
|
};
|
|
@@ -135694,6 +136024,11 @@ export declare type MercuryFundsQueryApi = {
|
|
|
135694
136024
|
__typename?: 'MercuryFundsQueryApi';
|
|
135695
136025
|
activeCurrency: MercuryCurrency;
|
|
135696
136026
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
136027
|
+
benefitItems?: Maybe<Array<Maybe<MercuryBenefitItem>>>;
|
|
136028
|
+
benefitItemsSearch?: Maybe<MercuryBenefitItemConnection>;
|
|
136029
|
+
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
136030
|
+
benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
136031
|
+
benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
135697
136032
|
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
135698
136033
|
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
135699
136034
|
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
@@ -135719,6 +136054,25 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
|
135719
136054
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
135720
136055
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
135721
136056
|
};
|
|
136057
|
+
export declare type MercuryFundsQueryApiBenefitItemsArgs = {
|
|
136058
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136059
|
+
};
|
|
136060
|
+
export declare type MercuryFundsQueryApiBenefitItemsSearchArgs = {
|
|
136061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136062
|
+
cloudId: Scalars['ID']['input'];
|
|
136063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136064
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
136065
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBenefitItemSort>>>;
|
|
136066
|
+
};
|
|
136067
|
+
export declare type MercuryFundsQueryApiBenefitPeriodValuesArgs = {
|
|
136068
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136069
|
+
};
|
|
136070
|
+
export declare type MercuryFundsQueryApiBenefitTypesArgs = {
|
|
136071
|
+
cloudId: Scalars['ID']['input'];
|
|
136072
|
+
};
|
|
136073
|
+
export declare type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
|
|
136074
|
+
ids: Array<Scalars['ID']['input']>;
|
|
136075
|
+
};
|
|
135722
136076
|
export declare type MercuryFundsQueryApiCostItemsArgs = {
|
|
135723
136077
|
ids: Array<Scalars['ID']['input']>;
|
|
135724
136078
|
};
|
|
@@ -135850,6 +136204,7 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
135850
136204
|
FocusArea = "FOCUS_AREA",
|
|
135851
136205
|
FocusAreaFunds = "FOCUS_AREA_FUNDS",
|
|
135852
136206
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
136207
|
+
FundsCostItem = "FUNDS_COST_ITEM",
|
|
135853
136208
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
135854
136209
|
Team = "TEAM",
|
|
135855
136210
|
TeamAllocation = "TEAM_ALLOCATION"
|
|
@@ -136206,6 +136561,7 @@ export declare type MercuryLinkedGoalUpdate = {
|
|
|
136206
136561
|
oldTargetDate?: Maybe<Scalars['String']['output']>;
|
|
136207
136562
|
summary?: Maybe<Scalars['String']['output']>;
|
|
136208
136563
|
};
|
|
136564
|
+
export declare type MercuryLinkedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
136209
136565
|
export declare type MercuryMediaToken = {
|
|
136210
136566
|
__typename?: 'MercuryMediaToken';
|
|
136211
136567
|
token: Scalars['String']['output'];
|
|
@@ -137400,11 +137756,12 @@ export declare type MercuryRisk = Node & {
|
|
|
137400
137756
|
description?: Maybe<Scalars['String']['output']>;
|
|
137401
137757
|
id: Scalars['ID']['output'];
|
|
137402
137758
|
impact?: Maybe<MercuryRiskImpact>;
|
|
137759
|
+
impactedWorkItems?: Maybe<Array<MercuryLinkedWork>>;
|
|
137403
137760
|
justification?: Maybe<Scalars['String']['output']>;
|
|
137404
137761
|
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
137405
137762
|
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
137406
137763
|
name: Scalars['String']['output'];
|
|
137407
|
-
owner?: Maybe<
|
|
137764
|
+
owner?: Maybe<User>;
|
|
137408
137765
|
status?: Maybe<MercuryRiskStatus>;
|
|
137409
137766
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
137410
137767
|
submitter?: Maybe<User>;
|
|
@@ -137779,6 +138136,8 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
137779
138136
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
137780
138137
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
137781
138138
|
updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
|
|
138139
|
+
updateChangeProposalTargetBenefit?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
138140
|
+
updateChangeProposalTargetRoi?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
137782
138141
|
updateChangeProposalsViewName?: Maybe<MercuryUpdateChangeProposalsViewNamePayload>;
|
|
137783
138142
|
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
137784
138143
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
@@ -137903,6 +138262,12 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
|
|
|
137903
138262
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
|
|
137904
138263
|
input: MercuryUpdateChangeProposalRankInViewInput;
|
|
137905
138264
|
};
|
|
138265
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetBenefitArgs = {
|
|
138266
|
+
input: MercuryUpdateChangeProposalTargetBenefitInput;
|
|
138267
|
+
};
|
|
138268
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalTargetRoiArgs = {
|
|
138269
|
+
input: MercuryUpdateChangeProposalTargetRoiInput;
|
|
138270
|
+
};
|
|
137906
138271
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewNameArgs = {
|
|
137907
138272
|
input: MercuryUpdateChangeProposalsViewNameInput;
|
|
137908
138273
|
};
|
|
@@ -138244,6 +138609,36 @@ export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
|
138244
138609
|
success: Scalars['Boolean']['output'];
|
|
138245
138610
|
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
138246
138611
|
};
|
|
138612
|
+
export declare type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
138613
|
+
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
138614
|
+
id: Scalars['ID']['input'];
|
|
138615
|
+
};
|
|
138616
|
+
export declare type MercuryUpdateBenefitItemBenefitTypePayload = Payload & {
|
|
138617
|
+
__typename?: 'MercuryUpdateBenefitItemBenefitTypePayload';
|
|
138618
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138619
|
+
success: Scalars['Boolean']['output'];
|
|
138620
|
+
updatedBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
138621
|
+
};
|
|
138622
|
+
export declare type MercuryUpdateBenefitPeriodValueAmountInput = {
|
|
138623
|
+
amount: Scalars['String']['input'];
|
|
138624
|
+
id: Scalars['ID']['input'];
|
|
138625
|
+
};
|
|
138626
|
+
export declare type MercuryUpdateBenefitPeriodValueAmountPayload = Payload & {
|
|
138627
|
+
__typename?: 'MercuryUpdateBenefitPeriodValueAmountPayload';
|
|
138628
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138629
|
+
success: Scalars['Boolean']['output'];
|
|
138630
|
+
updatedBenefitPeriodValue?: Maybe<MercuryBenefitPeriodValue>;
|
|
138631
|
+
};
|
|
138632
|
+
export declare type MercuryUpdateBenefitTypeNameInput = {
|
|
138633
|
+
id: Scalars['ID']['input'];
|
|
138634
|
+
name: Scalars['String']['input'];
|
|
138635
|
+
};
|
|
138636
|
+
export declare type MercuryUpdateBenefitTypePayload = Payload & {
|
|
138637
|
+
__typename?: 'MercuryUpdateBenefitTypePayload';
|
|
138638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138639
|
+
success: Scalars['Boolean']['output'];
|
|
138640
|
+
updatedBenefitType?: Maybe<MercuryBenefitType>;
|
|
138641
|
+
};
|
|
138247
138642
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
138248
138643
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
138249
138644
|
};
|
|
@@ -138310,6 +138705,14 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
138310
138705
|
success: Scalars['Boolean']['output'];
|
|
138311
138706
|
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
138312
138707
|
};
|
|
138708
|
+
export declare type MercuryUpdateChangeProposalTargetBenefitInput = {
|
|
138709
|
+
id: Scalars['ID']['input'];
|
|
138710
|
+
targetBenefit?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
138711
|
+
};
|
|
138712
|
+
export declare type MercuryUpdateChangeProposalTargetRoiInput = {
|
|
138713
|
+
id: Scalars['ID']['input'];
|
|
138714
|
+
targetRoi?: InputMaybe<Scalars['Float']['input']>;
|
|
138715
|
+
};
|
|
138313
138716
|
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
138314
138717
|
id: Scalars['ID']['input'];
|
|
138315
138718
|
name: Scalars['String']['input'];
|
|
@@ -139831,6 +140234,7 @@ export declare type Mutation = {
|
|
|
139831
140234
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
139832
140235
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
139833
140236
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
140237
|
+
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
139834
140238
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
139835
140239
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
139836
140240
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
@@ -142755,6 +143159,7 @@ export declare type MutationKitsune_CreateCustomerArgs = {
|
|
|
142755
143159
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
142756
143160
|
content: Scalars['KitsuneADF']['input'];
|
|
142757
143161
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
143162
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
142758
143163
|
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
142759
143164
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
142760
143165
|
sourceNew?: InputMaybe<KitsuneSourceInputNew>;
|
|
@@ -142825,6 +143230,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
142825
143230
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
142826
143231
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
142827
143232
|
id: Scalars['ID']['input'];
|
|
143233
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
142828
143234
|
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
142829
143235
|
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
142830
143236
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
@@ -143188,6 +143594,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
143188
143594
|
cloudId: Scalars['ID']['input'];
|
|
143189
143595
|
input: Array<RadarPositionProposalChangeInput>;
|
|
143190
143596
|
};
|
|
143597
|
+
export declare type MutationRadar_UpdateNotificationSettingsArgs = {
|
|
143598
|
+
cloudId: Scalars['ID']['input'];
|
|
143599
|
+
input: Array<RadarNotificationInput>;
|
|
143600
|
+
};
|
|
143191
143601
|
export declare type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
|
|
143192
143602
|
cloudId: Scalars['ID']['input'];
|
|
143193
143603
|
input: RadarUpdatePositionLaborCostEstimateSettingsInput;
|
|
@@ -146507,11 +146917,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
146507
146917
|
export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
146508
146918
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
146509
146919
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
146510
|
-
|
|
146920
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
146921
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
146511
146922
|
};
|
|
146512
146923
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
146513
146924
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
146514
|
-
|
|
146925
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
146515
146926
|
title?: Maybe<Scalars['String']['output']>;
|
|
146516
146927
|
};
|
|
146517
146928
|
export declare type PostOfficeMessagePayload = {
|
|
@@ -147030,6 +147441,7 @@ export declare type Query = {
|
|
|
147030
147441
|
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
147031
147442
|
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
147032
147443
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
147444
|
+
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
147033
147445
|
agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
|
|
147034
147446
|
agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
147035
147447
|
agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
|
|
@@ -147141,6 +147553,7 @@ export declare type Query = {
|
|
|
147141
147553
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
147142
147554
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
147143
147555
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
147556
|
+
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
147144
147557
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
147145
147558
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
147146
147559
|
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -147320,6 +147733,7 @@ export declare type Query = {
|
|
|
147320
147733
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
147321
147734
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
147322
147735
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
147736
|
+
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
147323
147737
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
147324
147738
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
147325
147739
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -147912,6 +148326,7 @@ export declare type Query = {
|
|
|
147912
148326
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
147913
148327
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
147914
148328
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
148329
|
+
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
147915
148330
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
147916
148331
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
147917
148332
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
@@ -148650,6 +149065,7 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
148650
149065
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
148651
149066
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148652
149067
|
input: AgentWorkspaceAvailabilityInput;
|
|
149068
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148653
149069
|
};
|
|
148654
149070
|
export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
148655
149071
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148679,6 +149095,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
148679
149095
|
cloudId: Scalars['ID']['input'];
|
|
148680
149096
|
projectKey: Scalars['String']['input'];
|
|
148681
149097
|
};
|
|
149098
|
+
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
149099
|
+
projectAri: Scalars['ID']['input'];
|
|
149100
|
+
};
|
|
148682
149101
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
148683
149102
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
148684
149103
|
};
|
|
@@ -149258,6 +149677,10 @@ export declare type QueryAssetsVertical_InsightsArgs = {
|
|
|
149258
149677
|
cloudId: Scalars['ID']['input'];
|
|
149259
149678
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
149260
149679
|
};
|
|
149680
|
+
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
149681
|
+
cloudId: Scalars['ID']['input'];
|
|
149682
|
+
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
149683
|
+
};
|
|
149261
149684
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
149262
149685
|
id: Scalars['ID']['input'];
|
|
149263
149686
|
};
|
|
@@ -149343,12 +149766,12 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
149343
149766
|
dashboardAri: Scalars['ID']['input'];
|
|
149344
149767
|
};
|
|
149345
149768
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
149346
|
-
|
|
149769
|
+
cloudId: Scalars['ID']['input'];
|
|
149770
|
+
dataSourceId: Scalars['ID']['input'];
|
|
149347
149771
|
};
|
|
149348
149772
|
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
149349
149773
|
cloudId: Scalars['ID']['input'];
|
|
149350
149774
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
149351
|
-
workspaceId: Scalars['ID']['input'];
|
|
149352
149775
|
};
|
|
149353
149776
|
export declare type QueryAvpanalytics_GetModelArgs = {
|
|
149354
149777
|
cloudId: Scalars['ID']['input'];
|
|
@@ -149971,6 +150394,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
149971
150394
|
cloudId: Scalars['ID']['input'];
|
|
149972
150395
|
input: ConfluenceLabelWatchInput;
|
|
149973
150396
|
};
|
|
150397
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
150398
|
+
cloudId: Scalars['ID']['input'];
|
|
150399
|
+
};
|
|
149974
150400
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
149975
150401
|
cloudId: Scalars['String']['input'];
|
|
149976
150402
|
contentId: Scalars['ID']['input'];
|
|
@@ -152328,6 +152754,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
|
152328
152754
|
cloudId: Scalars['ID']['input'];
|
|
152329
152755
|
pageName: Scalars['String']['input'];
|
|
152330
152756
|
};
|
|
152757
|
+
export declare type QueryRadar_NotificationSettingsArgs = {
|
|
152758
|
+
cloudId: Scalars['ID']['input'];
|
|
152759
|
+
};
|
|
152331
152760
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
152332
152761
|
id: Scalars['ID']['input'];
|
|
152333
152762
|
};
|
|
@@ -153615,6 +154044,30 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
153615
154044
|
sensitivityLevel: RadarSensitivityLevel;
|
|
153616
154045
|
type: RadarFieldType;
|
|
153617
154046
|
};
|
|
154047
|
+
export declare type RadarNotification = {
|
|
154048
|
+
__typename?: 'RadarNotification';
|
|
154049
|
+
channel: RadarNotificationChannel;
|
|
154050
|
+
enabled: Scalars['Boolean']['output'];
|
|
154051
|
+
group: RadarNotificationGroup;
|
|
154052
|
+
id: Scalars['ID']['output'];
|
|
154053
|
+
type: RadarNotificationType;
|
|
154054
|
+
};
|
|
154055
|
+
export declare enum RadarNotificationChannel {
|
|
154056
|
+
InApp = "IN_APP"
|
|
154057
|
+
}
|
|
154058
|
+
export declare enum RadarNotificationGroup {
|
|
154059
|
+
RealTime = "REAL_TIME"
|
|
154060
|
+
}
|
|
154061
|
+
export declare type RadarNotificationInput = {
|
|
154062
|
+
channel: RadarNotificationChannel;
|
|
154063
|
+
enabled: Scalars['Boolean']['input'];
|
|
154064
|
+
group: RadarNotificationGroup;
|
|
154065
|
+
type: RadarNotificationType;
|
|
154066
|
+
};
|
|
154067
|
+
export declare enum RadarNotificationType {
|
|
154068
|
+
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
154069
|
+
DataIngestionSuccess = "DATA_INGESTION_SUCCESS"
|
|
154070
|
+
}
|
|
153618
154071
|
export declare enum RadarNumericAppearance {
|
|
153619
154072
|
Duration = "DURATION",
|
|
153620
154073
|
Number = "NUMBER"
|
|
@@ -180586,6 +181039,7 @@ export declare type TeamMutation = {
|
|
|
180586
181039
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
180587
181040
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
180588
181041
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
181042
|
+
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
180589
181043
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
180590
181044
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
180591
181045
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
@@ -180668,6 +181122,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
|
|
|
180668
181122
|
customFieldValueId: Scalars['ID']['input'];
|
|
180669
181123
|
teamId: Scalars['ID']['input'];
|
|
180670
181124
|
};
|
|
181125
|
+
export declare type TeamMutationUnlinkManagedTeamsArgs = {
|
|
181126
|
+
scopeId: Scalars['ID']['input'];
|
|
181127
|
+
teamIds: Array<Scalars['ID']['input']>;
|
|
181128
|
+
};
|
|
180671
181129
|
export declare type TeamMutationUpdateCustomFieldArgs = {
|
|
180672
181130
|
customFieldData: TeamUpdateCustomFieldPayload;
|
|
180673
181131
|
id: Scalars['ID']['input'];
|
|
@@ -181005,6 +181463,19 @@ export declare type TeamTypeUpdatePayload = {
|
|
|
181005
181463
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181006
181464
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181007
181465
|
};
|
|
181466
|
+
export declare type TeamUnlinkManagedTeamError = {
|
|
181467
|
+
__typename?: 'TeamUnlinkManagedTeamError';
|
|
181468
|
+
errorCode: Scalars['String']['output'];
|
|
181469
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
181470
|
+
teamId: Scalars['ID']['output'];
|
|
181471
|
+
};
|
|
181472
|
+
export declare type TeamUnlinkManagedTeamsPayload = Payload & {
|
|
181473
|
+
__typename?: 'TeamUnlinkManagedTeamsPayload';
|
|
181474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181475
|
+
failedTeams?: Maybe<Array<TeamUnlinkManagedTeamError>>;
|
|
181476
|
+
success: Scalars['Boolean']['output'];
|
|
181477
|
+
successfulTeams?: Maybe<Array<Scalars['ID']['output']>>;
|
|
181478
|
+
};
|
|
181008
181479
|
export declare type TeamUpdateCustomFieldPayload = {
|
|
181009
181480
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181010
181481
|
name?: InputMaybe<Scalars['String']['input']>;
|