@forge/cli-shared 9.0.1-next.5 → 9.0.1-next.7
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 +13 -0
- package/out/graphql/graphql-types.d.ts +613 -34
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +120 -53
- package/package.json +2 -3
|
@@ -6048,8 +6048,12 @@ export type AgentStudioAssistantScenarioListArgs = {
|
|
|
6048
6048
|
};
|
|
6049
6049
|
export type AgentStudioAssistantConversation = {
|
|
6050
6050
|
__typename?: 'AgentStudioAssistantConversation';
|
|
6051
|
+
agentVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
6052
|
+
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6053
|
+
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6051
6054
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6052
6055
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
6056
|
+
lifecycleStatus?: Maybe<AgentStudioConversationLifecycleStatus>;
|
|
6053
6057
|
name?: Maybe<Scalars['String']['output']>;
|
|
6054
6058
|
resolutionReason?: Maybe<Scalars['String']['output']>;
|
|
6055
6059
|
resolutionStatus?: Maybe<AgentStudioResolutionStatus>;
|
|
@@ -6275,6 +6279,12 @@ export type AgentStudioConversationHistoryResult = {
|
|
|
6275
6279
|
errors?: Maybe<Array<Maybe<QueryError>>>;
|
|
6276
6280
|
pageInfo: PageInfo;
|
|
6277
6281
|
};
|
|
6282
|
+
export declare enum AgentStudioConversationLifecycleStatus {
|
|
6283
|
+
Active = "ACTIVE",
|
|
6284
|
+
Ended = "ENDED",
|
|
6285
|
+
Escalated = "ESCALATED",
|
|
6286
|
+
Expired = "EXPIRED"
|
|
6287
|
+
}
|
|
6278
6288
|
export type AgentStudioConversationListResult = {
|
|
6279
6289
|
__typename?: 'AgentStudioConversationListResult';
|
|
6280
6290
|
edges?: Maybe<Array<Maybe<AgentStudioAssistantConversationEdge>>>;
|
|
@@ -8745,6 +8755,7 @@ export type AgentWorkspaceSmartRoutingDryRunTicket = {
|
|
|
8745
8755
|
occurredAt: Scalars['DateTime']['output'];
|
|
8746
8756
|
predictedServiceId?: Maybe<Scalars['String']['output']>;
|
|
8747
8757
|
predictedServiceName?: Maybe<Scalars['String']['output']>;
|
|
8758
|
+
qualifiedAgentCount?: Maybe<Scalars['Int']['output']>;
|
|
8748
8759
|
};
|
|
8749
8760
|
export type AgentWorkspaceSmartRoutingDryRunTicketsInput = {
|
|
8750
8761
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9162,6 +9173,7 @@ export type AiCoreApiDeflectionResult = {
|
|
|
9162
9173
|
evaluationType: AiCoreApiAgentEvaluationType;
|
|
9163
9174
|
filteredOutNonItTeams?: Maybe<Array<Scalars['String']['output']>>;
|
|
9164
9175
|
finalTeam?: Maybe<Scalars['String']['output']>;
|
|
9176
|
+
isApplicable: Scalars['Boolean']['output'];
|
|
9165
9177
|
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
9166
9178
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
9167
9179
|
suggestedTeam?: Maybe<Scalars['String']['output']>;
|
|
@@ -11605,6 +11617,15 @@ export type AssetsDmAdapter = {
|
|
|
11605
11617
|
name?: Maybe<Scalars['String']['output']>;
|
|
11606
11618
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
11607
11619
|
};
|
|
11620
|
+
export declare enum AssetsDmAdapterClientVersionStatus {
|
|
11621
|
+
None = "NONE",
|
|
11622
|
+
UpdateAvailable = "UPDATE_AVAILABLE",
|
|
11623
|
+
UpdateRequired = "UPDATE_REQUIRED"
|
|
11624
|
+
}
|
|
11625
|
+
export type AssetsDmAdapterClientVersionStatusResponse = {
|
|
11626
|
+
__typename?: 'AssetsDMAdapterClientVersionStatusResponse';
|
|
11627
|
+
status?: Maybe<AssetsDmAdapterClientVersionStatus>;
|
|
11628
|
+
};
|
|
11608
11629
|
export type AssetsDmAdapters = {
|
|
11609
11630
|
__typename?: 'AssetsDMAdapters';
|
|
11610
11631
|
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
@@ -11714,6 +11735,11 @@ export type AssetsDmBigfixDefaultQueryResponse = {
|
|
|
11714
11735
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11715
11736
|
query: Scalars['String']['output'];
|
|
11716
11737
|
};
|
|
11738
|
+
export type AssetsDmChangeDataSourceStatusArgs = {
|
|
11739
|
+
cloudId: Scalars['ID']['input'];
|
|
11740
|
+
input: AssetsDmChangeDataSourceStatusInput;
|
|
11741
|
+
workspaceId: Scalars['ID']['input'];
|
|
11742
|
+
};
|
|
11717
11743
|
export type AssetsDmChangeDataSourceStatusInput = {
|
|
11718
11744
|
dataSourceId: Scalars['ID']['input'];
|
|
11719
11745
|
status: AssetsDmDataSourceStatus;
|
|
@@ -11827,8 +11853,16 @@ export type AssetsDmCreateDataDictionaryGroupValueResponse = {
|
|
|
11827
11853
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11828
11854
|
message: Scalars['String']['output'];
|
|
11829
11855
|
};
|
|
11856
|
+
export type AssetsDmCreateDataSourceArgs = {
|
|
11857
|
+
cloudId: Scalars['ID']['input'];
|
|
11858
|
+
input: AssetsDmCreateDataSourceInput;
|
|
11859
|
+
workspaceId: Scalars['ID']['input'];
|
|
11860
|
+
};
|
|
11830
11861
|
export type AssetsDmCreateDataSourceInput = {
|
|
11862
|
+
dataSourceTypeId: Scalars['ID']['input'];
|
|
11831
11863
|
enabled: Scalars['Boolean']['input'];
|
|
11864
|
+
name: Scalars['String']['input'];
|
|
11865
|
+
objectId: Scalars['ID']['input'];
|
|
11832
11866
|
priority: Scalars['Int']['input'];
|
|
11833
11867
|
refreshGap: Scalars['Int']['input'];
|
|
11834
11868
|
tableName: Scalars['String']['input'];
|
|
@@ -11881,6 +11915,19 @@ export type AssetsDmCreateObjectAttributeResponse = {
|
|
|
11881
11915
|
name?: Maybe<Scalars['String']['output']>;
|
|
11882
11916
|
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
11883
11917
|
};
|
|
11918
|
+
export declare enum AssetsDmDataDictionaryColumnName {
|
|
11919
|
+
ComputeDictionaryId = "computeDictionaryId",
|
|
11920
|
+
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
11921
|
+
DmComputeDictionaryDate = "dmComputeDictionaryDate",
|
|
11922
|
+
DmComputeDictionaryId = "dmComputeDictionaryId",
|
|
11923
|
+
Name = "name",
|
|
11924
|
+
ObjectId = "objectId",
|
|
11925
|
+
Priority = "priority",
|
|
11926
|
+
Scope = "scope",
|
|
11927
|
+
SourceObjectAttributeId = "sourceObjectAttributeId",
|
|
11928
|
+
SourceObjectAttributeId2 = "sourceObjectAttributeId2",
|
|
11929
|
+
TenantId = "tenantId"
|
|
11930
|
+
}
|
|
11884
11931
|
export type AssetsDmDataDictionaryFilter = {
|
|
11885
11932
|
columnName: AssetsDmDataDictionaryFilterColumn;
|
|
11886
11933
|
value: Scalars['String']['input'];
|
|
@@ -11944,6 +11991,7 @@ export type AssetsDmDataDictionaryRow = {
|
|
|
11944
11991
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
11945
11992
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
11946
11993
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
11994
|
+
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
11947
11995
|
name: Scalars['String']['output'];
|
|
11948
11996
|
objectId: Scalars['ID']['output'];
|
|
11949
11997
|
priority: Scalars['Int']['output'];
|
|
@@ -11988,6 +12036,11 @@ export type AssetsDmDataSource = {
|
|
|
11988
12036
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
11989
12037
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
11990
12038
|
};
|
|
12039
|
+
export type AssetsDmDataSourceArgs = {
|
|
12040
|
+
cloudId: Scalars['ID']['input'];
|
|
12041
|
+
dataSourceId: Scalars['ID']['input'];
|
|
12042
|
+
workspaceId: Scalars['ID']['input'];
|
|
12043
|
+
};
|
|
11991
12044
|
export type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
11992
12045
|
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
11993
12046
|
cleansingExecutiveId: Scalars['ID']['output'];
|
|
@@ -12245,6 +12298,13 @@ export type AssetsDmDataSourceDetail = {
|
|
|
12245
12298
|
tableName: Scalars['String']['output'];
|
|
12246
12299
|
tenantId: Scalars['ID']['output'];
|
|
12247
12300
|
};
|
|
12301
|
+
export type AssetsDmDataSourceDetailResponse = {
|
|
12302
|
+
__typename?: 'AssetsDMDataSourceDetailResponse';
|
|
12303
|
+
dataSource?: Maybe<AssetsDmDataSourceDetail>;
|
|
12304
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
12305
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
12306
|
+
success: Scalars['Boolean']['output'];
|
|
12307
|
+
};
|
|
12248
12308
|
export type AssetsDmDataSourceDetails = {
|
|
12249
12309
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
12250
12310
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -12623,6 +12683,12 @@ export type AssetsDmDataSourcesList = {
|
|
|
12623
12683
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
12624
12684
|
totalCount: Scalars['Int']['output'];
|
|
12625
12685
|
};
|
|
12686
|
+
export type AssetsDmDataSourcesListArgs = {
|
|
12687
|
+
cloudId: Scalars['ID']['input'];
|
|
12688
|
+
search?: InputMaybe<AssetsDmDataSourceSearch>;
|
|
12689
|
+
sortBy?: InputMaybe<AssetsDmDataSourceSort>;
|
|
12690
|
+
workspaceId: Scalars['ID']['input'];
|
|
12691
|
+
};
|
|
12626
12692
|
export type AssetsDmDateFormatMutationResponse = {
|
|
12627
12693
|
__typename?: 'AssetsDMDateFormatMutationResponse';
|
|
12628
12694
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -12724,6 +12790,7 @@ export type AssetsDmDefaultAttributeMappingRow = {
|
|
|
12724
12790
|
isPrimaryKey: Scalars['Boolean']['output'];
|
|
12725
12791
|
isSecondaryKey: Scalars['Boolean']['output'];
|
|
12726
12792
|
objectAttributeId: Scalars['ID']['output'];
|
|
12793
|
+
objectClassId: Scalars['ID']['output'];
|
|
12727
12794
|
sourceColumn: Scalars['String']['output'];
|
|
12728
12795
|
};
|
|
12729
12796
|
export type AssetsDmDefaultAttributeMappingSortBy = {
|
|
@@ -12824,6 +12891,11 @@ export type AssetsDmDeleteDataDictionaryResponse = {
|
|
|
12824
12891
|
isSuccessful: Scalars['Boolean']['output'];
|
|
12825
12892
|
message: Scalars['String']['output'];
|
|
12826
12893
|
};
|
|
12894
|
+
export type AssetsDmDeleteDataSourceArgs = {
|
|
12895
|
+
cloudId: Scalars['ID']['input'];
|
|
12896
|
+
input: AssetsDmDeleteDataSourceInput;
|
|
12897
|
+
workspaceId: Scalars['ID']['input'];
|
|
12898
|
+
};
|
|
12827
12899
|
export type AssetsDmDeleteDataSourceConfigPayload = {
|
|
12828
12900
|
__typename?: 'AssetsDMDeleteDataSourceConfigPayload';
|
|
12829
12901
|
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -13436,6 +13508,11 @@ export type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
|
13436
13508
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13437
13509
|
message: Scalars['String']['output'];
|
|
13438
13510
|
};
|
|
13511
|
+
export declare enum AssetsDmObjectsListIconType {
|
|
13512
|
+
Failed = "FAILED",
|
|
13513
|
+
Success = "SUCCESS",
|
|
13514
|
+
Unknown = "UNKNOWN"
|
|
13515
|
+
}
|
|
13439
13516
|
export type AssetsDmObjectsListPageInfo = {
|
|
13440
13517
|
__typename?: 'AssetsDMObjectsListPageInfo';
|
|
13441
13518
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13597,8 +13674,8 @@ export type AssetsDmQualysReport = {
|
|
|
13597
13674
|
};
|
|
13598
13675
|
export type AssetsDmRawDataFilter = {
|
|
13599
13676
|
__typename?: 'AssetsDMRawDataFilter';
|
|
13600
|
-
name
|
|
13601
|
-
type
|
|
13677
|
+
name: Scalars['String']['output'];
|
|
13678
|
+
type: Scalars['String']['output'];
|
|
13602
13679
|
value?: Maybe<Scalars['String']['output']>;
|
|
13603
13680
|
valueTo?: Maybe<Scalars['String']['output']>;
|
|
13604
13681
|
};
|
|
@@ -13768,6 +13845,11 @@ export type AssetsDmUpdateCleansingReasonResponse = {
|
|
|
13768
13845
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13769
13846
|
message: Scalars['String']['output'];
|
|
13770
13847
|
};
|
|
13848
|
+
export type AssetsDmUpdateDataSourceArgs = {
|
|
13849
|
+
cloudId: Scalars['ID']['input'];
|
|
13850
|
+
input: AssetsDmUpdateDataSourceInput;
|
|
13851
|
+
workspaceId: Scalars['ID']['input'];
|
|
13852
|
+
};
|
|
13771
13853
|
export type AssetsDmUpdateDataSourceInput = {
|
|
13772
13854
|
dataSourceId: Scalars['ID']['input'];
|
|
13773
13855
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -13782,6 +13864,11 @@ export type AssetsDmUpdateDataSourcePayload = {
|
|
|
13782
13864
|
message?: Maybe<Scalars['String']['output']>;
|
|
13783
13865
|
success: Scalars['Boolean']['output'];
|
|
13784
13866
|
};
|
|
13867
|
+
export type AssetsDmUpdateDataSourcePriorityArgs = {
|
|
13868
|
+
cloudId: Scalars['ID']['input'];
|
|
13869
|
+
input: AssetsDmUpdateDataSourcePriorityInput;
|
|
13870
|
+
workspaceId: Scalars['ID']['input'];
|
|
13871
|
+
};
|
|
13785
13872
|
export type AssetsDmUpdateDataSourcePriorityInput = {
|
|
13786
13873
|
dataSourceId: Scalars['ID']['input'];
|
|
13787
13874
|
increase: Scalars['Boolean']['input'];
|
|
@@ -14481,9 +14568,11 @@ export type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
14481
14568
|
export type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
14482
14569
|
export type AssetsVerticalAsyncTask = {
|
|
14483
14570
|
__typename?: 'AssetsVerticalAsyncTask';
|
|
14571
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14484
14572
|
id: Scalars['ID']['output'];
|
|
14485
14573
|
status: AssetsVerticalAsyncTaskStatus;
|
|
14486
14574
|
type: AssetsVerticalAsyncTaskType;
|
|
14575
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
14487
14576
|
};
|
|
14488
14577
|
export type AssetsVerticalAsyncTaskInfo = {
|
|
14489
14578
|
__typename?: 'AssetsVerticalAsyncTaskInfo';
|
|
@@ -14495,11 +14584,29 @@ export type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
|
14495
14584
|
success: Scalars['Boolean']['output'];
|
|
14496
14585
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
14497
14586
|
};
|
|
14587
|
+
export declare enum AssetsVerticalAsyncTaskQueryErrorCode {
|
|
14588
|
+
NotFound = "NOT_FOUND",
|
|
14589
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
14590
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
14591
|
+
}
|
|
14592
|
+
export type AssetsVerticalAsyncTaskQueryErrorExtension = QueryErrorExtension & {
|
|
14593
|
+
__typename?: 'AssetsVerticalAsyncTaskQueryErrorExtension';
|
|
14594
|
+
code?: Maybe<AssetsVerticalAsyncTaskQueryErrorCode>;
|
|
14595
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
14596
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14597
|
+
};
|
|
14598
|
+
export type AssetsVerticalAsyncTaskResult = AssetsVerticalAsyncTaskSuccess | QueryError;
|
|
14498
14599
|
export declare enum AssetsVerticalAsyncTaskStatus {
|
|
14499
|
-
|
|
14600
|
+
Archived = "ARCHIVED",
|
|
14500
14601
|
Failed = "FAILED",
|
|
14501
|
-
InProgress = "IN_PROGRESS"
|
|
14602
|
+
InProgress = "IN_PROGRESS",
|
|
14603
|
+
Queued = "QUEUED",
|
|
14604
|
+
Succeeded = "SUCCEEDED"
|
|
14502
14605
|
}
|
|
14606
|
+
export type AssetsVerticalAsyncTaskSuccess = {
|
|
14607
|
+
__typename?: 'AssetsVerticalAsyncTaskSuccess';
|
|
14608
|
+
task: AssetsVerticalAsyncTask;
|
|
14609
|
+
};
|
|
14503
14610
|
export declare enum AssetsVerticalAsyncTaskType {
|
|
14504
14611
|
BundleInstantiation = "BUNDLE_INSTANTIATION",
|
|
14505
14612
|
VerticalProvisioning = "VERTICAL_PROVISIONING"
|
|
@@ -14588,14 +14695,6 @@ export type AssetsVerticalCreateDepreciationRuleInput = {
|
|
|
14588
14695
|
usefulLifeYears: Scalars['Int']['input'];
|
|
14589
14696
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
14590
14697
|
};
|
|
14591
|
-
export type AssetsVerticalCreateDepreciationRuleWithinInstantiationInput = {
|
|
14592
|
-
assetTypes: Array<AssetsVerticalDepreciationRuleAssetTypeInput>;
|
|
14593
|
-
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14594
|
-
method: AssetsVerticalDepreciationMethod;
|
|
14595
|
-
name: Scalars['String']['input'];
|
|
14596
|
-
salvageValue: Scalars['Float']['input'];
|
|
14597
|
-
usefulLifeYears: Scalars['Int']['input'];
|
|
14598
|
-
};
|
|
14599
14698
|
export type AssetsVerticalCreateItemMappingEntryInput = {
|
|
14600
14699
|
itemId: Scalars['ID']['input'];
|
|
14601
14700
|
itemType: AssetsVerticalItemType;
|
|
@@ -14624,7 +14723,6 @@ export type AssetsVerticalCreateVerticalInstantiationCategoryInput = {
|
|
|
14624
14723
|
export type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
14625
14724
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationInlineCategoryInput>>;
|
|
14626
14725
|
cloudId: Scalars['ID']['input'];
|
|
14627
|
-
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
14628
14726
|
type: AssetsVerticalVerticalType;
|
|
14629
14727
|
};
|
|
14630
14728
|
export type AssetsVerticalCreateWorkbenchDashboardInput = {
|
|
@@ -14815,6 +14913,10 @@ export type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErrorExtens
|
|
|
14815
14913
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14816
14914
|
};
|
|
14817
14915
|
export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
14916
|
+
export type AssetsVerticalDisableVerticalInstantiationInput = {
|
|
14917
|
+
cloudId: Scalars['ID']['input'];
|
|
14918
|
+
type: AssetsVerticalVerticalType;
|
|
14919
|
+
};
|
|
14818
14920
|
export type AssetsVerticalEnableCustomInsightInput = {
|
|
14819
14921
|
cloudId: Scalars['ID']['input'];
|
|
14820
14922
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -14826,6 +14928,10 @@ export type AssetsVerticalEnableCustomInsightPayload = Payload & {
|
|
|
14826
14928
|
errors?: Maybe<Array<MutationError>>;
|
|
14827
14929
|
success: Scalars['Boolean']['output'];
|
|
14828
14930
|
};
|
|
14931
|
+
export type AssetsVerticalEnableVerticalInstantiationInput = {
|
|
14932
|
+
cloudId: Scalars['ID']['input'];
|
|
14933
|
+
type: AssetsVerticalVerticalType;
|
|
14934
|
+
};
|
|
14829
14935
|
export declare enum AssetsVerticalFlowType {
|
|
14830
14936
|
Existing = "EXISTING",
|
|
14831
14937
|
New = "NEW"
|
|
@@ -15357,7 +15463,6 @@ export type AssetsVerticalUpdateVerticalInstantiationCategoryInput = {
|
|
|
15357
15463
|
export type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
15358
15464
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput>>;
|
|
15359
15465
|
cloudId: Scalars['ID']['input'];
|
|
15360
|
-
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
15361
15466
|
id: Scalars['ID']['input'];
|
|
15362
15467
|
};
|
|
15363
15468
|
export type AssetsVerticalUserPrincipal = {
|
|
@@ -15490,7 +15595,6 @@ export declare enum AssetsVerticalVerticalInstantiationErrorCode {
|
|
|
15490
15595
|
}
|
|
15491
15596
|
export type AssetsVerticalVerticalInstantiationInlineCategoryInput = {
|
|
15492
15597
|
category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
15493
|
-
type?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
15494
15598
|
};
|
|
15495
15599
|
export type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
|
|
15496
15600
|
__typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
|
|
@@ -15519,6 +15623,7 @@ export type AssetsVerticalVerticalInstantiationResult = AssetsVerticalVerticalIn
|
|
|
15519
15623
|
export declare enum AssetsVerticalVerticalInstantiationStatus {
|
|
15520
15624
|
Completed = "COMPLETED",
|
|
15521
15625
|
Created = "CREATED",
|
|
15626
|
+
Disabled = "DISABLED",
|
|
15522
15627
|
Failed = "FAILED",
|
|
15523
15628
|
InProgress = "IN_PROGRESS"
|
|
15524
15629
|
}
|
|
@@ -19674,13 +19779,13 @@ export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
19674
19779
|
};
|
|
19675
19780
|
export type ChecklistItem = {
|
|
19676
19781
|
__typename?: 'ChecklistItem';
|
|
19677
|
-
done
|
|
19678
|
-
itemId
|
|
19679
|
-
label
|
|
19680
|
-
order
|
|
19782
|
+
done?: Maybe<Scalars['Boolean']['output']>;
|
|
19783
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
19784
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
19785
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
19681
19786
|
};
|
|
19682
19787
|
export type ChecklistItemInput = {
|
|
19683
|
-
itemId?: InputMaybe<Scalars['
|
|
19788
|
+
itemId?: InputMaybe<Scalars['String']['input']>;
|
|
19684
19789
|
label: Scalars['String']['input'];
|
|
19685
19790
|
order: Scalars['Int']['input'];
|
|
19686
19791
|
};
|
|
@@ -19805,6 +19910,7 @@ export type CloudifyEnactment = {
|
|
|
19805
19910
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
19806
19911
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19807
19912
|
id: CloudifyEnactmentId;
|
|
19913
|
+
metadata: Array<CloudifyMetadataEntry>;
|
|
19808
19914
|
recommendationId: CloudifyRecommendationId;
|
|
19809
19915
|
startedAt: Scalars['String']['output'];
|
|
19810
19916
|
status: CloudifyEnactmentStatus;
|
|
@@ -19818,6 +19924,11 @@ export declare enum CloudifyEnactmentStatus {
|
|
|
19818
19924
|
Executing = "EXECUTING",
|
|
19819
19925
|
Failed = "FAILED"
|
|
19820
19926
|
}
|
|
19927
|
+
export type CloudifyMetadataEntry = {
|
|
19928
|
+
__typename?: 'CloudifyMetadataEntry';
|
|
19929
|
+
key: Scalars['String']['output'];
|
|
19930
|
+
value: Scalars['String']['output'];
|
|
19931
|
+
};
|
|
19821
19932
|
export type CloudifyProjectAri = {
|
|
19822
19933
|
__typename?: 'CloudifyProjectARI';
|
|
19823
19934
|
projectId: Scalars['ID']['output'];
|
|
@@ -38644,6 +38755,7 @@ export type CplsContributorWorkConnection = HasPageInfo & {
|
|
|
38644
38755
|
export type CplsContributorWorkEdge = {
|
|
38645
38756
|
__typename?: 'CplsContributorWorkEdge';
|
|
38646
38757
|
contributions?: Maybe<Array<Maybe<CplsContribution>>>;
|
|
38758
|
+
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
38647
38759
|
cursor: Scalars['String']['output'];
|
|
38648
38760
|
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
38649
38761
|
node?: Maybe<CplsWorkData>;
|
|
@@ -39127,6 +39239,7 @@ export type CplsWorkContributorEdge = {
|
|
|
39127
39239
|
contributorDataId: Scalars['ID']['output'];
|
|
39128
39240
|
cursor: Scalars['String']['output'];
|
|
39129
39241
|
node?: Maybe<CplsContributor>;
|
|
39242
|
+
workDataId?: Maybe<Scalars['ID']['output']>;
|
|
39130
39243
|
};
|
|
39131
39244
|
export type CplsWorkData = CplsCustomContributionTarget | JiraIssue | TownsquareProject;
|
|
39132
39245
|
export type CplsWorkDataId = {
|
|
@@ -43019,6 +43132,28 @@ export type DevAiAddContainerConfigVariablePayload = Payload & {
|
|
|
43019
43132
|
errors?: Maybe<Array<MutationError>>;
|
|
43020
43133
|
success: Scalars['Boolean']['output'];
|
|
43021
43134
|
};
|
|
43135
|
+
export type DevAiAiPlannerAccessResponse = {
|
|
43136
|
+
__typename?: 'DevAiAiPlannerAccessResponse';
|
|
43137
|
+
orgChecks: DevAiAiPlannerOrgChecks;
|
|
43138
|
+
permitted: Scalars['Boolean']['output'];
|
|
43139
|
+
siteChecks: DevAiAiPlannerSiteChecks;
|
|
43140
|
+
userChecks: DevAiAiPlannerUserChecks;
|
|
43141
|
+
};
|
|
43142
|
+
export type DevAiAiPlannerOrgChecks = {
|
|
43143
|
+
__typename?: 'DevAiAiPlannerOrgChecks';
|
|
43144
|
+
hasAiEarlyAccess: Scalars['Boolean']['output'];
|
|
43145
|
+
};
|
|
43146
|
+
export type DevAiAiPlannerSiteChecks = {
|
|
43147
|
+
__typename?: 'DevAiAiPlannerSiteChecks';
|
|
43148
|
+
hasConfluence: Scalars['Boolean']['output'];
|
|
43149
|
+
hasJira: Scalars['Boolean']['output'];
|
|
43150
|
+
};
|
|
43151
|
+
export type DevAiAiPlannerUserChecks = {
|
|
43152
|
+
__typename?: 'DevAiAiPlannerUserChecks';
|
|
43153
|
+
hasJiraAiAccess: Scalars['Boolean']['output'];
|
|
43154
|
+
hasJiraProductAccess: Scalars['Boolean']['output'];
|
|
43155
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
43156
|
+
};
|
|
43022
43157
|
export type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
|
|
43023
43158
|
__typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
|
|
43024
43159
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -43143,6 +43278,10 @@ export type DevAiAutodevNextAssociatedWorkstream = {
|
|
|
43143
43278
|
name?: Maybe<Scalars['String']['output']>;
|
|
43144
43279
|
status: Scalars['ID']['output'];
|
|
43145
43280
|
};
|
|
43281
|
+
export declare enum DevAiAutodevNextBoysenberrySessionInitiatorInput {
|
|
43282
|
+
WorkstreamOwner = "WORKSTREAM_OWNER",
|
|
43283
|
+
WorkItemAssignee = "WORK_ITEM_ASSIGNEE"
|
|
43284
|
+
}
|
|
43146
43285
|
export type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
43147
43286
|
cloudId: Scalars['ID']['input'];
|
|
43148
43287
|
repository?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43496,6 +43635,7 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
43496
43635
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
43497
43636
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
43498
43637
|
assignees?: Maybe<Array<User>>;
|
|
43638
|
+
boysenberrySessionInitiator?: Maybe<Scalars['ID']['output']>;
|
|
43499
43639
|
classificationRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
43500
43640
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
43501
43641
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
@@ -43510,6 +43650,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
43510
43650
|
};
|
|
43511
43651
|
export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
43512
43652
|
assignees?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43653
|
+
boysenberrySessionInitiator?: InputMaybe<DevAiAutodevNextBoysenberrySessionInitiatorInput>;
|
|
43513
43654
|
classificationRepositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
43514
43655
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43515
43656
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46504,6 +46645,30 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
46504
46645
|
scope?: Maybe<DlpScope>;
|
|
46505
46646
|
status?: Maybe<DlpMappingStatus>;
|
|
46506
46647
|
};
|
|
46648
|
+
export type DlpFinding = {
|
|
46649
|
+
__typename?: 'DlpFinding';
|
|
46650
|
+
app?: Maybe<Scalars['String']['output']>;
|
|
46651
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
46652
|
+
classificationAri?: Maybe<Scalars['String']['output']>;
|
|
46653
|
+
confidenceLevel?: Maybe<Scalars['String']['output']>;
|
|
46654
|
+
detectedDate?: Maybe<Scalars['String']['output']>;
|
|
46655
|
+
detectorId?: Maybe<Scalars['String']['output']>;
|
|
46656
|
+
detectorType?: Maybe<Scalars['String']['output']>;
|
|
46657
|
+
findingId?: Maybe<Scalars['String']['output']>;
|
|
46658
|
+
maxConfidence?: Maybe<Scalars['Float']['output']>;
|
|
46659
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
46660
|
+
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
46661
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
46662
|
+
spaceContext?: Maybe<Scalars['String']['output']>;
|
|
46663
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
46664
|
+
};
|
|
46665
|
+
export type DlpFindingsListResponse = {
|
|
46666
|
+
__typename?: 'DlpFindingsListResponse';
|
|
46667
|
+
findings?: Maybe<Array<Maybe<DlpFinding>>>;
|
|
46668
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
46669
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
46670
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46671
|
+
};
|
|
46507
46672
|
export declare enum DlpMappingStatus {
|
|
46508
46673
|
Draft = "DRAFT",
|
|
46509
46674
|
Published = "PUBLISHED"
|
|
@@ -47682,7 +47847,7 @@ export type ExternalAssociationEdge = {
|
|
|
47682
47847
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
47683
47848
|
node?: Maybe<ExternalAssociation>;
|
|
47684
47849
|
};
|
|
47685
|
-
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
47850
|
+
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
47686
47851
|
export type ExternalAttachment = {
|
|
47687
47852
|
__typename?: 'ExternalAttachment';
|
|
47688
47853
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -48561,6 +48726,7 @@ export type ExternalEntities = {
|
|
|
48561
48726
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
48562
48727
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
48563
48728
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
48729
|
+
servicenowBusinessApp?: Maybe<Array<Maybe<ExternalServicenowBusinessApp>>>;
|
|
48564
48730
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
48565
48731
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
48566
48732
|
team?: Maybe<Array<Maybe<ExternalTeam>>>;
|
|
@@ -48575,7 +48741,7 @@ export type ExternalEntities = {
|
|
|
48575
48741
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
48576
48742
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
48577
48743
|
};
|
|
48578
|
-
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
48744
|
+
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
48579
48745
|
export type ExternalEntityExtendedValue = {
|
|
48580
48746
|
__typename?: 'ExternalEntityExtendedValue';
|
|
48581
48747
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -49079,6 +49245,60 @@ export type ExternalSalesPipelineImpact = {
|
|
|
49079
49245
|
numberOfOpportunities?: Maybe<Scalars['Long']['output']>;
|
|
49080
49246
|
numberOfWonOpportunities?: Maybe<Scalars['Long']['output']>;
|
|
49081
49247
|
};
|
|
49248
|
+
export type ExternalServicenowBusinessApp = Node & {
|
|
49249
|
+
__typename?: 'ExternalServicenowBusinessApp';
|
|
49250
|
+
applicationFamily?: Maybe<Scalars['String']['output']>;
|
|
49251
|
+
applicationManager?: Maybe<ExternalUser>;
|
|
49252
|
+
applicationScoringProfile?: Maybe<Scalars['String']['output']>;
|
|
49253
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
49254
|
+
architectureType?: Maybe<Scalars['String']['output']>;
|
|
49255
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
49256
|
+
audienceType?: Maybe<Scalars['String']['output']>;
|
|
49257
|
+
businessProcess?: Maybe<Scalars['String']['output']>;
|
|
49258
|
+
businessUnit?: Maybe<Scalars['String']['output']>;
|
|
49259
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
49260
|
+
container?: Maybe<ExternalEntity>;
|
|
49261
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
49262
|
+
costCenter?: Maybe<Scalars['String']['output']>;
|
|
49263
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
49264
|
+
createdBy?: Maybe<ExternalUser>;
|
|
49265
|
+
dataClassification?: Maybe<Scalars['String']['output']>;
|
|
49266
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
49267
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
49268
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
49269
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
49270
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
49271
|
+
id: Scalars['ID']['output'];
|
|
49272
|
+
installStatus?: Maybe<Scalars['String']['output']>;
|
|
49273
|
+
installType?: Maybe<Scalars['String']['output']>;
|
|
49274
|
+
itApplicationOwner?: Maybe<ExternalUser>;
|
|
49275
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
49276
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
49277
|
+
lifeCycleStage?: Maybe<Scalars['String']['output']>;
|
|
49278
|
+
lifeCycleStageStatus?: Maybe<Scalars['String']['output']>;
|
|
49279
|
+
managedBy?: Maybe<ExternalUser>;
|
|
49280
|
+
manufacturer?: Maybe<Scalars['String']['output']>;
|
|
49281
|
+
migrationStrategy?: Maybe<Scalars['String']['output']>;
|
|
49282
|
+
operationalStatus?: Maybe<Scalars['String']['output']>;
|
|
49283
|
+
ownedBy?: Maybe<ExternalUser>;
|
|
49284
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
49285
|
+
parent?: Maybe<ExternalEntity>;
|
|
49286
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
49287
|
+
platform?: Maybe<Scalars['String']['output']>;
|
|
49288
|
+
platformHost?: Maybe<Scalars['String']['output']>;
|
|
49289
|
+
productSupportStatus?: Maybe<Scalars['String']['output']>;
|
|
49290
|
+
provider?: Maybe<ExternalProvider>;
|
|
49291
|
+
servicenowBusinessAppNumber?: Maybe<Scalars['String']['output']>;
|
|
49292
|
+
supportedBy?: Maybe<ExternalUser>;
|
|
49293
|
+
targetBusinessApp?: Maybe<Scalars['String']['output']>;
|
|
49294
|
+
technologyStack?: Maybe<Scalars['String']['output']>;
|
|
49295
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
49296
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
49297
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
49298
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
49299
|
+
userBase?: Maybe<Scalars['String']['output']>;
|
|
49300
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
49301
|
+
};
|
|
49082
49302
|
export type ExternalSoftwareService = Node & {
|
|
49083
49303
|
__typename?: 'ExternalSoftwareService';
|
|
49084
49304
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -52285,6 +52505,22 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
52285
52505
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52286
52506
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52287
52507
|
};
|
|
52508
|
+
export type GraphInferenceInferredProjectContext = {
|
|
52509
|
+
__typename?: 'GraphInferenceInferredProjectContext';
|
|
52510
|
+
cloudId: Scalars['String']['output'];
|
|
52511
|
+
queryContext: Scalars['String']['output'];
|
|
52512
|
+
};
|
|
52513
|
+
export type GraphInferenceInferredProjectMeResponse = {
|
|
52514
|
+
__typename?: 'GraphInferenceInferredProjectMeResponse';
|
|
52515
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
52516
|
+
context?: Maybe<GraphInferenceInferredProjectContext>;
|
|
52517
|
+
inferredProjects?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52518
|
+
viewer?: Maybe<GraphInferenceInferredProjectViewer>;
|
|
52519
|
+
};
|
|
52520
|
+
export type GraphInferenceInferredProjectViewer = {
|
|
52521
|
+
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
52522
|
+
accountId: Scalars['String']['output'];
|
|
52523
|
+
};
|
|
52288
52524
|
export type GraphInferenceJiraEntityContextCandidate = {
|
|
52289
52525
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
52290
52526
|
ari: Scalars['String']['output'];
|
|
@@ -55902,6 +56138,7 @@ export type GraphStore = {
|
|
|
55902
56138
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
55903
56139
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
55904
56140
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
56141
|
+
atlassianAgentSessionReadEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
55905
56142
|
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
55906
56143
|
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
55907
56144
|
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
@@ -57517,6 +57754,14 @@ export type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
57517
57754
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57518
57755
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
57519
57756
|
};
|
|
57757
|
+
export type GraphStoreAtlassianAgentSessionReadEntityArgs = {
|
|
57758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57759
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57761
|
+
id: Scalars['ID']['input'];
|
|
57762
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57763
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionReadEntitySortInput>;
|
|
57764
|
+
};
|
|
57520
57765
|
export type GraphStoreAtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
57521
57766
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57522
57767
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66439,6 +66684,9 @@ export type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
66439
66684
|
export type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
66440
66685
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66441
66686
|
};
|
|
66687
|
+
export type GraphStoreAtlassianAgentSessionReadEntitySortInput = {
|
|
66688
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66689
|
+
};
|
|
66442
66690
|
export type GraphStoreAtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
66443
66691
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66444
66692
|
};
|
|
@@ -75787,6 +76035,20 @@ export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge = {
|
|
|
75787
76035
|
};
|
|
75788
76036
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
75789
76037
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
76038
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection = HasPageInfo & {
|
|
76039
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection';
|
|
76040
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge>>>;
|
|
76041
|
+
pageInfo: PageInfo;
|
|
76042
|
+
};
|
|
76043
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge = {
|
|
76044
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge';
|
|
76045
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76047
|
+
id: Scalars['ID']['output'];
|
|
76048
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76049
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityUnion>;
|
|
76050
|
+
};
|
|
76051
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionReadEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
75790
76052
|
export type GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
75791
76053
|
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
75792
76054
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
@@ -89442,6 +89704,7 @@ export type GraphStoreV2 = {
|
|
|
89442
89704
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
89443
89705
|
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
89444
89706
|
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
89707
|
+
atlassianAgentSessionReadEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
89445
89708
|
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
89446
89709
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
89447
89710
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
@@ -90334,6 +90597,13 @@ export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeInverseArgs = {
|
|
|
90334
90597
|
id: Scalars['ID']['input'];
|
|
90335
90598
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
90336
90599
|
};
|
|
90600
|
+
export type GraphStoreV2AtlassianAgentSessionReadEntityArgs = {
|
|
90601
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90602
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90603
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90604
|
+
id: Scalars['ID']['input'];
|
|
90605
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionReadEntitySortInput>;
|
|
90606
|
+
};
|
|
90337
90607
|
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
90338
90608
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90339
90609
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96436,6 +96706,9 @@ export type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
|
96436
96706
|
export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
96437
96707
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96438
96708
|
};
|
|
96709
|
+
export type GraphStoreV2AtlassianAgentSessionReadEntitySortInput = {
|
|
96710
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96711
|
+
};
|
|
96439
96712
|
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
96440
96713
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96441
96714
|
};
|
|
@@ -100407,6 +100680,20 @@ export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInvers
|
|
|
100407
100680
|
};
|
|
100408
100681
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion = AssetsObjectType;
|
|
100409
100682
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion = AssetsObjectType;
|
|
100683
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection = HasPageInfo & {
|
|
100684
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection';
|
|
100685
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge>>>;
|
|
100686
|
+
pageInfo: PageInfo;
|
|
100687
|
+
};
|
|
100688
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge = {
|
|
100689
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge';
|
|
100690
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100691
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100692
|
+
id: Scalars['ID']['output'];
|
|
100693
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100694
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityUnion>;
|
|
100695
|
+
};
|
|
100696
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100410
100697
|
export type GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
100411
100698
|
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
100412
100699
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
@@ -117967,6 +118254,25 @@ export type JiraAddAttachmentsPayload = Payload & {
|
|
|
117967
118254
|
errors?: Maybe<Array<MutationError>>;
|
|
117968
118255
|
success: Scalars['Boolean']['output'];
|
|
117969
118256
|
};
|
|
118257
|
+
export type JiraAddBoardViewStatusColumnInput = {
|
|
118258
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
118259
|
+
status: JiraAddBoardViewStatusColumnStatusInput;
|
|
118260
|
+
viewId: Scalars['ID']['input'];
|
|
118261
|
+
};
|
|
118262
|
+
export type JiraAddBoardViewStatusColumnNewStatusInput = {
|
|
118263
|
+
name: Scalars['String']['input'];
|
|
118264
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
118265
|
+
};
|
|
118266
|
+
export type JiraAddBoardViewStatusColumnPayload = Payload & {
|
|
118267
|
+
__typename?: 'JiraAddBoardViewStatusColumnPayload';
|
|
118268
|
+
boardView?: Maybe<JiraBoardView>;
|
|
118269
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118270
|
+
success: Scalars['Boolean']['output'];
|
|
118271
|
+
};
|
|
118272
|
+
export type JiraAddBoardViewStatusColumnStatusInput = {
|
|
118273
|
+
newStatus?: InputMaybe<JiraAddBoardViewStatusColumnNewStatusInput>;
|
|
118274
|
+
statusId?: InputMaybe<Scalars['ID']['input']>;
|
|
118275
|
+
};
|
|
117970
118276
|
export type JiraAddCommentInput = {
|
|
117971
118277
|
authorCanSeeRequest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117972
118278
|
content: JiraAdfInput;
|
|
@@ -120426,6 +120732,7 @@ export declare enum JiraBoardType {
|
|
|
120426
120732
|
}
|
|
120427
120733
|
export type JiraBoardView = JiraView & Node & {
|
|
120428
120734
|
__typename?: 'JiraBoardView';
|
|
120735
|
+
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
120429
120736
|
board?: Maybe<JiraBoard>;
|
|
120430
120737
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
120431
120738
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120647,6 +120954,22 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
120647
120954
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120648
120955
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
120649
120956
|
};
|
|
120957
|
+
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
120958
|
+
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
120959
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
120960
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
120961
|
+
id: Scalars['ID']['output'];
|
|
120962
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
120963
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
120964
|
+
};
|
|
120965
|
+
export type JiraBoardViewCustomSwimlaneCellsArgs = {
|
|
120966
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120967
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120968
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
120969
|
+
};
|
|
120970
|
+
export type JiraBoardViewCustomSwimlaneTotalIssueCountArgs = {
|
|
120971
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
120972
|
+
};
|
|
120650
120973
|
export type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
120651
120974
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
120652
120975
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125605,6 +125928,12 @@ export type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration &
|
|
|
125605
125928
|
type: Scalars['String']['output'];
|
|
125606
125929
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
125607
125930
|
};
|
|
125931
|
+
export type JiraForgeDateFieldPayload = Payload & {
|
|
125932
|
+
__typename?: 'JiraForgeDateFieldPayload';
|
|
125933
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125934
|
+
field?: Maybe<JiraForgeDateField>;
|
|
125935
|
+
success: Scalars['Boolean']['output'];
|
|
125936
|
+
};
|
|
125608
125937
|
export type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
125609
125938
|
__typename?: 'JiraForgeDatetimeField';
|
|
125610
125939
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -127846,6 +128175,7 @@ export type JiraIssueConnection = JiraListRowConnection & {
|
|
|
127846
128175
|
jql?: Maybe<Scalars['String']['output']>;
|
|
127847
128176
|
pageCursors?: Maybe<JiraPageCursors>;
|
|
127848
128177
|
pageInfo: PageInfo;
|
|
128178
|
+
searchWarnings?: Maybe<Array<JiraIssueSearchWarning>>;
|
|
127849
128179
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127850
128180
|
totalIssueSearchResultCount?: Maybe<Scalars['Int']['output']>;
|
|
127851
128181
|
};
|
|
@@ -129472,6 +129802,10 @@ export type JiraIssueSearchViewQueryInput = {
|
|
|
129472
129802
|
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
129473
129803
|
};
|
|
129474
129804
|
export type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
129805
|
+
export type JiraIssueSearchWarning = {
|
|
129806
|
+
__typename?: 'JiraIssueSearchWarning';
|
|
129807
|
+
message: Scalars['String']['output'];
|
|
129808
|
+
};
|
|
129475
129809
|
export type JiraIssueSection = {
|
|
129476
129810
|
__typename?: 'JiraIssueSection';
|
|
129477
129811
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -130396,6 +130730,15 @@ export declare enum JiraJqlClauseType {
|
|
|
130396
130730
|
OrderBy = "ORDER_BY",
|
|
130397
130731
|
Where = "WHERE"
|
|
130398
130732
|
}
|
|
130733
|
+
export type JiraJqlCmdbFieldValue = JiraJqlFieldValue & {
|
|
130734
|
+
__typename?: 'JiraJqlCmdbFieldValue';
|
|
130735
|
+
avatar?: Maybe<JiraCmdbAvatar>;
|
|
130736
|
+
displayName: Scalars['String']['output'];
|
|
130737
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
130738
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
130739
|
+
jqlTerm: Scalars['String']['output'];
|
|
130740
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
130741
|
+
};
|
|
130399
130742
|
export type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
130400
130743
|
__typename?: 'JiraJqlComponentFieldValue';
|
|
130401
130744
|
component?: Maybe<JiraComponent>;
|
|
@@ -131997,6 +132340,7 @@ export type JiraMutation = {
|
|
|
131997
132340
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
131998
132341
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
131999
132342
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
132343
|
+
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
132000
132344
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
132001
132345
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
132002
132346
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
@@ -132024,6 +132368,7 @@ export type JiraMutation = {
|
|
|
132024
132368
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
132025
132369
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
132026
132370
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
132371
|
+
updateJiraVersionCurrentStage?: Maybe<JiraUpdateVersionPayload>;
|
|
132027
132372
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
132028
132373
|
updateJiraVersionPosition?: Maybe<JiraUpdateVersionPayload>;
|
|
132029
132374
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -132621,6 +132966,9 @@ export type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
132621
132966
|
export type JiraMutationUpdateFlagFieldArgs = {
|
|
132622
132967
|
input: JiraUpdateFlagFieldInput;
|
|
132623
132968
|
};
|
|
132969
|
+
export type JiraMutationUpdateForgeDateFieldArgs = {
|
|
132970
|
+
input: JiraUpdateDateFieldInput;
|
|
132971
|
+
};
|
|
132624
132972
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
132625
132973
|
input: JiraUpdateNumberFieldInput;
|
|
132626
132974
|
};
|
|
@@ -132719,6 +133067,9 @@ export type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
132719
133067
|
export type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
132720
133068
|
input: JiraVersionUpdateApproverStatusInput;
|
|
132721
133069
|
};
|
|
133070
|
+
export type JiraMutationUpdateJiraVersionCurrentStageArgs = {
|
|
133071
|
+
input: JiraUpdateVersionCurrentStageInput;
|
|
133072
|
+
};
|
|
132722
133073
|
export type JiraMutationUpdateJiraVersionDriverArgs = {
|
|
132723
133074
|
input: JiraUpdateVersionDriverInput;
|
|
132724
133075
|
};
|
|
@@ -136081,6 +136432,7 @@ export type JiraQuery = {
|
|
|
136081
136432
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
136082
136433
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
136083
136434
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
136435
|
+
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
136084
136436
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
136085
136437
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
136086
136438
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
@@ -136965,6 +137317,9 @@ export type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
136965
137317
|
cloudId: Scalars['ID']['input'];
|
|
136966
137318
|
issueKey: Scalars['String']['input'];
|
|
136967
137319
|
};
|
|
137320
|
+
export type JiraQueryJiraVersionStageInfoByIdsArgs = {
|
|
137321
|
+
ids: Array<Scalars['ID']['input']>;
|
|
137322
|
+
};
|
|
136968
137323
|
export type JiraQueryJiraWorkItemJourneysArgs = {
|
|
136969
137324
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136970
137325
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -143890,6 +144245,10 @@ export type JiraUpdateVersionArchivedStatusInput = {
|
|
|
143890
144245
|
id: Scalars['ID']['input'];
|
|
143891
144246
|
isArchived: Scalars['Boolean']['input'];
|
|
143892
144247
|
};
|
|
144248
|
+
export type JiraUpdateVersionCurrentStageInput = {
|
|
144249
|
+
currentStage: Scalars['String']['input'];
|
|
144250
|
+
id: Scalars['ID']['input'];
|
|
144251
|
+
};
|
|
143893
144252
|
export type JiraUpdateVersionDescriptionInput = {
|
|
143894
144253
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
143895
144254
|
id: Scalars['ID']['input'];
|
|
@@ -144341,6 +144700,7 @@ export type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node &
|
|
|
144341
144700
|
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
144342
144701
|
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
144343
144702
|
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
144703
|
+
stageInfo?: Maybe<JiraVersionStageInfo>;
|
|
144344
144704
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
144345
144705
|
statistics?: Maybe<JiraVersionStatistics>;
|
|
144346
144706
|
status?: Maybe<JiraVersionStatus>;
|
|
@@ -144499,11 +144859,13 @@ export type JiraVersionContributorEdge = {
|
|
|
144499
144859
|
node?: Maybe<User>;
|
|
144500
144860
|
};
|
|
144501
144861
|
export type JiraVersionCreateMutationInput = {
|
|
144862
|
+
approvalsRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144502
144863
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
144503
144864
|
driver?: InputMaybe<Scalars['ID']['input']>;
|
|
144504
144865
|
name: Scalars['String']['input'];
|
|
144505
144866
|
projectId: Scalars['ID']['input'];
|
|
144506
144867
|
releaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144868
|
+
stages?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
144507
144869
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144508
144870
|
};
|
|
144509
144871
|
export type JiraVersionDeleteApproverPayload = Payload & {
|
|
@@ -144750,6 +145112,13 @@ export type JiraVersionSortInput = {
|
|
|
144750
145112
|
order: SortDirection;
|
|
144751
145113
|
sortByField: JiraVersionSortField;
|
|
144752
145114
|
};
|
|
145115
|
+
export type JiraVersionStageInfo = {
|
|
145116
|
+
__typename?: 'JiraVersionStageInfo';
|
|
145117
|
+
approvalsRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
145118
|
+
currentStage?: Maybe<Scalars['String']['output']>;
|
|
145119
|
+
id: Scalars['ID']['output'];
|
|
145120
|
+
stages?: Maybe<Array<Scalars['String']['output']>>;
|
|
145121
|
+
};
|
|
144753
145122
|
export type JiraVersionStatistics = {
|
|
144754
145123
|
__typename?: 'JiraVersionStatistics';
|
|
144755
145124
|
done?: Maybe<Scalars['Int']['output']>;
|
|
@@ -144812,11 +145181,13 @@ export type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
|
144812
145181
|
success: Scalars['Boolean']['output'];
|
|
144813
145182
|
};
|
|
144814
145183
|
export type JiraVersionUpdateMutationInput = {
|
|
145184
|
+
approvalsRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144815
145185
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
144816
145186
|
driver?: InputMaybe<Scalars['ID']['input']>;
|
|
144817
145187
|
id: Scalars['ID']['input'];
|
|
144818
145188
|
name: Scalars['String']['input'];
|
|
144819
145189
|
releaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145190
|
+
stages?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
144820
145191
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144821
145192
|
};
|
|
144822
145193
|
export type JiraVersionUpdatedWarningConfigInput = {
|
|
@@ -146616,9 +146987,11 @@ export type JsmChannelsRovoServiceResolutionPlanGeneratedResult = JsmChannelsRov
|
|
|
146616
146987
|
export type JsmChannelsRovoServiceSkill = {
|
|
146617
146988
|
__typename?: 'JsmChannelsRovoServiceSkill';
|
|
146618
146989
|
authStatus: JsmChannelsRovoServiceSkillAuthStatus;
|
|
146990
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
146619
146991
|
connectUrl?: Maybe<Scalars['String']['output']>;
|
|
146620
146992
|
description?: Maybe<Scalars['String']['output']>;
|
|
146621
146993
|
displayName: Scalars['String']['output'];
|
|
146994
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146622
146995
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
146623
146996
|
id: Scalars['ID']['output'];
|
|
146624
146997
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -148249,6 +148622,15 @@ export type KitsuneFieldEdge = KitsuneEdge & {
|
|
|
148249
148622
|
cursor: Scalars['String']['output'];
|
|
148250
148623
|
node?: Maybe<KitsuneField>;
|
|
148251
148624
|
};
|
|
148625
|
+
export type KitsuneFieldOptionUpdateInput = {
|
|
148626
|
+
id: Scalars['ID']['input'];
|
|
148627
|
+
name: Scalars['String']['input'];
|
|
148628
|
+
};
|
|
148629
|
+
export type KitsuneFieldOptionsInput = {
|
|
148630
|
+
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148631
|
+
remove?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
148632
|
+
update?: InputMaybe<Array<KitsuneFieldOptionUpdateInput>>;
|
|
148633
|
+
};
|
|
148252
148634
|
export declare enum KitsuneFieldType {
|
|
148253
148635
|
Content = "CONTENT",
|
|
148254
148636
|
CreationDate = "CREATION_DATE",
|
|
@@ -155962,6 +156344,7 @@ export type MercuryBenefitItemSummary = {
|
|
|
155962
156344
|
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
155963
156345
|
estimateAtCompletion?: Maybe<MercuryEstimateBenefitAtCompletion>;
|
|
155964
156346
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
156347
|
+
remainingEstimateAtCompletion?: Maybe<MercuryRemainingEstimateBenefitAtCompletion>;
|
|
155965
156348
|
};
|
|
155966
156349
|
export type MercuryBenefitItemUpdatedField = {
|
|
155967
156350
|
__typename?: 'MercuryBenefitItemUpdatedField';
|
|
@@ -156156,7 +156539,7 @@ export type MercuryChangeProposalActivityHistoryConnection = {
|
|
|
156156
156539
|
pageInfo: PageInfo;
|
|
156157
156540
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
156158
156541
|
};
|
|
156159
|
-
export type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
156542
|
+
export type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryChangeProposal | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
156160
156543
|
export type MercuryChangeProposalActivityHistoryEdge = {
|
|
156161
156544
|
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
156162
156545
|
cursor: Scalars['String']['output'];
|
|
@@ -156567,6 +156950,7 @@ export type MercuryCostItemSummary = {
|
|
|
156567
156950
|
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
156568
156951
|
estimateAtCompletion?: Maybe<MercuryEstimateCostAtCompletion>;
|
|
156569
156952
|
financialVersionCostSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionCostSummary>>>;
|
|
156953
|
+
remainingEstimateAtCompletion?: Maybe<MercuryRemainingEstimateCostAtCompletion>;
|
|
156570
156954
|
};
|
|
156571
156955
|
export type MercuryCostItemUpdatedField = {
|
|
156572
156956
|
__typename?: 'MercuryCostItemUpdatedField';
|
|
@@ -164035,25 +164419,25 @@ export declare enum MitigationHypothesisType {
|
|
|
164035
164419
|
}
|
|
164036
164420
|
export type MitigationIndicator = {
|
|
164037
164421
|
__typename?: 'MitigationIndicator';
|
|
164038
|
-
advisorySignal?: Maybe<AdvisorySignalIndicator>;
|
|
164039
164422
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
164040
164423
|
createdAt: Scalars['DateTime']['output'];
|
|
164041
|
-
|
|
164424
|
+
details?: Maybe<MitigationIndicatorDetails>;
|
|
164042
164425
|
indicatorId: Scalars['ID']['output'];
|
|
164043
164426
|
indicatorType: MitigationIndicatorType;
|
|
164044
164427
|
mitigationId: Scalars['ID']['output'];
|
|
164045
|
-
plans
|
|
164428
|
+
plans?: Maybe<Array<MitigationPlan>>;
|
|
164046
164429
|
rejected: Scalars['Boolean']['output'];
|
|
164047
164430
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164048
164431
|
rejectedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
164049
164432
|
rejectionReason?: Maybe<IndicatorRejectionReason>;
|
|
164050
164433
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164051
|
-
|
|
164434
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
164052
164435
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164053
164436
|
};
|
|
164054
164437
|
export type MitigationIndicatorPlansArgs = {
|
|
164055
164438
|
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164056
164439
|
};
|
|
164440
|
+
export type MitigationIndicatorDetails = AdvisorySignalIndicator | HypothesisIndicator | SymptomIndicator;
|
|
164057
164441
|
export declare enum MitigationIndicatorType {
|
|
164058
164442
|
AdvisorySignal = "ADVISORY_SIGNAL",
|
|
164059
164443
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -164100,7 +164484,8 @@ export declare enum MitigationScopeType {
|
|
|
164100
164484
|
export declare enum MitigationStepStatus {
|
|
164101
164485
|
Done = "DONE",
|
|
164102
164486
|
Errored = "ERRORED",
|
|
164103
|
-
InProgress = "IN_PROGRESS"
|
|
164487
|
+
InProgress = "IN_PROGRESS",
|
|
164488
|
+
Waiting = "WAITING"
|
|
164104
164489
|
}
|
|
164105
164490
|
export declare enum MitigationSymptomType {
|
|
164106
164491
|
LinkedAlerts = "LINKED_ALERTS",
|
|
@@ -164384,7 +164769,9 @@ export type Mutation = {
|
|
|
164384
164769
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
164385
164770
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
164386
164771
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
164772
|
+
assetsVertical_disableVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
164387
164773
|
assetsVertical_enableCustomInsight?: Maybe<AssetsVerticalEnableCustomInsightPayload>;
|
|
164774
|
+
assetsVertical_enableVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
164388
164775
|
assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
|
|
164389
164776
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
164390
164777
|
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
@@ -164943,6 +165330,7 @@ export type Mutation = {
|
|
|
164943
165330
|
goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
|
|
164944
165331
|
goals_restoreGoals?: Maybe<TownsquareGoalsRestoreGoalsPayload>;
|
|
164945
165332
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
165333
|
+
goals_setDefaultAccessLevel?: Maybe<TownsquareGoalsSetDefaultAccessLevelPayload>;
|
|
164946
165334
|
goals_setParentGoal?: Maybe<TownsquareGoalsSetParentGoalPayload>;
|
|
164947
165335
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
164948
165336
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
@@ -165149,6 +165537,7 @@ export type Mutation = {
|
|
|
165149
165537
|
jira_acceptAgentContextItem?: Maybe<JiraAcceptAgentContextItemPayload>;
|
|
165150
165538
|
jira_addAgentContextItem?: Maybe<JiraAddAgentContextItemPayload>;
|
|
165151
165539
|
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
165540
|
+
jira_addBoardViewStatusColumn?: Maybe<JiraAddBoardViewStatusColumnPayload>;
|
|
165152
165541
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
165153
165542
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
165154
165543
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -165333,12 +165722,14 @@ export type Mutation = {
|
|
|
165333
165722
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
165334
165723
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
165335
165724
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
165725
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneFeedback>;
|
|
165336
165726
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
165337
165727
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
165338
165728
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
165339
165729
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
165340
165730
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
165341
165731
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
165732
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedRecord>;
|
|
165342
165733
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
165343
165734
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
165344
165735
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -165417,6 +165808,7 @@ export type Mutation = {
|
|
|
165417
165808
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
165418
165809
|
playbook_rejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
165419
165810
|
playbook_rejectPlan?: Maybe<PlanRejectionPayload>;
|
|
165811
|
+
playbook_toggleChecklistItem?: Maybe<ToggleChecklistItemPayload>;
|
|
165420
165812
|
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
165421
165813
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
165422
165814
|
playbook_unrejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
@@ -166641,9 +167033,15 @@ export type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
|
166641
167033
|
export type MutationAssetsVertical_DeleteRoleAssignmentsArgs = {
|
|
166642
167034
|
input: AssetsVerticalDeleteRoleAssignmentsInput;
|
|
166643
167035
|
};
|
|
167036
|
+
export type MutationAssetsVertical_DisableVerticalInstantiationArgs = {
|
|
167037
|
+
input: AssetsVerticalDisableVerticalInstantiationInput;
|
|
167038
|
+
};
|
|
166644
167039
|
export type MutationAssetsVertical_EnableCustomInsightArgs = {
|
|
166645
167040
|
input: AssetsVerticalEnableCustomInsightInput;
|
|
166646
167041
|
};
|
|
167042
|
+
export type MutationAssetsVertical_EnableVerticalInstantiationArgs = {
|
|
167043
|
+
input: AssetsVerticalEnableVerticalInstantiationInput;
|
|
167044
|
+
};
|
|
166647
167045
|
export type MutationAssetsVertical_GenerateCustomInsightArgs = {
|
|
166648
167046
|
input: AssetsVerticalGenerateCustomInsightInput;
|
|
166649
167047
|
};
|
|
@@ -168611,6 +169009,9 @@ export type MutationGoals_RestoreGoalsArgs = {
|
|
|
168611
169009
|
export type MutationGoals_RevokeAccessArgs = {
|
|
168612
169010
|
input: TownsquareGoalRevokeAccessInput;
|
|
168613
169011
|
};
|
|
169012
|
+
export type MutationGoals_SetDefaultAccessLevelArgs = {
|
|
169013
|
+
input: TownsquareGoalsSetDefaultAccessLevelInput;
|
|
169014
|
+
};
|
|
168614
169015
|
export type MutationGoals_SetParentGoalArgs = {
|
|
168615
169016
|
input: TownsquareGoalsSetParentGoalInput;
|
|
168616
169017
|
};
|
|
@@ -169223,6 +169624,9 @@ export type MutationJira_AddAgentContextItemArgs = {
|
|
|
169223
169624
|
export type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
169224
169625
|
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
169225
169626
|
};
|
|
169627
|
+
export type MutationJira_AddBoardViewStatusColumnArgs = {
|
|
169628
|
+
input: JiraAddBoardViewStatusColumnInput;
|
|
169629
|
+
};
|
|
169226
169630
|
export type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
169227
169631
|
cloudId: Scalars['ID']['input'];
|
|
169228
169632
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -169864,6 +170268,9 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
169864
170268
|
feedbackAri: Scalars['ID']['input'];
|
|
169865
170269
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169866
170270
|
};
|
|
170271
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
170272
|
+
id: Scalars['ID']['input'];
|
|
170273
|
+
};
|
|
169867
170274
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
169868
170275
|
insightAri: Scalars['ID']['input'];
|
|
169869
170276
|
};
|
|
@@ -169887,6 +170294,9 @@ export type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
169887
170294
|
feedbackAri: Scalars['ID']['input'];
|
|
169888
170295
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
169889
170296
|
};
|
|
170297
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
170298
|
+
id: Scalars['ID']['input'];
|
|
170299
|
+
};
|
|
169890
170300
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
169891
170301
|
id: Scalars['ID']['input'];
|
|
169892
170302
|
};
|
|
@@ -169955,6 +170365,7 @@ export type MutationKitsune_UpdateFieldArgs = {
|
|
|
169955
170365
|
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
169956
170366
|
id: Scalars['ID']['input'];
|
|
169957
170367
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
170368
|
+
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
169958
170369
|
};
|
|
169959
170370
|
export type MutationKitsune_UpdateInsightArgs = {
|
|
169960
170371
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
@@ -170129,6 +170540,9 @@ export type MutationPlaybook_RejectIndicatorArgs = {
|
|
|
170129
170540
|
export type MutationPlaybook_RejectPlanArgs = {
|
|
170130
170541
|
input: RejectPlanInput;
|
|
170131
170542
|
};
|
|
170543
|
+
export type MutationPlaybook_ToggleChecklistItemArgs = {
|
|
170544
|
+
input: ToggleChecklistItemInput;
|
|
170545
|
+
};
|
|
170132
170546
|
export type MutationPlaybook_TriggerMitigationArgs = {
|
|
170133
170547
|
input: TriggerMitigationInput;
|
|
170134
170548
|
};
|
|
@@ -174600,6 +175014,7 @@ export type Query = {
|
|
|
174600
175014
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
174601
175015
|
apps?: Maybe<AppConnection>;
|
|
174602
175016
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
175017
|
+
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
174603
175018
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
174604
175019
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
174605
175020
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
@@ -174610,7 +175025,7 @@ export type Query = {
|
|
|
174610
175025
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
174611
175026
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
174612
175027
|
assetsDM_dataDictionaryGroups?: Maybe<AssetsDmDataDictionaryGroupsResponse>;
|
|
174613
|
-
assetsDM_dataSource?: Maybe<
|
|
175028
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetailResponse>;
|
|
174614
175029
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
174615
175030
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
174616
175031
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
@@ -174661,6 +175076,7 @@ export type Query = {
|
|
|
174661
175076
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
174662
175077
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
174663
175078
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
175079
|
+
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
174664
175080
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
174665
175081
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
174666
175082
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
@@ -175129,6 +175545,7 @@ export type Query = {
|
|
|
175129
175545
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
175130
175546
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
175131
175547
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
175548
|
+
devai_aiPlannerAccess?: Maybe<DevAiAiPlannerAccessResponse>;
|
|
175132
175549
|
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
175133
175550
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
175134
175551
|
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -175182,6 +175599,7 @@ export type Query = {
|
|
|
175182
175599
|
dlp_getAutoClassificationRuleScope?: Maybe<DlpScope>;
|
|
175183
175600
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
175184
175601
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
175602
|
+
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
175185
175603
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
175186
175604
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
175187
175605
|
dvcs?: Maybe<DvcsQuery>;
|
|
@@ -175267,6 +175685,7 @@ export type Query = {
|
|
|
175267
175685
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
175268
175686
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
175269
175687
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
175688
|
+
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
175270
175689
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
175271
175690
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
175272
175691
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -175293,6 +175712,7 @@ export type Query = {
|
|
|
175293
175712
|
graphStoreV2_assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
175294
175713
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
175295
175714
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
175715
|
+
graphStoreV2_atlassianAgentSessionReadEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
175296
175716
|
graphStoreV2_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
175297
175717
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
175298
175718
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
@@ -176219,6 +176639,7 @@ export type Query = {
|
|
|
176219
176639
|
graphStore_atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
176220
176640
|
graphStore_atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
176221
176641
|
graphStore_atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
176642
|
+
graphStore_atlassianAgentSessionReadEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
176222
176643
|
graphStore_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
176223
176644
|
graphStore_atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
176224
176645
|
graphStore_atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
@@ -177737,6 +178158,7 @@ export type Query = {
|
|
|
177737
178158
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
177738
178159
|
radar_skillsSearch?: Maybe<RadarSkillConnection>;
|
|
177739
178160
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
178161
|
+
radar_syncHistoriesSearch?: Maybe<RadarSyncHistoriesConnection>;
|
|
177740
178162
|
radar_viewByAri?: Maybe<RadarView>;
|
|
177741
178163
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
177742
178164
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -179150,6 +179572,10 @@ export type QueryAppsArgs = {
|
|
|
179150
179572
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
179151
179573
|
cloudId: Scalars['ID']['input'];
|
|
179152
179574
|
};
|
|
179575
|
+
export type QueryAssetsDm_AdapterClientVersionStatusArgs = {
|
|
179576
|
+
cloudId: Scalars['ID']['input'];
|
|
179577
|
+
workspaceId: Scalars['ID']['input'];
|
|
179578
|
+
};
|
|
179153
179579
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
179154
179580
|
cloudId: Scalars['ID']['input'];
|
|
179155
179581
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -179532,6 +179958,10 @@ export type QueryAssetsVertical_AssetTypesTrackingsArgs = {
|
|
|
179532
179958
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
179533
179959
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
179534
179960
|
};
|
|
179961
|
+
export type QueryAssetsVertical_AsyncTaskArgs = {
|
|
179962
|
+
cloudId: Scalars['ID']['input'];
|
|
179963
|
+
taskId: Scalars['ID']['input'];
|
|
179964
|
+
};
|
|
179535
179965
|
export type QueryAssetsVertical_BundleArgs = {
|
|
179536
179966
|
cloudId: Scalars['ID']['input'];
|
|
179537
179967
|
type: AssetsVerticalBundleType;
|
|
@@ -181638,6 +182068,9 @@ export type QueryDevOpsServicesArgs = {
|
|
|
181638
182068
|
export type QueryDevOpsServicesByIdArgs = {
|
|
181639
182069
|
ids: Array<Scalars['ID']['input']>;
|
|
181640
182070
|
};
|
|
182071
|
+
export type QueryDevai_AiPlannerAccessArgs = {
|
|
182072
|
+
cloudId: Scalars['ID']['input'];
|
|
182073
|
+
};
|
|
181641
182074
|
export type QueryDevai_AutodevAgentForJobArgs = {
|
|
181642
182075
|
cloudId: Scalars['ID']['input'];
|
|
181643
182076
|
jobId: Scalars['ID']['input'];
|
|
@@ -181907,6 +182340,13 @@ export type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
181907
182340
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
181908
182341
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
181909
182342
|
};
|
|
182343
|
+
export type QueryDlp_GetFindingsArgs = {
|
|
182344
|
+
minConfidence?: InputMaybe<Scalars['String']['input']>;
|
|
182345
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
182346
|
+
orgId: Scalars['String']['input'];
|
|
182347
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
182348
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
182349
|
+
};
|
|
181910
182350
|
export type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
181911
182351
|
orgId: Scalars['String']['input'];
|
|
181912
182352
|
taskId: Scalars['String']['input'];
|
|
@@ -182346,6 +182786,13 @@ export type QueryGraphStoreV2_AssetsObjectTypeHasChildAssetsObjectTypeInverseArg
|
|
|
182346
182786
|
id: Scalars['ID']['input'];
|
|
182347
182787
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
182348
182788
|
};
|
|
182789
|
+
export type QueryGraphStoreV2_AtlassianAgentSessionReadEntityArgs = {
|
|
182790
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
182791
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182792
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182793
|
+
id: Scalars['ID']['input'];
|
|
182794
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionReadEntitySortInput>;
|
|
182795
|
+
};
|
|
182349
182796
|
export type QueryGraphStoreV2_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
182350
182797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182351
182798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188924,6 +189371,14 @@ export type QueryGraphStore_AtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
188924
189371
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188925
189372
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
188926
189373
|
};
|
|
189374
|
+
export type QueryGraphStore_AtlassianAgentSessionReadEntityArgs = {
|
|
189375
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189376
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189377
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189378
|
+
id: Scalars['ID']['input'];
|
|
189379
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
189380
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionReadEntitySortInput>;
|
|
189381
|
+
};
|
|
188927
189382
|
export type QueryGraphStore_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
188928
189383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188929
189384
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -199112,6 +199567,14 @@ export type QueryRadar_StarredEntitiesArgs = {
|
|
|
199112
199567
|
cloudId: Scalars['ID']['input'];
|
|
199113
199568
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
199114
199569
|
};
|
|
199570
|
+
export type QueryRadar_SyncHistoriesSearchArgs = {
|
|
199571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199572
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
199573
|
+
cloudId: Scalars['ID']['input'];
|
|
199574
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199575
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
199576
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
199577
|
+
};
|
|
199115
199578
|
export type QueryRadar_ViewByAriArgs = {
|
|
199116
199579
|
id: Scalars['ID']['input'];
|
|
199117
199580
|
};
|
|
@@ -200348,6 +200811,7 @@ export declare enum RadarEntityType {
|
|
|
200348
200811
|
Proposal = "proposal",
|
|
200349
200812
|
ProposedMovement = "proposedMovement",
|
|
200350
200813
|
Skill = "skill",
|
|
200814
|
+
SyncHistory = "syncHistory",
|
|
200351
200815
|
Team = "team",
|
|
200352
200816
|
View = "view",
|
|
200353
200817
|
Worker = "worker"
|
|
@@ -200419,6 +200883,7 @@ export type RadarFieldValuesEdge = RadarEdge & {
|
|
|
200419
200883
|
};
|
|
200420
200884
|
export type RadarFields = {
|
|
200421
200885
|
__typename?: 'RadarFields';
|
|
200886
|
+
aiConnectorFields: Array<RadarFieldDefinition>;
|
|
200422
200887
|
aiUsageFields: Array<RadarFieldDefinition>;
|
|
200423
200888
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
200424
200889
|
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
@@ -200565,6 +201030,7 @@ export declare enum RadarMetricScopeType {
|
|
|
200565
201030
|
}
|
|
200566
201031
|
export type RadarMetricSettings = {
|
|
200567
201032
|
__typename?: 'RadarMetricSettings';
|
|
201033
|
+
dimensions?: Maybe<Array<Scalars['String']['output']>>;
|
|
200568
201034
|
id: Scalars['ID']['output'];
|
|
200569
201035
|
metricKey: RadarOrgMetric;
|
|
200570
201036
|
metricType: RadarMetricType;
|
|
@@ -200584,6 +201050,7 @@ export type RadarMetricValue = {
|
|
|
200584
201050
|
__typename?: 'RadarMetricValue';
|
|
200585
201051
|
dimensionName?: Maybe<Scalars['String']['output']>;
|
|
200586
201052
|
id: Scalars['ID']['output'];
|
|
201053
|
+
scopeEntity?: Maybe<RadarAriObject>;
|
|
200587
201054
|
scopeId: Scalars['String']['output'];
|
|
200588
201055
|
scopeType: RadarMetricScopeType;
|
|
200589
201056
|
target: Scalars['Float']['output'];
|
|
@@ -200886,13 +201353,27 @@ export type RadarSyncData = {
|
|
|
200886
201353
|
__typename?: 'RadarSyncData';
|
|
200887
201354
|
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
200888
201355
|
};
|
|
201356
|
+
export type RadarSyncHistoriesConnection = RadarConnection & {
|
|
201357
|
+
__typename?: 'RadarSyncHistoriesConnection';
|
|
201358
|
+
edges: Array<RadarSyncHistoriesEdge>;
|
|
201359
|
+
nodes: Array<RadarSyncHistory>;
|
|
201360
|
+
pageInfo: PageInfo;
|
|
201361
|
+
totalCount: Scalars['Int']['output'];
|
|
201362
|
+
};
|
|
201363
|
+
export type RadarSyncHistoriesEdge = RadarEdge & {
|
|
201364
|
+
__typename?: 'RadarSyncHistoriesEdge';
|
|
201365
|
+
cursor: Scalars['String']['output'];
|
|
201366
|
+
node: RadarSyncHistory;
|
|
201367
|
+
};
|
|
200889
201368
|
export type RadarSyncHistory = {
|
|
200890
201369
|
__typename?: 'RadarSyncHistory';
|
|
200891
201370
|
createdAt: Scalars['DateTime']['output'];
|
|
200892
201371
|
id: Scalars['ID']['output'];
|
|
200893
201372
|
status: RadarSyncHistoryStatus;
|
|
201373
|
+
summary?: Maybe<RadarSyncHistorySummary>;
|
|
200894
201374
|
triggeredBy: Scalars['String']['output'];
|
|
200895
201375
|
triggeredByUser?: Maybe<User>;
|
|
201376
|
+
type: Scalars['String']['output'];
|
|
200896
201377
|
updatedAt: Scalars['DateTime']['output'];
|
|
200897
201378
|
};
|
|
200898
201379
|
export declare enum RadarSyncHistoryStatus {
|
|
@@ -200906,6 +201387,19 @@ export declare enum RadarSyncHistoryStatus {
|
|
|
200906
201387
|
ThirdPartyConnectorRunning = "THIRD_PARTY_CONNECTOR_RUNNING",
|
|
200907
201388
|
TimedOut = "TIMED_OUT"
|
|
200908
201389
|
}
|
|
201390
|
+
export type RadarSyncHistorySummary = {
|
|
201391
|
+
__typename?: 'RadarSyncHistorySummary';
|
|
201392
|
+
errors?: Maybe<Scalars['JSON']['output']>;
|
|
201393
|
+
meta?: Maybe<Scalars['JSON']['output']>;
|
|
201394
|
+
sources?: Maybe<Array<RadarSyncHistorySummarySource>>;
|
|
201395
|
+
};
|
|
201396
|
+
export type RadarSyncHistorySummarySource = {
|
|
201397
|
+
__typename?: 'RadarSyncHistorySummarySource';
|
|
201398
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
201399
|
+
size?: Maybe<Scalars['String']['output']>;
|
|
201400
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
201401
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
201402
|
+
};
|
|
200909
201403
|
export type RadarUpdateAiConnectorInput = {
|
|
200910
201404
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
200911
201405
|
id: Scalars['ID']['input'];
|
|
@@ -203356,6 +203850,7 @@ export type SearchL2FeatureProvider = {
|
|
|
203356
203850
|
};
|
|
203357
203851
|
export type SearchLayerDefinition = {
|
|
203358
203852
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
203853
|
+
armId?: InputMaybe<Scalars['String']['input']>;
|
|
203359
203854
|
connectorSources?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
203360
203855
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
203361
203856
|
integrationARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -204266,7 +204761,32 @@ export declare enum SearchResultType {
|
|
|
204266
204761
|
Video = "video",
|
|
204267
204762
|
Whiteboard = "whiteboard"
|
|
204268
204763
|
}
|
|
204764
|
+
export type SearchSalesforceAttributeFilter = {
|
|
204765
|
+
field: Scalars['String']['input'];
|
|
204766
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
204767
|
+
operator: SearchSalesforceAttributeFilterOperator;
|
|
204768
|
+
source: SearchSalesforceAttributeFilterSource;
|
|
204769
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
204770
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
204771
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204772
|
+
};
|
|
204773
|
+
export declare enum SearchSalesforceAttributeFilterOperator {
|
|
204774
|
+
Between = "BETWEEN",
|
|
204775
|
+
Eq = "EQ",
|
|
204776
|
+
Gt = "GT",
|
|
204777
|
+
Gte = "GTE",
|
|
204778
|
+
In = "IN",
|
|
204779
|
+
Lt = "LT",
|
|
204780
|
+
Lte = "LTE"
|
|
204781
|
+
}
|
|
204782
|
+
export declare enum SearchSalesforceAttributeFilterSource {
|
|
204783
|
+
CustomPropertiesDate = "CUSTOM_PROPERTIES_DATE",
|
|
204784
|
+
CustomPropertiesKeyword = "CUSTOM_PROPERTIES_KEYWORD",
|
|
204785
|
+
CustomPropertiesNumber = "CUSTOM_PROPERTIES_NUMBER",
|
|
204786
|
+
Relationships = "RELATIONSHIPS"
|
|
204787
|
+
}
|
|
204269
204788
|
export type SearchSalesforceFilters = {
|
|
204789
|
+
attributeFilters?: InputMaybe<Array<SearchSalesforceAttributeFilter>>;
|
|
204270
204790
|
campaignStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204271
204791
|
caseStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204272
204792
|
closeDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -223324,10 +223844,6 @@ export type ShepherdUser = {
|
|
|
223324
223844
|
aaid: Scalars['ID']['output'];
|
|
223325
223845
|
user?: Maybe<User>;
|
|
223326
223846
|
};
|
|
223327
|
-
export declare enum ShepherdVortexModeStatus {
|
|
223328
|
-
Disabled = "DISABLED",
|
|
223329
|
-
Enabled = "ENABLED"
|
|
223330
|
-
}
|
|
223331
223847
|
export declare enum ShepherdWebhookDestinationType {
|
|
223332
223848
|
Default = "DEFAULT",
|
|
223333
223849
|
MicrosoftTeams = "MICROSOFT_TEAMS"
|
|
@@ -223369,7 +223885,6 @@ export type ShepherdWorkspace = Node & {
|
|
|
223369
223885
|
orgId: Scalars['ID']['output'];
|
|
223370
223886
|
shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
|
|
223371
223887
|
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
223372
|
-
vortexMode?: Maybe<ShepherdVortexModeStatus>;
|
|
223373
223888
|
};
|
|
223374
223889
|
export type ShepherdWorkspaceCustomDetectionsArgs = {
|
|
223375
223890
|
customDetectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -229946,6 +230461,18 @@ export type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
229946
230461
|
statusCode: Scalars['Int']['output'];
|
|
229947
230462
|
success: Scalars['Boolean']['output'];
|
|
229948
230463
|
};
|
|
230464
|
+
export type ToggleChecklistItemInput = {
|
|
230465
|
+
done: Scalars['Boolean']['input'];
|
|
230466
|
+
itemId: Scalars['String']['input'];
|
|
230467
|
+
playbookInstanceAri: Scalars['ID']['input'];
|
|
230468
|
+
stepId: Scalars['String']['input'];
|
|
230469
|
+
};
|
|
230470
|
+
export type ToggleChecklistItemPayload = Payload & {
|
|
230471
|
+
__typename?: 'ToggleChecklistItemPayload';
|
|
230472
|
+
errors?: Maybe<Array<MutationError>>;
|
|
230473
|
+
playbookInstanceStep?: Maybe<JiraPlaybookInstanceStep>;
|
|
230474
|
+
success: Scalars['Boolean']['output'];
|
|
230475
|
+
};
|
|
229949
230476
|
export type Toolchain = {
|
|
229950
230477
|
__typename?: 'Toolchain';
|
|
229951
230478
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|
|
@@ -230801,6 +231328,7 @@ export type TownsquareGoal = Node & {
|
|
|
230801
231328
|
tags?: Maybe<TownsquareTagConnection>;
|
|
230802
231329
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
230803
231330
|
teams?: Maybe<TownsquareGoalTeamConnection>;
|
|
231331
|
+
updateStreak?: Maybe<Scalars['Int']['output']>;
|
|
230804
231332
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
230805
231333
|
url?: Maybe<Scalars['String']['output']>;
|
|
230806
231334
|
uuid: Scalars['String']['output'];
|
|
@@ -231955,6 +232483,16 @@ export type TownsquareGoalsRestoreGoalsPayload = {
|
|
|
231955
232483
|
restoredGoals?: Maybe<Array<TownsquareGoal>>;
|
|
231956
232484
|
success: Scalars['Boolean']['output'];
|
|
231957
232485
|
};
|
|
232486
|
+
export type TownsquareGoalsSetDefaultAccessLevelInput = {
|
|
232487
|
+
accessLevel: TownsquareGoalAccessLevel;
|
|
232488
|
+
containerId: Scalars['ID']['input'];
|
|
232489
|
+
};
|
|
232490
|
+
export type TownsquareGoalsSetDefaultAccessLevelPayload = {
|
|
232491
|
+
__typename?: 'TownsquareGoalsSetDefaultAccessLevelPayload';
|
|
232492
|
+
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
232493
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232494
|
+
success: Scalars['Boolean']['output'];
|
|
232495
|
+
};
|
|
231958
232496
|
export type TownsquareGoalsSetParentGoalInput = {
|
|
231959
232497
|
goalId: Scalars['ID']['input'];
|
|
231960
232498
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -234846,6 +235384,16 @@ export type TrelloApplicationUsage = {
|
|
|
234846
235384
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
234847
235385
|
members?: Maybe<Scalars['Int']['output']>;
|
|
234848
235386
|
};
|
|
235387
|
+
export type TrelloArchivedCardConnection = {
|
|
235388
|
+
__typename?: 'TrelloArchivedCardConnection';
|
|
235389
|
+
edges?: Maybe<Array<TrelloArchivedCardEdge>>;
|
|
235390
|
+
pageInfo: PageInfo;
|
|
235391
|
+
};
|
|
235392
|
+
export type TrelloArchivedCardEdge = {
|
|
235393
|
+
__typename?: 'TrelloArchivedCardEdge';
|
|
235394
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
235395
|
+
node?: Maybe<TrelloBaseCard>;
|
|
235396
|
+
};
|
|
234849
235397
|
export type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
234850
235398
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
234851
235399
|
cardId: Scalars['ID']['output'];
|
|
@@ -239529,6 +240077,7 @@ export type TrelloProviderCalendarInterface = {
|
|
|
239529
240077
|
export type TrelloQueryApi = {
|
|
239530
240078
|
__typename?: 'TrelloQueryApi';
|
|
239531
240079
|
application?: Maybe<TrelloApplication>;
|
|
240080
|
+
archivedCards?: Maybe<TrelloArchivedCardConnection>;
|
|
239532
240081
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
239533
240082
|
board?: Maybe<TrelloBoard>;
|
|
239534
240083
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
@@ -239574,6 +240123,11 @@ export type TrelloQueryApi = {
|
|
|
239574
240123
|
export type TrelloQueryApiApplicationArgs = {
|
|
239575
240124
|
id: Scalars['ID']['input'];
|
|
239576
240125
|
};
|
|
240126
|
+
export type TrelloQueryApiArchivedCardsArgs = {
|
|
240127
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
240128
|
+
boardId: Scalars['ID']['input'];
|
|
240129
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240130
|
+
};
|
|
239577
240131
|
export type TrelloQueryApiAttachmentsByIdArgs = {
|
|
239578
240132
|
ids: Array<Scalars['ID']['input']>;
|
|
239579
240133
|
};
|
|
@@ -240913,6 +241467,7 @@ export type TrelloWorkOverviewDashboardPayload = Payload & {
|
|
|
240913
241467
|
export type TrelloWorkspace = Node & {
|
|
240914
241468
|
__typename?: 'TrelloWorkspace';
|
|
240915
241469
|
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
241470
|
+
boards?: Maybe<TrelloWorkspaceBoardConnection>;
|
|
240916
241471
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
240917
241472
|
description?: Maybe<Scalars['String']['output']>;
|
|
240918
241473
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -240936,6 +241491,11 @@ export type TrelloWorkspace = Node & {
|
|
|
240936
241491
|
url?: Maybe<Scalars['URL']['output']>;
|
|
240937
241492
|
website?: Maybe<Scalars['String']['output']>;
|
|
240938
241493
|
};
|
|
241494
|
+
export type TrelloWorkspaceBoardsArgs = {
|
|
241495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
241496
|
+
filter?: InputMaybe<TrelloWorkspaceBoardFilter>;
|
|
241497
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
241498
|
+
};
|
|
240939
241499
|
export type TrelloWorkspaceMembersArgs = {
|
|
240940
241500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240941
241501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -240955,6 +241515,25 @@ export type TrelloWorkspaceAccessSummary = {
|
|
|
240955
241515
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
240956
241516
|
id: Scalars['ID']['output'];
|
|
240957
241517
|
};
|
|
241518
|
+
export type TrelloWorkspaceBoardConnection = {
|
|
241519
|
+
__typename?: 'TrelloWorkspaceBoardConnection';
|
|
241520
|
+
edges?: Maybe<Array<TrelloWorkspaceBoardEdge>>;
|
|
241521
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
241522
|
+
pageInfo: PageInfo;
|
|
241523
|
+
};
|
|
241524
|
+
export type TrelloWorkspaceBoardEdge = {
|
|
241525
|
+
__typename?: 'TrelloWorkspaceBoardEdge';
|
|
241526
|
+
cursor: Scalars['String']['output'];
|
|
241527
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
241528
|
+
};
|
|
241529
|
+
export type TrelloWorkspaceBoardFilter = {
|
|
241530
|
+
filterValues?: InputMaybe<Array<TrelloWorkspaceBoardFilterValue>>;
|
|
241531
|
+
};
|
|
241532
|
+
export declare enum TrelloWorkspaceBoardFilterValue {
|
|
241533
|
+
All = "ALL",
|
|
241534
|
+
Closed = "CLOSED",
|
|
241535
|
+
Open = "OPEN"
|
|
241536
|
+
}
|
|
240958
241537
|
export type TrelloWorkspaceEnterpriseUpdated = {
|
|
240959
241538
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
240960
241539
|
id?: Maybe<Scalars['ID']['output']>;
|