@forge/cli-shared 9.0.1-next.5 → 9.0.1-next.6
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 +6 -0
- package/out/graphql/graphql-types.d.ts +321 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +82 -52
- package/package.json +1 -2
|
@@ -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'];
|
|
@@ -14815,6 +14902,10 @@ export type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErrorExtens
|
|
|
14815
14902
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14816
14903
|
};
|
|
14817
14904
|
export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
14905
|
+
export type AssetsVerticalDisableVerticalInstantiationInput = {
|
|
14906
|
+
cloudId: Scalars['ID']['input'];
|
|
14907
|
+
type: AssetsVerticalVerticalType;
|
|
14908
|
+
};
|
|
14818
14909
|
export type AssetsVerticalEnableCustomInsightInput = {
|
|
14819
14910
|
cloudId: Scalars['ID']['input'];
|
|
14820
14911
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -14826,6 +14917,10 @@ export type AssetsVerticalEnableCustomInsightPayload = Payload & {
|
|
|
14826
14917
|
errors?: Maybe<Array<MutationError>>;
|
|
14827
14918
|
success: Scalars['Boolean']['output'];
|
|
14828
14919
|
};
|
|
14920
|
+
export type AssetsVerticalEnableVerticalInstantiationInput = {
|
|
14921
|
+
cloudId: Scalars['ID']['input'];
|
|
14922
|
+
type: AssetsVerticalVerticalType;
|
|
14923
|
+
};
|
|
14829
14924
|
export declare enum AssetsVerticalFlowType {
|
|
14830
14925
|
Existing = "EXISTING",
|
|
14831
14926
|
New = "NEW"
|
|
@@ -15519,6 +15614,7 @@ export type AssetsVerticalVerticalInstantiationResult = AssetsVerticalVerticalIn
|
|
|
15519
15614
|
export declare enum AssetsVerticalVerticalInstantiationStatus {
|
|
15520
15615
|
Completed = "COMPLETED",
|
|
15521
15616
|
Created = "CREATED",
|
|
15617
|
+
Disabled = "DISABLED",
|
|
15522
15618
|
Failed = "FAILED",
|
|
15523
15619
|
InProgress = "IN_PROGRESS"
|
|
15524
15620
|
}
|
|
@@ -19674,13 +19770,13 @@ export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
19674
19770
|
};
|
|
19675
19771
|
export type ChecklistItem = {
|
|
19676
19772
|
__typename?: 'ChecklistItem';
|
|
19677
|
-
done
|
|
19678
|
-
itemId
|
|
19679
|
-
label
|
|
19680
|
-
order
|
|
19773
|
+
done?: Maybe<Scalars['Boolean']['output']>;
|
|
19774
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
19775
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
19776
|
+
order?: Maybe<Scalars['Int']['output']>;
|
|
19681
19777
|
};
|
|
19682
19778
|
export type ChecklistItemInput = {
|
|
19683
|
-
itemId?: InputMaybe<Scalars['
|
|
19779
|
+
itemId?: InputMaybe<Scalars['String']['input']>;
|
|
19684
19780
|
label: Scalars['String']['input'];
|
|
19685
19781
|
order: Scalars['Int']['input'];
|
|
19686
19782
|
};
|
|
@@ -19805,6 +19901,7 @@ export type CloudifyEnactment = {
|
|
|
19805
19901
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
19806
19902
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19807
19903
|
id: CloudifyEnactmentId;
|
|
19904
|
+
metadata: Array<CloudifyMetadataEntry>;
|
|
19808
19905
|
recommendationId: CloudifyRecommendationId;
|
|
19809
19906
|
startedAt: Scalars['String']['output'];
|
|
19810
19907
|
status: CloudifyEnactmentStatus;
|
|
@@ -19818,6 +19915,11 @@ export declare enum CloudifyEnactmentStatus {
|
|
|
19818
19915
|
Executing = "EXECUTING",
|
|
19819
19916
|
Failed = "FAILED"
|
|
19820
19917
|
}
|
|
19918
|
+
export type CloudifyMetadataEntry = {
|
|
19919
|
+
__typename?: 'CloudifyMetadataEntry';
|
|
19920
|
+
key: Scalars['String']['output'];
|
|
19921
|
+
value: Scalars['String']['output'];
|
|
19922
|
+
};
|
|
19821
19923
|
export type CloudifyProjectAri = {
|
|
19822
19924
|
__typename?: 'CloudifyProjectARI';
|
|
19823
19925
|
projectId: Scalars['ID']['output'];
|
|
@@ -38644,6 +38746,7 @@ export type CplsContributorWorkConnection = HasPageInfo & {
|
|
|
38644
38746
|
export type CplsContributorWorkEdge = {
|
|
38645
38747
|
__typename?: 'CplsContributorWorkEdge';
|
|
38646
38748
|
contributions?: Maybe<Array<Maybe<CplsContribution>>>;
|
|
38749
|
+
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
38647
38750
|
cursor: Scalars['String']['output'];
|
|
38648
38751
|
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
38649
38752
|
node?: Maybe<CplsWorkData>;
|
|
@@ -39127,6 +39230,7 @@ export type CplsWorkContributorEdge = {
|
|
|
39127
39230
|
contributorDataId: Scalars['ID']['output'];
|
|
39128
39231
|
cursor: Scalars['String']['output'];
|
|
39129
39232
|
node?: Maybe<CplsContributor>;
|
|
39233
|
+
workDataId?: Maybe<Scalars['ID']['output']>;
|
|
39130
39234
|
};
|
|
39131
39235
|
export type CplsWorkData = CplsCustomContributionTarget | JiraIssue | TownsquareProject;
|
|
39132
39236
|
export type CplsWorkDataId = {
|
|
@@ -43019,6 +43123,28 @@ export type DevAiAddContainerConfigVariablePayload = Payload & {
|
|
|
43019
43123
|
errors?: Maybe<Array<MutationError>>;
|
|
43020
43124
|
success: Scalars['Boolean']['output'];
|
|
43021
43125
|
};
|
|
43126
|
+
export type DevAiAiPlannerAccessResponse = {
|
|
43127
|
+
__typename?: 'DevAiAiPlannerAccessResponse';
|
|
43128
|
+
orgChecks: DevAiAiPlannerOrgChecks;
|
|
43129
|
+
permitted: Scalars['Boolean']['output'];
|
|
43130
|
+
siteChecks: DevAiAiPlannerSiteChecks;
|
|
43131
|
+
userChecks: DevAiAiPlannerUserChecks;
|
|
43132
|
+
};
|
|
43133
|
+
export type DevAiAiPlannerOrgChecks = {
|
|
43134
|
+
__typename?: 'DevAiAiPlannerOrgChecks';
|
|
43135
|
+
hasAiEarlyAccess: Scalars['Boolean']['output'];
|
|
43136
|
+
};
|
|
43137
|
+
export type DevAiAiPlannerSiteChecks = {
|
|
43138
|
+
__typename?: 'DevAiAiPlannerSiteChecks';
|
|
43139
|
+
hasConfluence: Scalars['Boolean']['output'];
|
|
43140
|
+
hasJira: Scalars['Boolean']['output'];
|
|
43141
|
+
};
|
|
43142
|
+
export type DevAiAiPlannerUserChecks = {
|
|
43143
|
+
__typename?: 'DevAiAiPlannerUserChecks';
|
|
43144
|
+
hasJiraAiAccess: Scalars['Boolean']['output'];
|
|
43145
|
+
hasJiraProductAccess: Scalars['Boolean']['output'];
|
|
43146
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
43147
|
+
};
|
|
43022
43148
|
export type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
|
|
43023
43149
|
__typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
|
|
43024
43150
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -46504,6 +46630,30 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
46504
46630
|
scope?: Maybe<DlpScope>;
|
|
46505
46631
|
status?: Maybe<DlpMappingStatus>;
|
|
46506
46632
|
};
|
|
46633
|
+
export type DlpFinding = {
|
|
46634
|
+
__typename?: 'DlpFinding';
|
|
46635
|
+
app?: Maybe<Scalars['String']['output']>;
|
|
46636
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
46637
|
+
classificationAri?: Maybe<Scalars['String']['output']>;
|
|
46638
|
+
confidenceLevel?: Maybe<Scalars['String']['output']>;
|
|
46639
|
+
detectedDate?: Maybe<Scalars['String']['output']>;
|
|
46640
|
+
detectorId?: Maybe<Scalars['String']['output']>;
|
|
46641
|
+
detectorType?: Maybe<Scalars['String']['output']>;
|
|
46642
|
+
findingId?: Maybe<Scalars['String']['output']>;
|
|
46643
|
+
maxConfidence?: Maybe<Scalars['Float']['output']>;
|
|
46644
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
46645
|
+
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
46646
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
46647
|
+
spaceContext?: Maybe<Scalars['String']['output']>;
|
|
46648
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
46649
|
+
};
|
|
46650
|
+
export type DlpFindingsListResponse = {
|
|
46651
|
+
__typename?: 'DlpFindingsListResponse';
|
|
46652
|
+
findings?: Maybe<Array<Maybe<DlpFinding>>>;
|
|
46653
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
46654
|
+
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
46655
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46656
|
+
};
|
|
46507
46657
|
export declare enum DlpMappingStatus {
|
|
46508
46658
|
Draft = "DRAFT",
|
|
46509
46659
|
Published = "PUBLISHED"
|
|
@@ -55902,6 +56052,7 @@ export type GraphStore = {
|
|
|
55902
56052
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
55903
56053
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
55904
56054
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
56055
|
+
atlassianAgentSessionReadEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
55905
56056
|
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
55906
56057
|
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
55907
56058
|
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
@@ -57517,6 +57668,14 @@ export type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
57517
57668
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57518
57669
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
57519
57670
|
};
|
|
57671
|
+
export type GraphStoreAtlassianAgentSessionReadEntityArgs = {
|
|
57672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
57673
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57675
|
+
id: Scalars['ID']['input'];
|
|
57676
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
57677
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionReadEntitySortInput>;
|
|
57678
|
+
};
|
|
57520
57679
|
export type GraphStoreAtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
57521
57680
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57522
57681
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66439,6 +66598,9 @@ export type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
66439
66598
|
export type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
66440
66599
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66441
66600
|
};
|
|
66601
|
+
export type GraphStoreAtlassianAgentSessionReadEntitySortInput = {
|
|
66602
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66603
|
+
};
|
|
66442
66604
|
export type GraphStoreAtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
66443
66605
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66444
66606
|
};
|
|
@@ -75787,6 +75949,20 @@ export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge = {
|
|
|
75787
75949
|
};
|
|
75788
75950
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
75789
75951
|
export type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
75952
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection = HasPageInfo & {
|
|
75953
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection';
|
|
75954
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge>>>;
|
|
75955
|
+
pageInfo: PageInfo;
|
|
75956
|
+
};
|
|
75957
|
+
export type GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge = {
|
|
75958
|
+
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionReadEntityEdge';
|
|
75959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
75960
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
75961
|
+
id: Scalars['ID']['output'];
|
|
75962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
75963
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityUnion>;
|
|
75964
|
+
};
|
|
75965
|
+
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
75966
|
export type GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
75791
75967
|
__typename?: 'GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
75792
75968
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
@@ -89442,6 +89618,7 @@ export type GraphStoreV2 = {
|
|
|
89442
89618
|
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
89443
89619
|
assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
89444
89620
|
assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
89621
|
+
atlassianAgentSessionReadEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
89445
89622
|
atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
89446
89623
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
89447
89624
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
@@ -90334,6 +90511,13 @@ export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeInverseArgs = {
|
|
|
90334
90511
|
id: Scalars['ID']['input'];
|
|
90335
90512
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
90336
90513
|
};
|
|
90514
|
+
export type GraphStoreV2AtlassianAgentSessionReadEntityArgs = {
|
|
90515
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90516
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90517
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90518
|
+
id: Scalars['ID']['input'];
|
|
90519
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionReadEntitySortInput>;
|
|
90520
|
+
};
|
|
90337
90521
|
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
90338
90522
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90339
90523
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -96436,6 +96620,9 @@ export type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
|
96436
96620
|
export type GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput = {
|
|
96437
96621
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96438
96622
|
};
|
|
96623
|
+
export type GraphStoreV2AtlassianAgentSessionReadEntitySortInput = {
|
|
96624
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96625
|
+
};
|
|
96439
96626
|
export type GraphStoreV2AtlassianAgentSessionTriggeredOnEntitySortInput = {
|
|
96440
96627
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
96441
96628
|
};
|
|
@@ -100407,6 +100594,20 @@ export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInvers
|
|
|
100407
100594
|
};
|
|
100408
100595
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseUnion = AssetsObjectType;
|
|
100409
100596
|
export type GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeUnion = AssetsObjectType;
|
|
100597
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection = HasPageInfo & {
|
|
100598
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection';
|
|
100599
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge>>>;
|
|
100600
|
+
pageInfo: PageInfo;
|
|
100601
|
+
};
|
|
100602
|
+
export type GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge = {
|
|
100603
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityEdge';
|
|
100604
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100605
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100606
|
+
id: Scalars['ID']['output'];
|
|
100607
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100608
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityUnion>;
|
|
100609
|
+
};
|
|
100610
|
+
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
100611
|
export type GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection = HasPageInfo & {
|
|
100411
100612
|
__typename?: 'GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection';
|
|
100412
100613
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityEdge>>>;
|
|
@@ -117967,6 +118168,25 @@ export type JiraAddAttachmentsPayload = Payload & {
|
|
|
117967
118168
|
errors?: Maybe<Array<MutationError>>;
|
|
117968
118169
|
success: Scalars['Boolean']['output'];
|
|
117969
118170
|
};
|
|
118171
|
+
export type JiraAddBoardViewStatusColumnInput = {
|
|
118172
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
118173
|
+
status: JiraAddBoardViewStatusColumnStatusInput;
|
|
118174
|
+
viewId: Scalars['ID']['input'];
|
|
118175
|
+
};
|
|
118176
|
+
export type JiraAddBoardViewStatusColumnNewStatusInput = {
|
|
118177
|
+
name: Scalars['String']['input'];
|
|
118178
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
118179
|
+
};
|
|
118180
|
+
export type JiraAddBoardViewStatusColumnPayload = Payload & {
|
|
118181
|
+
__typename?: 'JiraAddBoardViewStatusColumnPayload';
|
|
118182
|
+
boardView?: Maybe<JiraBoardView>;
|
|
118183
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118184
|
+
success: Scalars['Boolean']['output'];
|
|
118185
|
+
};
|
|
118186
|
+
export type JiraAddBoardViewStatusColumnStatusInput = {
|
|
118187
|
+
newStatus?: InputMaybe<JiraAddBoardViewStatusColumnNewStatusInput>;
|
|
118188
|
+
statusId?: InputMaybe<Scalars['ID']['input']>;
|
|
118189
|
+
};
|
|
117970
118190
|
export type JiraAddCommentInput = {
|
|
117971
118191
|
authorCanSeeRequest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117972
118192
|
content: JiraAdfInput;
|
|
@@ -125605,6 +125825,12 @@ export type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfiguration &
|
|
|
125605
125825
|
type: Scalars['String']['output'];
|
|
125606
125826
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
125607
125827
|
};
|
|
125828
|
+
export type JiraForgeDateFieldPayload = Payload & {
|
|
125829
|
+
__typename?: 'JiraForgeDateFieldPayload';
|
|
125830
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125831
|
+
field?: Maybe<JiraForgeDateField>;
|
|
125832
|
+
success: Scalars['Boolean']['output'];
|
|
125833
|
+
};
|
|
125608
125834
|
export type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
125609
125835
|
__typename?: 'JiraForgeDatetimeField';
|
|
125610
125836
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -131997,6 +132223,7 @@ export type JiraMutation = {
|
|
|
131997
132223
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
131998
132224
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
131999
132225
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
132226
|
+
updateForgeDateField?: Maybe<JiraForgeDateFieldPayload>;
|
|
132000
132227
|
updateForgeNumberField?: Maybe<JiraForgeNumberFieldPayload>;
|
|
132001
132228
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
132002
132229
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
@@ -132621,6 +132848,9 @@ export type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
132621
132848
|
export type JiraMutationUpdateFlagFieldArgs = {
|
|
132622
132849
|
input: JiraUpdateFlagFieldInput;
|
|
132623
132850
|
};
|
|
132851
|
+
export type JiraMutationUpdateForgeDateFieldArgs = {
|
|
132852
|
+
input: JiraUpdateDateFieldInput;
|
|
132853
|
+
};
|
|
132624
132854
|
export type JiraMutationUpdateForgeNumberFieldArgs = {
|
|
132625
132855
|
input: JiraUpdateNumberFieldInput;
|
|
132626
132856
|
};
|
|
@@ -148249,6 +148479,15 @@ export type KitsuneFieldEdge = KitsuneEdge & {
|
|
|
148249
148479
|
cursor: Scalars['String']['output'];
|
|
148250
148480
|
node?: Maybe<KitsuneField>;
|
|
148251
148481
|
};
|
|
148482
|
+
export type KitsuneFieldOptionUpdateInput = {
|
|
148483
|
+
id: Scalars['ID']['input'];
|
|
148484
|
+
name: Scalars['String']['input'];
|
|
148485
|
+
};
|
|
148486
|
+
export type KitsuneFieldOptionsInput = {
|
|
148487
|
+
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148488
|
+
remove?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
148489
|
+
update?: InputMaybe<Array<KitsuneFieldOptionUpdateInput>>;
|
|
148490
|
+
};
|
|
148252
148491
|
export declare enum KitsuneFieldType {
|
|
148253
148492
|
Content = "CONTENT",
|
|
148254
148493
|
CreationDate = "CREATION_DATE",
|
|
@@ -155962,6 +156201,7 @@ export type MercuryBenefitItemSummary = {
|
|
|
155962
156201
|
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
155963
156202
|
estimateAtCompletion?: Maybe<MercuryEstimateBenefitAtCompletion>;
|
|
155964
156203
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
156204
|
+
remainingEstimateAtCompletion?: Maybe<MercuryRemainingEstimateBenefitAtCompletion>;
|
|
155965
156205
|
};
|
|
155966
156206
|
export type MercuryBenefitItemUpdatedField = {
|
|
155967
156207
|
__typename?: 'MercuryBenefitItemUpdatedField';
|
|
@@ -156156,7 +156396,7 @@ export type MercuryChangeProposalActivityHistoryConnection = {
|
|
|
156156
156396
|
pageInfo: PageInfo;
|
|
156157
156397
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
156158
156398
|
};
|
|
156159
|
-
export type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
156399
|
+
export type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryChangeProposal | MercuryFocusArea | TownsquareGoal | TownsquareProject | TownsquareTag;
|
|
156160
156400
|
export type MercuryChangeProposalActivityHistoryEdge = {
|
|
156161
156401
|
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
156162
156402
|
cursor: Scalars['String']['output'];
|
|
@@ -156567,6 +156807,7 @@ export type MercuryCostItemSummary = {
|
|
|
156567
156807
|
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
156568
156808
|
estimateAtCompletion?: Maybe<MercuryEstimateCostAtCompletion>;
|
|
156569
156809
|
financialVersionCostSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionCostSummary>>>;
|
|
156810
|
+
remainingEstimateAtCompletion?: Maybe<MercuryRemainingEstimateCostAtCompletion>;
|
|
156570
156811
|
};
|
|
156571
156812
|
export type MercuryCostItemUpdatedField = {
|
|
156572
156813
|
__typename?: 'MercuryCostItemUpdatedField';
|
|
@@ -164035,25 +164276,25 @@ export declare enum MitigationHypothesisType {
|
|
|
164035
164276
|
}
|
|
164036
164277
|
export type MitigationIndicator = {
|
|
164037
164278
|
__typename?: 'MitigationIndicator';
|
|
164038
|
-
advisorySignal?: Maybe<AdvisorySignalIndicator>;
|
|
164039
164279
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
164040
164280
|
createdAt: Scalars['DateTime']['output'];
|
|
164041
|
-
|
|
164281
|
+
details?: Maybe<MitigationIndicatorDetails>;
|
|
164042
164282
|
indicatorId: Scalars['ID']['output'];
|
|
164043
164283
|
indicatorType: MitigationIndicatorType;
|
|
164044
164284
|
mitigationId: Scalars['ID']['output'];
|
|
164045
|
-
plans
|
|
164285
|
+
plans?: Maybe<Array<MitigationPlan>>;
|
|
164046
164286
|
rejected: Scalars['Boolean']['output'];
|
|
164047
164287
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164048
164288
|
rejectedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
164049
164289
|
rejectionReason?: Maybe<IndicatorRejectionReason>;
|
|
164050
164290
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164051
|
-
|
|
164291
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
164052
164292
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164053
164293
|
};
|
|
164054
164294
|
export type MitigationIndicatorPlansArgs = {
|
|
164055
164295
|
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164056
164296
|
};
|
|
164297
|
+
export type MitigationIndicatorDetails = AdvisorySignalIndicator | HypothesisIndicator | SymptomIndicator;
|
|
164057
164298
|
export declare enum MitigationIndicatorType {
|
|
164058
164299
|
AdvisorySignal = "ADVISORY_SIGNAL",
|
|
164059
164300
|
Hypothesis = "HYPOTHESIS",
|
|
@@ -164100,7 +164341,8 @@ export declare enum MitigationScopeType {
|
|
|
164100
164341
|
export declare enum MitigationStepStatus {
|
|
164101
164342
|
Done = "DONE",
|
|
164102
164343
|
Errored = "ERRORED",
|
|
164103
|
-
InProgress = "IN_PROGRESS"
|
|
164344
|
+
InProgress = "IN_PROGRESS",
|
|
164345
|
+
Waiting = "WAITING"
|
|
164104
164346
|
}
|
|
164105
164347
|
export declare enum MitigationSymptomType {
|
|
164106
164348
|
LinkedAlerts = "LINKED_ALERTS",
|
|
@@ -164384,7 +164626,9 @@ export type Mutation = {
|
|
|
164384
164626
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
164385
164627
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
164386
164628
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
164629
|
+
assetsVertical_disableVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
164387
164630
|
assetsVertical_enableCustomInsight?: Maybe<AssetsVerticalEnableCustomInsightPayload>;
|
|
164631
|
+
assetsVertical_enableVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
164388
164632
|
assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
|
|
164389
164633
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
164390
164634
|
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
@@ -165149,6 +165393,7 @@ export type Mutation = {
|
|
|
165149
165393
|
jira_acceptAgentContextItem?: Maybe<JiraAcceptAgentContextItemPayload>;
|
|
165150
165394
|
jira_addAgentContextItem?: Maybe<JiraAddAgentContextItemPayload>;
|
|
165151
165395
|
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
165396
|
+
jira_addBoardViewStatusColumn?: Maybe<JiraAddBoardViewStatusColumnPayload>;
|
|
165152
165397
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
165153
165398
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
165154
165399
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -165417,6 +165662,7 @@ export type Mutation = {
|
|
|
165417
165662
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
165418
165663
|
playbook_rejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
165419
165664
|
playbook_rejectPlan?: Maybe<PlanRejectionPayload>;
|
|
165665
|
+
playbook_toggleChecklistItem?: Maybe<ToggleChecklistItemPayload>;
|
|
165420
165666
|
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
165421
165667
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
165422
165668
|
playbook_unrejectIndicator?: Maybe<IndicatorRejectionPayload>;
|
|
@@ -166641,9 +166887,15 @@ export type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
|
166641
166887
|
export type MutationAssetsVertical_DeleteRoleAssignmentsArgs = {
|
|
166642
166888
|
input: AssetsVerticalDeleteRoleAssignmentsInput;
|
|
166643
166889
|
};
|
|
166890
|
+
export type MutationAssetsVertical_DisableVerticalInstantiationArgs = {
|
|
166891
|
+
input: AssetsVerticalDisableVerticalInstantiationInput;
|
|
166892
|
+
};
|
|
166644
166893
|
export type MutationAssetsVertical_EnableCustomInsightArgs = {
|
|
166645
166894
|
input: AssetsVerticalEnableCustomInsightInput;
|
|
166646
166895
|
};
|
|
166896
|
+
export type MutationAssetsVertical_EnableVerticalInstantiationArgs = {
|
|
166897
|
+
input: AssetsVerticalEnableVerticalInstantiationInput;
|
|
166898
|
+
};
|
|
166647
166899
|
export type MutationAssetsVertical_GenerateCustomInsightArgs = {
|
|
166648
166900
|
input: AssetsVerticalGenerateCustomInsightInput;
|
|
166649
166901
|
};
|
|
@@ -169223,6 +169475,9 @@ export type MutationJira_AddAgentContextItemArgs = {
|
|
|
169223
169475
|
export type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
169224
169476
|
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
169225
169477
|
};
|
|
169478
|
+
export type MutationJira_AddBoardViewStatusColumnArgs = {
|
|
169479
|
+
input: JiraAddBoardViewStatusColumnInput;
|
|
169480
|
+
};
|
|
169226
169481
|
export type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
169227
169482
|
cloudId: Scalars['ID']['input'];
|
|
169228
169483
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -169955,6 +170210,7 @@ export type MutationKitsune_UpdateFieldArgs = {
|
|
|
169955
170210
|
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
169956
170211
|
id: Scalars['ID']['input'];
|
|
169957
170212
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
170213
|
+
options?: InputMaybe<KitsuneFieldOptionsInput>;
|
|
169958
170214
|
};
|
|
169959
170215
|
export type MutationKitsune_UpdateInsightArgs = {
|
|
169960
170216
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
@@ -170129,6 +170385,9 @@ export type MutationPlaybook_RejectIndicatorArgs = {
|
|
|
170129
170385
|
export type MutationPlaybook_RejectPlanArgs = {
|
|
170130
170386
|
input: RejectPlanInput;
|
|
170131
170387
|
};
|
|
170388
|
+
export type MutationPlaybook_ToggleChecklistItemArgs = {
|
|
170389
|
+
input: ToggleChecklistItemInput;
|
|
170390
|
+
};
|
|
170132
170391
|
export type MutationPlaybook_TriggerMitigationArgs = {
|
|
170133
170392
|
input: TriggerMitigationInput;
|
|
170134
170393
|
};
|
|
@@ -174600,6 +174859,7 @@ export type Query = {
|
|
|
174600
174859
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
174601
174860
|
apps?: Maybe<AppConnection>;
|
|
174602
174861
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
174862
|
+
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
174603
174863
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
174604
174864
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
174605
174865
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
@@ -174610,7 +174870,7 @@ export type Query = {
|
|
|
174610
174870
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
174611
174871
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
174612
174872
|
assetsDM_dataDictionaryGroups?: Maybe<AssetsDmDataDictionaryGroupsResponse>;
|
|
174613
|
-
assetsDM_dataSource?: Maybe<
|
|
174873
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetailResponse>;
|
|
174614
174874
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
174615
174875
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
174616
174876
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
@@ -175129,6 +175389,7 @@ export type Query = {
|
|
|
175129
175389
|
devOpsServiceTypes?: Maybe<Array<DevOpsServiceType>>;
|
|
175130
175390
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
175131
175391
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
175392
|
+
devai_aiPlannerAccess?: Maybe<DevAiAiPlannerAccessResponse>;
|
|
175132
175393
|
devai_autodevAgentForJob?: Maybe<DevAiRovoAgent>;
|
|
175133
175394
|
devai_autodevIssueScoping?: Maybe<DevAiIssueScopingResult>;
|
|
175134
175395
|
devai_autodevIssueScopingScoreForJob?: Maybe<DevAiIssueScopingResult>;
|
|
@@ -175182,6 +175443,7 @@ export type Query = {
|
|
|
175182
175443
|
dlp_getAutoClassificationRuleScope?: Maybe<DlpScope>;
|
|
175183
175444
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
175184
175445
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
175446
|
+
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
175185
175447
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
175186
175448
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
175187
175449
|
dvcs?: Maybe<DvcsQuery>;
|
|
@@ -175293,6 +175555,7 @@ export type Query = {
|
|
|
175293
175555
|
graphStoreV2_assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
175294
175556
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectType?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeConnection>;
|
|
175295
175557
|
graphStoreV2_assetsObjectTypeHasChildAssetsObjectTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetsObjectTypeHasChildAssetsObjectTypeInverseConnection>;
|
|
175558
|
+
graphStoreV2_atlassianAgentSessionReadEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
175296
175559
|
graphStoreV2_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreV2SimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
175297
175560
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
175298
175561
|
graphStoreV2_atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
@@ -176219,6 +176482,7 @@ export type Query = {
|
|
|
176219
176482
|
graphStore_atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
176220
176483
|
graphStore_atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
176221
176484
|
graphStore_atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
176485
|
+
graphStore_atlassianAgentSessionReadEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionReadEntityConnection>;
|
|
176222
176486
|
graphStore_atlassianAgentSessionTriggeredOnEntity?: Maybe<GraphStoreSimplifiedAtlassianAgentSessionTriggeredOnEntityConnection>;
|
|
176223
176487
|
graphStore_atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
176224
176488
|
graphStore_atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
@@ -179150,6 +179414,10 @@ export type QueryAppsArgs = {
|
|
|
179150
179414
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
179151
179415
|
cloudId: Scalars['ID']['input'];
|
|
179152
179416
|
};
|
|
179417
|
+
export type QueryAssetsDm_AdapterClientVersionStatusArgs = {
|
|
179418
|
+
cloudId: Scalars['ID']['input'];
|
|
179419
|
+
workspaceId: Scalars['ID']['input'];
|
|
179420
|
+
};
|
|
179153
179421
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
179154
179422
|
cloudId: Scalars['ID']['input'];
|
|
179155
179423
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -181638,6 +181906,9 @@ export type QueryDevOpsServicesArgs = {
|
|
|
181638
181906
|
export type QueryDevOpsServicesByIdArgs = {
|
|
181639
181907
|
ids: Array<Scalars['ID']['input']>;
|
|
181640
181908
|
};
|
|
181909
|
+
export type QueryDevai_AiPlannerAccessArgs = {
|
|
181910
|
+
cloudId: Scalars['ID']['input'];
|
|
181911
|
+
};
|
|
181641
181912
|
export type QueryDevai_AutodevAgentForJobArgs = {
|
|
181642
181913
|
cloudId: Scalars['ID']['input'];
|
|
181643
181914
|
jobId: Scalars['ID']['input'];
|
|
@@ -181907,6 +182178,13 @@ export type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
181907
182178
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
181908
182179
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
181909
182180
|
};
|
|
182181
|
+
export type QueryDlp_GetFindingsArgs = {
|
|
182182
|
+
minConfidence?: InputMaybe<Scalars['String']['input']>;
|
|
182183
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
182184
|
+
orgId: Scalars['String']['input'];
|
|
182185
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
182186
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
182187
|
+
};
|
|
181910
182188
|
export type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
181911
182189
|
orgId: Scalars['String']['input'];
|
|
181912
182190
|
taskId: Scalars['String']['input'];
|
|
@@ -182346,6 +182624,13 @@ export type QueryGraphStoreV2_AssetsObjectTypeHasChildAssetsObjectTypeInverseArg
|
|
|
182346
182624
|
id: Scalars['ID']['input'];
|
|
182347
182625
|
sort?: InputMaybe<GraphStoreV2AssetsObjectTypeHasChildAssetsObjectTypeSortInput>;
|
|
182348
182626
|
};
|
|
182627
|
+
export type QueryGraphStoreV2_AtlassianAgentSessionReadEntityArgs = {
|
|
182628
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
182629
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182630
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182631
|
+
id: Scalars['ID']['input'];
|
|
182632
|
+
sort?: InputMaybe<GraphStoreV2AtlassianAgentSessionReadEntitySortInput>;
|
|
182633
|
+
};
|
|
182349
182634
|
export type QueryGraphStoreV2_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
182350
182635
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182351
182636
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -188924,6 +189209,14 @@ export type QueryGraphStore_AtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
188924
189209
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
188925
189210
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
188926
189211
|
};
|
|
189212
|
+
export type QueryGraphStore_AtlassianAgentSessionReadEntityArgs = {
|
|
189213
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189214
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
189215
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189216
|
+
id: Scalars['ID']['input'];
|
|
189217
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
189218
|
+
sort?: InputMaybe<GraphStoreAtlassianAgentSessionReadEntitySortInput>;
|
|
189219
|
+
};
|
|
188927
189220
|
export type QueryGraphStore_AtlassianAgentSessionTriggeredOnEntityArgs = {
|
|
188928
189221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188929
189222
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -200565,6 +200858,7 @@ export declare enum RadarMetricScopeType {
|
|
|
200565
200858
|
}
|
|
200566
200859
|
export type RadarMetricSettings = {
|
|
200567
200860
|
__typename?: 'RadarMetricSettings';
|
|
200861
|
+
dimensions?: Maybe<Array<Scalars['String']['output']>>;
|
|
200568
200862
|
id: Scalars['ID']['output'];
|
|
200569
200863
|
metricKey: RadarOrgMetric;
|
|
200570
200864
|
metricType: RadarMetricType;
|
|
@@ -200584,6 +200878,7 @@ export type RadarMetricValue = {
|
|
|
200584
200878
|
__typename?: 'RadarMetricValue';
|
|
200585
200879
|
dimensionName?: Maybe<Scalars['String']['output']>;
|
|
200586
200880
|
id: Scalars['ID']['output'];
|
|
200881
|
+
scopeEntity?: Maybe<RadarAriObject>;
|
|
200587
200882
|
scopeId: Scalars['String']['output'];
|
|
200588
200883
|
scopeType: RadarMetricScopeType;
|
|
200589
200884
|
target: Scalars['Float']['output'];
|
|
@@ -223324,10 +223619,6 @@ export type ShepherdUser = {
|
|
|
223324
223619
|
aaid: Scalars['ID']['output'];
|
|
223325
223620
|
user?: Maybe<User>;
|
|
223326
223621
|
};
|
|
223327
|
-
export declare enum ShepherdVortexModeStatus {
|
|
223328
|
-
Disabled = "DISABLED",
|
|
223329
|
-
Enabled = "ENABLED"
|
|
223330
|
-
}
|
|
223331
223622
|
export declare enum ShepherdWebhookDestinationType {
|
|
223332
223623
|
Default = "DEFAULT",
|
|
223333
223624
|
MicrosoftTeams = "MICROSOFT_TEAMS"
|
|
@@ -223369,7 +223660,6 @@ export type ShepherdWorkspace = Node & {
|
|
|
223369
223660
|
orgId: Scalars['ID']['output'];
|
|
223370
223661
|
shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
|
|
223371
223662
|
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
223372
|
-
vortexMode?: Maybe<ShepherdVortexModeStatus>;
|
|
223373
223663
|
};
|
|
223374
223664
|
export type ShepherdWorkspaceCustomDetectionsArgs = {
|
|
223375
223665
|
customDetectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -229946,6 +230236,18 @@ export type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
229946
230236
|
statusCode: Scalars['Int']['output'];
|
|
229947
230237
|
success: Scalars['Boolean']['output'];
|
|
229948
230238
|
};
|
|
230239
|
+
export type ToggleChecklistItemInput = {
|
|
230240
|
+
done: Scalars['Boolean']['input'];
|
|
230241
|
+
itemId: Scalars['String']['input'];
|
|
230242
|
+
playbookInstanceAri: Scalars['ID']['input'];
|
|
230243
|
+
stepId: Scalars['String']['input'];
|
|
230244
|
+
};
|
|
230245
|
+
export type ToggleChecklistItemPayload = Payload & {
|
|
230246
|
+
__typename?: 'ToggleChecklistItemPayload';
|
|
230247
|
+
errors?: Maybe<Array<MutationError>>;
|
|
230248
|
+
playbookInstanceStep?: Maybe<JiraPlaybookInstanceStep>;
|
|
230249
|
+
success: Scalars['Boolean']['output'];
|
|
230250
|
+
};
|
|
229949
230251
|
export type Toolchain = {
|
|
229950
230252
|
__typename?: 'Toolchain';
|
|
229951
230253
|
checkAuth?: Maybe<ToolchainCheckAuth>;
|