@forge/cli-shared 9.0.1-next.0 → 9.0.1-next.2
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 +14 -0
- package/out/graphql/graphql-types.d.ts +986 -87
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +164 -64
- package/package.json +2 -2
|
@@ -596,6 +596,7 @@ export type AiOpsInvestigationInputContext = {
|
|
|
596
596
|
inScopeServiceIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
597
597
|
sourceEntityId: Scalars['String']['output'];
|
|
598
598
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
599
|
+
sourceJiraIssue?: Maybe<JiraIssue>;
|
|
599
600
|
};
|
|
600
601
|
export type AiOpsInvestigationProgressItem = {
|
|
601
602
|
__typename?: 'AIOpsInvestigationProgressItem';
|
|
@@ -1589,6 +1590,12 @@ export type AvpAnalyticsPrincipalPermissionInput = {
|
|
|
1589
1590
|
principalAri: Scalars['ID']['input'];
|
|
1590
1591
|
principalPermissionType: AvpAnalyticsPermissionType;
|
|
1591
1592
|
};
|
|
1593
|
+
export type AvpAnalyticsPurgeMetricInput = {
|
|
1594
|
+
metricId: Scalars['ID']['input'];
|
|
1595
|
+
};
|
|
1596
|
+
export type AvpAnalyticsPurgeModelInput = {
|
|
1597
|
+
modelId: Scalars['ID']['input'];
|
|
1598
|
+
};
|
|
1592
1599
|
export type AvpAnalyticsRangeValue = {
|
|
1593
1600
|
__typename?: 'AVPAnalyticsRangeValue';
|
|
1594
1601
|
fromExpression?: Maybe<Scalars['String']['output']>;
|
|
@@ -2608,6 +2615,7 @@ export declare enum AvpPermissionsCapabilityFailureType {
|
|
|
2608
2615
|
CustomCheckFailed = "CUSTOM_CHECK_FAILED",
|
|
2609
2616
|
EditionUnavailable = "EDITION_UNAVAILABLE",
|
|
2610
2617
|
None = "NONE",
|
|
2618
|
+
PerimeterDenied = "PERIMETER_DENIED",
|
|
2611
2619
|
PermissionDenied = "PERMISSION_DENIED",
|
|
2612
2620
|
ProductRequired = "PRODUCT_REQUIRED"
|
|
2613
2621
|
}
|
|
@@ -8600,6 +8608,7 @@ export type AgentWorkspaceSkillCreateInput = {
|
|
|
8600
8608
|
export type AgentWorkspaceSkillCreatePayload = {
|
|
8601
8609
|
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
8602
8610
|
errors?: Maybe<Array<MutationError>>;
|
|
8611
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
8603
8612
|
success: Scalars['Boolean']['output'];
|
|
8604
8613
|
};
|
|
8605
8614
|
export type AgentWorkspaceSkillEdge = {
|
|
@@ -9195,6 +9204,7 @@ export type AiCoreApiRsaKbGapItem = {
|
|
|
9195
9204
|
requestType?: Maybe<Scalars['String']['output']>;
|
|
9196
9205
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
9197
9206
|
suggestedTopic?: Maybe<Scalars['String']['output']>;
|
|
9207
|
+
workItemIds: Array<Scalars['String']['output']>;
|
|
9198
9208
|
};
|
|
9199
9209
|
export type AiCoreApiRsaKbGapResult = {
|
|
9200
9210
|
__typename?: 'AiCoreApiRsaKbGapResult';
|
|
@@ -11508,6 +11518,15 @@ export type AssetsDmAdapter = {
|
|
|
11508
11518
|
name?: Maybe<Scalars['String']['output']>;
|
|
11509
11519
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
11510
11520
|
};
|
|
11521
|
+
export declare enum AssetsDmAdapterClientVersionStatus {
|
|
11522
|
+
None = "NONE",
|
|
11523
|
+
UpdateAvailable = "UPDATE_AVAILABLE",
|
|
11524
|
+
UpdateRequired = "UPDATE_REQUIRED"
|
|
11525
|
+
}
|
|
11526
|
+
export type AssetsDmAdapterClientVersionStatusResponse = {
|
|
11527
|
+
__typename?: 'AssetsDMAdapterClientVersionStatusResponse';
|
|
11528
|
+
status: AssetsDmAdapterClientVersionStatus;
|
|
11529
|
+
};
|
|
11511
11530
|
export type AssetsDmAdapters = {
|
|
11512
11531
|
__typename?: 'AssetsDMAdapters';
|
|
11513
11532
|
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
@@ -11617,11 +11636,6 @@ export type AssetsDmBigfixDefaultQueryResponse = {
|
|
|
11617
11636
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11618
11637
|
query: Scalars['String']['output'];
|
|
11619
11638
|
};
|
|
11620
|
-
export type AssetsDmChangeDataSourceStatusArgs = {
|
|
11621
|
-
cloudId: Scalars['ID']['input'];
|
|
11622
|
-
input: AssetsDmChangeDataSourceStatusInput;
|
|
11623
|
-
workspaceId: Scalars['ID']['input'];
|
|
11624
|
-
};
|
|
11625
11639
|
export type AssetsDmChangeDataSourceStatusInput = {
|
|
11626
11640
|
dataSourceId: Scalars['ID']['input'];
|
|
11627
11641
|
status: AssetsDmDataSourceStatus;
|
|
@@ -11735,16 +11749,8 @@ export type AssetsDmCreateDataDictionaryGroupValueResponse = {
|
|
|
11735
11749
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11736
11750
|
message: Scalars['String']['output'];
|
|
11737
11751
|
};
|
|
11738
|
-
export type AssetsDmCreateDataSourceArgs = {
|
|
11739
|
-
cloudId: Scalars['ID']['input'];
|
|
11740
|
-
input: AssetsDmCreateDataSourceInput;
|
|
11741
|
-
workspaceId: Scalars['ID']['input'];
|
|
11742
|
-
};
|
|
11743
11752
|
export type AssetsDmCreateDataSourceInput = {
|
|
11744
|
-
dataSourceTypeId: Scalars['ID']['input'];
|
|
11745
11753
|
enabled: Scalars['Boolean']['input'];
|
|
11746
|
-
name: Scalars['String']['input'];
|
|
11747
|
-
objectId: Scalars['ID']['input'];
|
|
11748
11754
|
priority: Scalars['Int']['input'];
|
|
11749
11755
|
refreshGap: Scalars['Int']['input'];
|
|
11750
11756
|
tableName: Scalars['String']['input'];
|
|
@@ -11797,19 +11803,6 @@ export type AssetsDmCreateObjectAttributeResponse = {
|
|
|
11797
11803
|
name?: Maybe<Scalars['String']['output']>;
|
|
11798
11804
|
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
11799
11805
|
};
|
|
11800
|
-
export declare enum AssetsDmDataDictionaryColumnName {
|
|
11801
|
-
ComputeDictionaryId = "computeDictionaryId",
|
|
11802
|
-
DestinationObjectAttributeId = "destinationObjectAttributeId",
|
|
11803
|
-
DmComputeDictionaryDate = "dmComputeDictionaryDate",
|
|
11804
|
-
DmComputeDictionaryId = "dmComputeDictionaryId",
|
|
11805
|
-
Name = "name",
|
|
11806
|
-
ObjectId = "objectId",
|
|
11807
|
-
Priority = "priority",
|
|
11808
|
-
Scope = "scope",
|
|
11809
|
-
SourceObjectAttributeId = "sourceObjectAttributeId",
|
|
11810
|
-
SourceObjectAttributeId2 = "sourceObjectAttributeId2",
|
|
11811
|
-
TenantId = "tenantId"
|
|
11812
|
-
}
|
|
11813
11806
|
export type AssetsDmDataDictionaryFilter = {
|
|
11814
11807
|
columnName: AssetsDmDataDictionaryFilterColumn;
|
|
11815
11808
|
value: Scalars['String']['input'];
|
|
@@ -11873,7 +11866,6 @@ export type AssetsDmDataDictionaryRow = {
|
|
|
11873
11866
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
11874
11867
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
11875
11868
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
11876
|
-
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
11877
11869
|
name: Scalars['String']['output'];
|
|
11878
11870
|
objectId: Scalars['ID']['output'];
|
|
11879
11871
|
priority: Scalars['Int']['output'];
|
|
@@ -11918,11 +11910,6 @@ export type AssetsDmDataSource = {
|
|
|
11918
11910
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
11919
11911
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
11920
11912
|
};
|
|
11921
|
-
export type AssetsDmDataSourceArgs = {
|
|
11922
|
-
cloudId: Scalars['ID']['input'];
|
|
11923
|
-
dataSourceId: Scalars['ID']['input'];
|
|
11924
|
-
workspaceId: Scalars['ID']['input'];
|
|
11925
|
-
};
|
|
11926
11913
|
export type AssetsDmDataSourceCleansingCleansingExecutive = {
|
|
11927
11914
|
__typename?: 'AssetsDMDataSourceCleansingCleansingExecutive';
|
|
11928
11915
|
cleansingExecutiveId: Scalars['ID']['output'];
|
|
@@ -12180,13 +12167,6 @@ export type AssetsDmDataSourceDetail = {
|
|
|
12180
12167
|
tableName: Scalars['String']['output'];
|
|
12181
12168
|
tenantId: Scalars['ID']['output'];
|
|
12182
12169
|
};
|
|
12183
|
-
export type AssetsDmDataSourceDetailResponse = {
|
|
12184
|
-
__typename?: 'AssetsDMDataSourceDetailResponse';
|
|
12185
|
-
dataSource?: Maybe<AssetsDmDataSourceDetail>;
|
|
12186
|
-
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
12187
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
12188
|
-
success: Scalars['Boolean']['output'];
|
|
12189
|
-
};
|
|
12190
12170
|
export type AssetsDmDataSourceDetails = {
|
|
12191
12171
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
12192
12172
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -12565,12 +12545,6 @@ export type AssetsDmDataSourcesList = {
|
|
|
12565
12545
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
12566
12546
|
totalCount: Scalars['Int']['output'];
|
|
12567
12547
|
};
|
|
12568
|
-
export type AssetsDmDataSourcesListArgs = {
|
|
12569
|
-
cloudId: Scalars['ID']['input'];
|
|
12570
|
-
search?: InputMaybe<AssetsDmDataSourceSearch>;
|
|
12571
|
-
sortBy?: InputMaybe<AssetsDmDataSourceSort>;
|
|
12572
|
-
workspaceId: Scalars['ID']['input'];
|
|
12573
|
-
};
|
|
12574
12548
|
export type AssetsDmDateFormatMutationResponse = {
|
|
12575
12549
|
__typename?: 'AssetsDMDateFormatMutationResponse';
|
|
12576
12550
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -12672,7 +12646,6 @@ export type AssetsDmDefaultAttributeMappingRow = {
|
|
|
12672
12646
|
isPrimaryKey: Scalars['Boolean']['output'];
|
|
12673
12647
|
isSecondaryKey: Scalars['Boolean']['output'];
|
|
12674
12648
|
objectAttributeId: Scalars['ID']['output'];
|
|
12675
|
-
objectClassId: Scalars['ID']['output'];
|
|
12676
12649
|
sourceColumn: Scalars['String']['output'];
|
|
12677
12650
|
};
|
|
12678
12651
|
export type AssetsDmDefaultAttributeMappingSortBy = {
|
|
@@ -12773,11 +12746,6 @@ export type AssetsDmDeleteDataDictionaryResponse = {
|
|
|
12773
12746
|
isSuccessful: Scalars['Boolean']['output'];
|
|
12774
12747
|
message: Scalars['String']['output'];
|
|
12775
12748
|
};
|
|
12776
|
-
export type AssetsDmDeleteDataSourceArgs = {
|
|
12777
|
-
cloudId: Scalars['ID']['input'];
|
|
12778
|
-
input: AssetsDmDeleteDataSourceInput;
|
|
12779
|
-
workspaceId: Scalars['ID']['input'];
|
|
12780
|
-
};
|
|
12781
12749
|
export type AssetsDmDeleteDataSourceConfigPayload = {
|
|
12782
12750
|
__typename?: 'AssetsDMDeleteDataSourceConfigPayload';
|
|
12783
12751
|
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -13390,11 +13358,6 @@ export type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
|
13390
13358
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13391
13359
|
message: Scalars['String']['output'];
|
|
13392
13360
|
};
|
|
13393
|
-
export declare enum AssetsDmObjectsListIconType {
|
|
13394
|
-
Failed = "FAILED",
|
|
13395
|
-
Success = "SUCCESS",
|
|
13396
|
-
Unknown = "UNKNOWN"
|
|
13397
|
-
}
|
|
13398
13361
|
export type AssetsDmObjectsListPageInfo = {
|
|
13399
13362
|
__typename?: 'AssetsDMObjectsListPageInfo';
|
|
13400
13363
|
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13556,8 +13519,8 @@ export type AssetsDmQualysReport = {
|
|
|
13556
13519
|
};
|
|
13557
13520
|
export type AssetsDmRawDataFilter = {
|
|
13558
13521
|
__typename?: 'AssetsDMRawDataFilter';
|
|
13559
|
-
name
|
|
13560
|
-
type
|
|
13522
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13523
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
13561
13524
|
value?: Maybe<Scalars['String']['output']>;
|
|
13562
13525
|
valueTo?: Maybe<Scalars['String']['output']>;
|
|
13563
13526
|
};
|
|
@@ -13727,11 +13690,6 @@ export type AssetsDmUpdateCleansingReasonResponse = {
|
|
|
13727
13690
|
isSuccessful: Scalars['Boolean']['output'];
|
|
13728
13691
|
message: Scalars['String']['output'];
|
|
13729
13692
|
};
|
|
13730
|
-
export type AssetsDmUpdateDataSourceArgs = {
|
|
13731
|
-
cloudId: Scalars['ID']['input'];
|
|
13732
|
-
input: AssetsDmUpdateDataSourceInput;
|
|
13733
|
-
workspaceId: Scalars['ID']['input'];
|
|
13734
|
-
};
|
|
13735
13693
|
export type AssetsDmUpdateDataSourceInput = {
|
|
13736
13694
|
dataSourceId: Scalars['ID']['input'];
|
|
13737
13695
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -13746,11 +13704,6 @@ export type AssetsDmUpdateDataSourcePayload = {
|
|
|
13746
13704
|
message?: Maybe<Scalars['String']['output']>;
|
|
13747
13705
|
success: Scalars['Boolean']['output'];
|
|
13748
13706
|
};
|
|
13749
|
-
export type AssetsDmUpdateDataSourcePriorityArgs = {
|
|
13750
|
-
cloudId: Scalars['ID']['input'];
|
|
13751
|
-
input: AssetsDmUpdateDataSourcePriorityInput;
|
|
13752
|
-
workspaceId: Scalars['ID']['input'];
|
|
13753
|
-
};
|
|
13754
13707
|
export type AssetsDmUpdateDataSourcePriorityInput = {
|
|
13755
13708
|
dataSourceId: Scalars['ID']['input'];
|
|
13756
13709
|
increase: Scalars['Boolean']['input'];
|
|
@@ -14102,6 +14055,7 @@ export type AssetsProjectAttribute = AssetsObjectTypeAttribute & {
|
|
|
14102
14055
|
name?: Maybe<Scalars['String']['output']>;
|
|
14103
14056
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
14104
14057
|
position?: Maybe<Scalars['Int']['output']>;
|
|
14058
|
+
sitePickerEntry?: Maybe<AssetsSitePickerEntry>;
|
|
14105
14059
|
};
|
|
14106
14060
|
export type AssetsProjectAttributeOnObject = AssetsAttributeOnObject & {
|
|
14107
14061
|
__typename?: 'AssetsProjectAttributeOnObject';
|
|
@@ -14179,6 +14133,12 @@ export type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
|
14179
14133
|
export type AssetsServiceObjectAttributesArgs = {
|
|
14180
14134
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
14181
14135
|
};
|
|
14136
|
+
export type AssetsSitePickerEntry = {
|
|
14137
|
+
__typename?: 'AssetsSitePickerEntry';
|
|
14138
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14139
|
+
displayUrl?: Maybe<Scalars['String']['output']>;
|
|
14140
|
+
siteCloudId?: Maybe<Scalars['String']['output']>;
|
|
14141
|
+
};
|
|
14182
14142
|
export type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
|
|
14183
14143
|
__typename?: 'AssetsSpaceAttribute';
|
|
14184
14144
|
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -14731,6 +14691,7 @@ export type AssetsVerticalDepreciationRuleAssetTypeInput = {
|
|
|
14731
14691
|
objSchemaId: Scalars['ID']['input'];
|
|
14732
14692
|
objTypeId: Scalars['ID']['input'];
|
|
14733
14693
|
};
|
|
14694
|
+
export type AssetsVerticalDepreciationRuleByAssetTypesTrackingResult = AssetsVerticalDepreciationRule | QueryError;
|
|
14734
14695
|
export type AssetsVerticalDepreciationRuleConnection = {
|
|
14735
14696
|
__typename?: 'AssetsVerticalDepreciationRuleConnection';
|
|
14736
14697
|
edges: Array<AssetsVerticalDepreciationRuleEdge>;
|
|
@@ -17010,6 +16971,83 @@ export type CcpCompareOfferingsHighlightedOfferingInput = {
|
|
|
17010
16971
|
export type CcpCompareOfferingsInput = {
|
|
17011
16972
|
highlightedOffering?: InputMaybe<CcpCompareOfferingsHighlightedOfferingInput>;
|
|
17012
16973
|
};
|
|
16974
|
+
export type CcpConcession = Node & {
|
|
16975
|
+
__typename?: 'CcpConcession';
|
|
16976
|
+
applicationReason?: Maybe<CcpConcessionApplicationReasonWithCustomisable>;
|
|
16977
|
+
benefits?: Maybe<Array<Maybe<CcpConcessionBenefit>>>;
|
|
16978
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
16979
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
16980
|
+
eligibilityRules?: Maybe<CcpConcessionEligibilityRule>;
|
|
16981
|
+
eligibleWindow?: Maybe<CcpConcessionEligibleWindow>;
|
|
16982
|
+
id: Scalars['ID']['output'];
|
|
16983
|
+
promotionCodeConfig?: Maybe<CcpConcessionPromotionCodeConfig>;
|
|
16984
|
+
status?: Maybe<CcpConcessionStatus>;
|
|
16985
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
16986
|
+
type?: Maybe<CcpConcessionType>;
|
|
16987
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
16988
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
16989
|
+
};
|
|
16990
|
+
export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
16991
|
+
Promotion = "PROMOTION",
|
|
16992
|
+
PromotionCode = "PROMOTION_CODE"
|
|
16993
|
+
}
|
|
16994
|
+
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
16995
|
+
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
16996
|
+
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
16997
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
16998
|
+
readableName?: Maybe<Scalars['String']['output']>;
|
|
16999
|
+
};
|
|
17000
|
+
export type CcpConcessionBenefit = {
|
|
17001
|
+
__typename?: 'CcpConcessionBenefit';
|
|
17002
|
+
benefitType?: Maybe<CcpPromotionBenefitType>;
|
|
17003
|
+
customisable?: Maybe<CcpPromotionBenefitCustomisable>;
|
|
17004
|
+
duration?: Maybe<CcpDuration>;
|
|
17005
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
17006
|
+
subBenefitType?: Maybe<CcpPromotionSubBenefitType>;
|
|
17007
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
17008
|
+
values?: Maybe<Array<Maybe<CcpBenefitValue>>>;
|
|
17009
|
+
};
|
|
17010
|
+
export type CcpConcessionEligibilityRule = {
|
|
17011
|
+
__typename?: 'CcpConcessionEligibilityRule';
|
|
17012
|
+
currencies?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
17013
|
+
pricingType?: Maybe<Array<Maybe<CcpPromotionEligibilityPricingType>>>;
|
|
17014
|
+
ruleCondition?: Maybe<CcpPromotionAndOrRuleCondition>;
|
|
17015
|
+
};
|
|
17016
|
+
export type CcpConcessionEligibleWindow = {
|
|
17017
|
+
__typename?: 'CcpConcessionEligibleWindow';
|
|
17018
|
+
endTime?: Maybe<Scalars['Float']['output']>;
|
|
17019
|
+
startTime?: Maybe<Scalars['Float']['output']>;
|
|
17020
|
+
};
|
|
17021
|
+
export type CcpConcessionPromotionCodeConfig = {
|
|
17022
|
+
__typename?: 'CcpConcessionPromotionCodeConfig';
|
|
17023
|
+
allowedRedemptionMethods?: Maybe<Array<Maybe<CcpConcessionAllowedRedemptionMethod>>>;
|
|
17024
|
+
maxRedemptions?: Maybe<Scalars['Int']['output']>;
|
|
17025
|
+
promotionCodeType?: Maybe<CcpConcessionPromotionCodeType>;
|
|
17026
|
+
};
|
|
17027
|
+
export declare enum CcpConcessionPromotionCodeType {
|
|
17028
|
+
None = "NONE",
|
|
17029
|
+
Shared = "SHARED",
|
|
17030
|
+
Unique = "UNIQUE"
|
|
17031
|
+
}
|
|
17032
|
+
export declare enum CcpConcessionStatus {
|
|
17033
|
+
Active = "ACTIVE",
|
|
17034
|
+
Cancelled = "CANCELLED",
|
|
17035
|
+
Drafted = "DRAFTED",
|
|
17036
|
+
Expired = "EXPIRED",
|
|
17037
|
+
Inactive = "INACTIVE",
|
|
17038
|
+
Withdrawn = "WITHDRAWN"
|
|
17039
|
+
}
|
|
17040
|
+
export declare enum CcpConcessionType {
|
|
17041
|
+
DealRegistrationMargin = "DEAL_REGISTRATION_MARGIN",
|
|
17042
|
+
DiscretionaryDiscount = "DISCRETIONARY_DISCOUNT",
|
|
17043
|
+
ListPrice = "LIST_PRICE",
|
|
17044
|
+
ListPriceAdjustment = "LIST_PRICE_ADJUSTMENT",
|
|
17045
|
+
LoyaltyDiscount = "LOYALTY_DISCOUNT",
|
|
17046
|
+
PartnerDiscount = "PARTNER_DISCOUNT",
|
|
17047
|
+
PartnerMargin = "PARTNER_MARGIN",
|
|
17048
|
+
PromoCode = "PROMO_CODE",
|
|
17049
|
+
TrialExtension = "TRIAL_EXTENSION"
|
|
17050
|
+
}
|
|
17013
17051
|
export type CcpConfigurePaymentMethodExperienceCapability = CommerceExperienceCapability & {
|
|
17014
17052
|
__typename?: 'CcpConfigurePaymentMethodExperienceCapability';
|
|
17015
17053
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -21274,6 +21312,7 @@ export type CommerceExpCcpTransactionAccount = {
|
|
|
21274
21312
|
paginatedInvoiceGroupsResult?: Maybe<CommerceExpInvoiceGroupResultConnection>;
|
|
21275
21313
|
paymentMethods?: Maybe<Array<Maybe<CommerceExpPaymentMethod>>>;
|
|
21276
21314
|
quotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
21315
|
+
quotes2?: Maybe<CommerceExpQuoteConnection>;
|
|
21277
21316
|
shipToParties?: Maybe<Array<Maybe<CommerceExpShipToParty>>>;
|
|
21278
21317
|
slug?: Maybe<Scalars['String']['output']>;
|
|
21279
21318
|
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
@@ -21309,6 +21348,14 @@ export type CommerceExpCcpTransactionAccountQuotesArgs = {
|
|
|
21309
21348
|
filter?: InputMaybe<CommerceExpQuoteFilter>;
|
|
21310
21349
|
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
21311
21350
|
};
|
|
21351
|
+
export type CommerceExpCcpTransactionAccountQuotes2Args = {
|
|
21352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
21353
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
21354
|
+
filter?: InputMaybe<CommerceExpQuoteFilter>;
|
|
21355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21356
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
21357
|
+
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
21358
|
+
};
|
|
21312
21359
|
export type CommerceExpChargeDetails = {
|
|
21313
21360
|
__typename?: 'CommerceExpChargeDetails';
|
|
21314
21361
|
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
@@ -23371,6 +23418,16 @@ export type CommerceExpPurchaseOrderInput = {
|
|
|
23371
23418
|
number: Scalars['String']['input'];
|
|
23372
23419
|
oneTimeUse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23373
23420
|
};
|
|
23421
|
+
export type CommerceExpQuoteConnection = {
|
|
23422
|
+
__typename?: 'CommerceExpQuoteConnection';
|
|
23423
|
+
edges?: Maybe<Array<Maybe<CommerceExpQuoteEdge>>>;
|
|
23424
|
+
pageInfo: PageInfo;
|
|
23425
|
+
};
|
|
23426
|
+
export type CommerceExpQuoteEdge = {
|
|
23427
|
+
__typename?: 'CommerceExpQuoteEdge';
|
|
23428
|
+
cursor: Scalars['String']['output'];
|
|
23429
|
+
node?: Maybe<CommerceExpCcpQuote>;
|
|
23430
|
+
};
|
|
23374
23431
|
export type CommerceExpQuoteFilter = {
|
|
23375
23432
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
23376
23433
|
};
|
|
@@ -31027,6 +31084,14 @@ export type ConfluenceCreateSpacePayload = Payload & {
|
|
|
31027
31084
|
space?: Maybe<ConfluenceSpace>;
|
|
31028
31085
|
success: Scalars['Boolean']['output'];
|
|
31029
31086
|
};
|
|
31087
|
+
export type ConfluenceCreateSpaceSmartLinkEmbedInput = {
|
|
31088
|
+
embedIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
31089
|
+
embedUrl: Scalars['String']['input'];
|
|
31090
|
+
extensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
31091
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
31092
|
+
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
31093
|
+
title: Scalars['String']['input'];
|
|
31094
|
+
};
|
|
31030
31095
|
export type ConfluenceCreateTopicInput = {
|
|
31031
31096
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
31032
31097
|
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37215,11 +37280,15 @@ export type ContentBody = {
|
|
|
37215
37280
|
links?: Maybe<LinksContextBase>;
|
|
37216
37281
|
macroRenderedOutput?: Maybe<FormattedBody>;
|
|
37217
37282
|
macroRenderedRepresentation?: Maybe<Scalars['String']['output']>;
|
|
37283
|
+
mediaItems?: Maybe<Array<Maybe<MediaItem>>>;
|
|
37218
37284
|
mediaToken?: Maybe<EmbeddedMediaToken>;
|
|
37219
37285
|
representation?: Maybe<Scalars['String']['output']>;
|
|
37220
37286
|
value?: Maybe<Scalars['String']['output']>;
|
|
37221
37287
|
webresource?: Maybe<WebResourceDependencies>;
|
|
37222
37288
|
};
|
|
37289
|
+
export type ContentBodyMediaItemsArgs = {
|
|
37290
|
+
cloudId: Scalars['ID']['input'];
|
|
37291
|
+
};
|
|
37223
37292
|
export type ContentBodyInput = {
|
|
37224
37293
|
representation: Scalars['String']['input'];
|
|
37225
37294
|
value: Scalars['String']['input'];
|
|
@@ -37707,6 +37776,7 @@ export type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
37707
37776
|
export type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
37708
37777
|
__typename?: 'ConvoAiConversationMessage';
|
|
37709
37778
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
37779
|
+
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
37710
37780
|
artifacts?: Maybe<Array<ConvoAiMessageArtifact>>;
|
|
37711
37781
|
authorId?: Maybe<Scalars['String']['output']>;
|
|
37712
37782
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
@@ -37951,6 +38021,69 @@ export declare enum ConvoAiRelatedLinksMode {
|
|
|
37951
38021
|
ThirdParty = "THIRD_PARTY",
|
|
37952
38022
|
Unified = "UNIFIED"
|
|
37953
38023
|
}
|
|
38024
|
+
export declare enum ConvoAiSearchAgentEffort {
|
|
38025
|
+
Agentic = "AGENTIC",
|
|
38026
|
+
Light = "LIGHT"
|
|
38027
|
+
}
|
|
38028
|
+
export type ConvoAiSearchAgentInput = {
|
|
38029
|
+
cloudId: Scalars['ID']['input'];
|
|
38030
|
+
effort?: InputMaybe<ConvoAiSearchAgentEffort>;
|
|
38031
|
+
maxSources?: InputMaybe<Scalars['Int']['input']>;
|
|
38032
|
+
query: Scalars['String']['input'];
|
|
38033
|
+
responseMode?: InputMaybe<ConvoAiSearchAgentResponseMode>;
|
|
38034
|
+
sources?: InputMaybe<Array<ConvoAiSearchAgentSource>>;
|
|
38035
|
+
userQuery?: InputMaybe<Scalars['String']['input']>;
|
|
38036
|
+
};
|
|
38037
|
+
export type ConvoAiSearchAgentPayload = {
|
|
38038
|
+
__typename?: 'ConvoAiSearchAgentPayload';
|
|
38039
|
+
answer?: Maybe<Scalars['String']['output']>;
|
|
38040
|
+
errors?: Maybe<Array<Maybe<QueryError>>>;
|
|
38041
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
38042
|
+
ranking?: Maybe<Array<Maybe<ConvoAiSearchAgentRankedDocument>>>;
|
|
38043
|
+
sources?: Maybe<Array<Maybe<ConvoAiSearchAgentSourceResult>>>;
|
|
38044
|
+
timing?: Maybe<ConvoAiSearchAgentTiming>;
|
|
38045
|
+
};
|
|
38046
|
+
export type ConvoAiSearchAgentRankedDocument = {
|
|
38047
|
+
__typename?: 'ConvoAiSearchAgentRankedDocument';
|
|
38048
|
+
coverageOfSubquestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38049
|
+
evidenceSnippets?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
38050
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
38051
|
+
scoreTotal?: Maybe<Scalars['Int']['output']>;
|
|
38052
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
38053
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
38054
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
38055
|
+
versionStatus?: Maybe<Scalars['String']['output']>;
|
|
38056
|
+
};
|
|
38057
|
+
export declare enum ConvoAiSearchAgentResponseMode {
|
|
38058
|
+
AnswerAndSources = "ANSWER_AND_SOURCES",
|
|
38059
|
+
SourcesOnly = "SOURCES_ONLY"
|
|
38060
|
+
}
|
|
38061
|
+
export declare enum ConvoAiSearchAgentSource {
|
|
38062
|
+
Confluence = "CONFLUENCE",
|
|
38063
|
+
GoogleDocs = "GOOGLE_DOCS",
|
|
38064
|
+
Slack = "SLACK",
|
|
38065
|
+
ThirdParty = "THIRD_PARTY",
|
|
38066
|
+
Townsquare = "TOWNSQUARE"
|
|
38067
|
+
}
|
|
38068
|
+
export type ConvoAiSearchAgentSourceResult = {
|
|
38069
|
+
__typename?: 'ConvoAiSearchAgentSourceResult';
|
|
38070
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
38071
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
38072
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
38073
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
38074
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
38075
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
38076
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
38077
|
+
};
|
|
38078
|
+
export type ConvoAiSearchAgentTiming = {
|
|
38079
|
+
__typename?: 'ConvoAiSearchAgentTiming';
|
|
38080
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
38081
|
+
llmCallsCount?: Maybe<Scalars['Int']['output']>;
|
|
38082
|
+
llmCallsMs?: Maybe<Scalars['Long']['output']>;
|
|
38083
|
+
overallMs?: Maybe<Scalars['Long']['output']>;
|
|
38084
|
+
toolExecutionsCount?: Maybe<Scalars['Int']['output']>;
|
|
38085
|
+
toolExecutionsMs?: Maybe<Scalars['Long']['output']>;
|
|
38086
|
+
};
|
|
37954
38087
|
export type ConvoAiSkill = {
|
|
37955
38088
|
__typename?: 'ConvoAiSkill';
|
|
37956
38089
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -38002,6 +38135,7 @@ export type ConvoAiThirdPartyRelatedLink = {
|
|
|
38002
38135
|
};
|
|
38003
38136
|
export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
38004
38137
|
__typename?: 'ConvoAiTraceMessage';
|
|
38138
|
+
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38005
38139
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38006
38140
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38007
38141
|
messageTemplate: Scalars['String']['output'];
|
|
@@ -38365,7 +38499,7 @@ export type CplsCopyContributorToWorksPayload = Payload & {
|
|
|
38365
38499
|
errors?: Maybe<Array<MutationError>>;
|
|
38366
38500
|
success: Scalars['Boolean']['output'];
|
|
38367
38501
|
workContributorAssociationsByScope?: Maybe<Array<CplsWorkContributorEdge>>;
|
|
38368
|
-
worksByScope?: Maybe<Array<
|
|
38502
|
+
worksByScope?: Maybe<Array<CplsWorkEdge>>;
|
|
38369
38503
|
};
|
|
38370
38504
|
export type CplsCopyContributorToWorksPayloadWorkContributorAssociationsByScopeArgs = {
|
|
38371
38505
|
scopeId: Scalars['ID']['input'];
|
|
@@ -38384,7 +38518,7 @@ export type CplsCopyWorkToContributorsInput = {
|
|
|
38384
38518
|
export type CplsCopyWorkToContributorsPayload = Payload & {
|
|
38385
38519
|
__typename?: 'CplsCopyWorkToContributorsPayload';
|
|
38386
38520
|
contributorWorkAssociationsByScope?: Maybe<Array<CplsContributorWorkEdge>>;
|
|
38387
|
-
contributorsByScope?: Maybe<Array<
|
|
38521
|
+
contributorsByScope?: Maybe<Array<CplsContributorEdge>>;
|
|
38388
38522
|
errors?: Maybe<Array<MutationError>>;
|
|
38389
38523
|
success: Scalars['Boolean']['output'];
|
|
38390
38524
|
};
|
|
@@ -39580,6 +39714,7 @@ export type CreateSpaceInput = {
|
|
|
39580
39714
|
spaceLogoDataURI?: InputMaybe<Scalars['String']['input']>;
|
|
39581
39715
|
spaceName: Scalars['String']['input'];
|
|
39582
39716
|
spaceTemplateKey?: InputMaybe<Scalars['String']['input']>;
|
|
39717
|
+
thirdPartyFileEmbeds?: InputMaybe<Array<ConfluenceCreateSpaceSmartLinkEmbedInput>>;
|
|
39583
39718
|
};
|
|
39584
39719
|
export type CreateSpaceJiraProjectInput = {
|
|
39585
39720
|
jiraProjectKey: Scalars['String']['input'];
|
|
@@ -39716,6 +39851,47 @@ export type CsmAiAgentToneInput = {
|
|
|
39716
39851
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
39717
39852
|
type: Scalars['String']['input'];
|
|
39718
39853
|
};
|
|
39854
|
+
export type CsmAiAgentTool = {
|
|
39855
|
+
__typename?: 'CsmAiAgentTool';
|
|
39856
|
+
configuration?: Maybe<CsmAiAgentToolConfiguration>;
|
|
39857
|
+
definitionId: Scalars['String']['output'];
|
|
39858
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
39859
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
39860
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
39861
|
+
id: Scalars['ID']['output'];
|
|
39862
|
+
isResolved: Scalars['Boolean']['output'];
|
|
39863
|
+
source: CsmAiAgentToolSource;
|
|
39864
|
+
};
|
|
39865
|
+
export type CsmAiAgentToolConfiguration = {
|
|
39866
|
+
__typename?: 'CsmAiAgentToolConfiguration';
|
|
39867
|
+
properties?: Maybe<Array<CsmAiAgentToolPropertyConfiguration>>;
|
|
39868
|
+
requiresConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
39869
|
+
};
|
|
39870
|
+
export type CsmAiAgentToolConfigurationInput = {
|
|
39871
|
+
properties?: InputMaybe<Array<CsmAiAgentToolPropertyConfigurationInput>>;
|
|
39872
|
+
requiresConfirmation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39873
|
+
};
|
|
39874
|
+
export type CsmAiAgentToolPropertyConfiguration = {
|
|
39875
|
+
__typename?: 'CsmAiAgentToolPropertyConfiguration';
|
|
39876
|
+
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
39877
|
+
id: Scalars['String']['output'];
|
|
39878
|
+
};
|
|
39879
|
+
export type CsmAiAgentToolPropertyConfigurationInput = {
|
|
39880
|
+
allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39881
|
+
id: Scalars['String']['input'];
|
|
39882
|
+
};
|
|
39883
|
+
export type CsmAiAgentToolResult = CsmAiAgentTool | QueryError;
|
|
39884
|
+
export type CsmAiAgentToolSelectionInput = {
|
|
39885
|
+
definitionId: Scalars['String']['input'];
|
|
39886
|
+
source: CsmAiAgentToolSource;
|
|
39887
|
+
};
|
|
39888
|
+
export declare enum CsmAiAgentToolSource {
|
|
39889
|
+
ConvoAi = "CONVO_AI",
|
|
39890
|
+
Forge = "FORGE",
|
|
39891
|
+
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
39892
|
+
McpServer = "MCP_SERVER",
|
|
39893
|
+
McpTool = "MCP_TOOL"
|
|
39894
|
+
}
|
|
39719
39895
|
export type CsmAiAgentVersion = {
|
|
39720
39896
|
__typename?: 'CsmAiAgentVersion';
|
|
39721
39897
|
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
@@ -39724,6 +39900,7 @@ export type CsmAiAgentVersion = {
|
|
|
39724
39900
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
39725
39901
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
39726
39902
|
publishedAt?: Maybe<Scalars['Long']['output']>;
|
|
39903
|
+
tools?: Maybe<Array<CsmAiAgentToolResult>>;
|
|
39727
39904
|
versionId: Scalars['ID']['output'];
|
|
39728
39905
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
39729
39906
|
versionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -40098,6 +40275,21 @@ export type CsmAiUpdateAgentPayload = Payload & {
|
|
|
40098
40275
|
errors?: Maybe<Array<MutationError>>;
|
|
40099
40276
|
success: Scalars['Boolean']['output'];
|
|
40100
40277
|
};
|
|
40278
|
+
export type CsmAiUpdateAgentToolConfigurationPayload = Payload & {
|
|
40279
|
+
__typename?: 'CsmAiUpdateAgentToolConfigurationPayload';
|
|
40280
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40281
|
+
success: Scalars['Boolean']['output'];
|
|
40282
|
+
tool?: Maybe<CsmAiAgentTool>;
|
|
40283
|
+
};
|
|
40284
|
+
export type CsmAiUpdateAgentToolsInput = {
|
|
40285
|
+
tools: Array<CsmAiAgentToolSelectionInput>;
|
|
40286
|
+
};
|
|
40287
|
+
export type CsmAiUpdateAgentToolsPayload = Payload & {
|
|
40288
|
+
__typename?: 'CsmAiUpdateAgentToolsPayload';
|
|
40289
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40290
|
+
success: Scalars['Boolean']['output'];
|
|
40291
|
+
tools?: Maybe<Array<CsmAiAgentTool>>;
|
|
40292
|
+
};
|
|
40101
40293
|
export type CsmAiUpdateCoachingContentInput = {
|
|
40102
40294
|
coachingContent?: InputMaybe<CsmAiAuthoredCoachingContentInput>;
|
|
40103
40295
|
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40568,6 +40760,52 @@ export declare enum CustomerServiceAiSurface {
|
|
|
40568
40760
|
CustomerProfile = "CUSTOMER_PROFILE",
|
|
40569
40761
|
OrganizationProfile = "ORGANIZATION_PROFILE"
|
|
40570
40762
|
}
|
|
40763
|
+
export type CustomerServiceAssetsAvatar = {
|
|
40764
|
+
__typename?: 'CustomerServiceAssetsAvatar';
|
|
40765
|
+
mediaClientConfig?: Maybe<CustomerServiceAssetsMediaClientConfig>;
|
|
40766
|
+
url16: Scalars['String']['output'];
|
|
40767
|
+
url48: Scalars['String']['output'];
|
|
40768
|
+
url72: Scalars['String']['output'];
|
|
40769
|
+
url144: Scalars['String']['output'];
|
|
40770
|
+
url288: Scalars['String']['output'];
|
|
40771
|
+
};
|
|
40772
|
+
export type CustomerServiceAssetsFieldConfig = {
|
|
40773
|
+
__typename?: 'CustomerServiceAssetsFieldConfig';
|
|
40774
|
+
objectType: CustomerServiceAssetsFieldObjectTypeMetadata;
|
|
40775
|
+
schema: CustomerServiceAssetsFieldSchemaMetadata;
|
|
40776
|
+
};
|
|
40777
|
+
export type CustomerServiceAssetsFieldObject = {
|
|
40778
|
+
__typename?: 'CustomerServiceAssetsFieldObject';
|
|
40779
|
+
avatar: CustomerServiceAssetsAvatar;
|
|
40780
|
+
id: Scalars['ID']['output'];
|
|
40781
|
+
label: Scalars['String']['output'];
|
|
40782
|
+
objectSchemaId: Scalars['ID']['output'];
|
|
40783
|
+
objectTypeId: Scalars['ID']['output'];
|
|
40784
|
+
};
|
|
40785
|
+
export type CustomerServiceAssetsFieldObjectTypeMetadata = {
|
|
40786
|
+
__typename?: 'CustomerServiceAssetsFieldObjectTypeMetadata';
|
|
40787
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
40788
|
+
icon: CustomerServiceAssetsObjectTypeIcon;
|
|
40789
|
+
id: Scalars['ID']['output'];
|
|
40790
|
+
name: Scalars['String']['output'];
|
|
40791
|
+
};
|
|
40792
|
+
export type CustomerServiceAssetsFieldSchemaMetadata = {
|
|
40793
|
+
__typename?: 'CustomerServiceAssetsFieldSchemaMetadata';
|
|
40794
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
40795
|
+
id: Scalars['ID']['output'];
|
|
40796
|
+
name: Scalars['String']['output'];
|
|
40797
|
+
};
|
|
40798
|
+
export type CustomerServiceAssetsMediaClientConfig = {
|
|
40799
|
+
__typename?: 'CustomerServiceAssetsMediaClientConfig';
|
|
40800
|
+
clientId: Scalars['String']['output'];
|
|
40801
|
+
mediaBaseUrl: Scalars['String']['output'];
|
|
40802
|
+
mediaJwtToken: Scalars['String']['output'];
|
|
40803
|
+
};
|
|
40804
|
+
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
40805
|
+
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
40806
|
+
url16: Scalars['String']['output'];
|
|
40807
|
+
url48: Scalars['String']['output'];
|
|
40808
|
+
};
|
|
40571
40809
|
export type CustomerServiceAttribute = Node & {
|
|
40572
40810
|
__typename?: 'CustomerServiceAttribute';
|
|
40573
40811
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -40620,6 +40858,7 @@ export type CustomerServiceAttributeType = {
|
|
|
40620
40858
|
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
40621
40859
|
};
|
|
40622
40860
|
export declare enum CustomerServiceAttributeTypeName {
|
|
40861
|
+
AssetsObject = "ASSETS_OBJECT",
|
|
40623
40862
|
Boolean = "BOOLEAN",
|
|
40624
40863
|
Date = "DATE",
|
|
40625
40864
|
Email = "EMAIL",
|
|
@@ -40731,6 +40970,14 @@ export type CustomerServiceBrandingUpsertPayload = {
|
|
|
40731
40970
|
errors?: Maybe<Array<MutationError>>;
|
|
40732
40971
|
success: Scalars['Boolean']['output'];
|
|
40733
40972
|
};
|
|
40973
|
+
export type CustomerServiceConnectedFieldConfig = {
|
|
40974
|
+
__typename?: 'CustomerServiceConnectedFieldConfig';
|
|
40975
|
+
assetsField?: Maybe<CustomerServiceAssetsFieldConfig>;
|
|
40976
|
+
};
|
|
40977
|
+
export type CustomerServiceConnectedFieldData = {
|
|
40978
|
+
__typename?: 'CustomerServiceConnectedFieldData';
|
|
40979
|
+
assetsObjects?: Maybe<Array<CustomerServiceAssetsFieldObject>>;
|
|
40980
|
+
};
|
|
40734
40981
|
export type CustomerServiceContext = {
|
|
40735
40982
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
40736
40983
|
type: CustomerServiceContextType;
|
|
@@ -40791,6 +41038,7 @@ export type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
|
40791
41038
|
export type CustomerServiceCustomDetail = Node & {
|
|
40792
41039
|
__typename?: 'CustomerServiceCustomDetail';
|
|
40793
41040
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
41041
|
+
connectedFieldConfig?: Maybe<CustomerServiceConnectedFieldConfig>;
|
|
40794
41042
|
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
40795
41043
|
id: Scalars['ID']['output'];
|
|
40796
41044
|
isDefaultField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -40879,6 +41127,7 @@ export type CustomerServiceCustomDetailType = {
|
|
|
40879
41127
|
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
40880
41128
|
};
|
|
40881
41129
|
export declare enum CustomerServiceCustomDetailTypeName {
|
|
41130
|
+
AssetsObject = "ASSETS_OBJECT",
|
|
40882
41131
|
Boolean = "BOOLEAN",
|
|
40883
41132
|
Date = "DATE",
|
|
40884
41133
|
Email = "EMAIL",
|
|
@@ -40909,6 +41158,7 @@ export type CustomerServiceCustomDetailValue = Node & {
|
|
|
40909
41158
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
40910
41159
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
40911
41160
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
41161
|
+
connectedFieldData?: Maybe<CustomerServiceConnectedFieldData>;
|
|
40912
41162
|
id: Scalars['ID']['output'];
|
|
40913
41163
|
name: Scalars['String']['output'];
|
|
40914
41164
|
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
@@ -42772,6 +43022,11 @@ export type DevAiAutodevNextCurrentUsageCounts = {
|
|
|
42772
43022
|
__typename?: 'DevAiAutodevNextCurrentUsageCounts';
|
|
42773
43023
|
counts?: Maybe<Array<DevAiAutodevNextUsageStageCount>>;
|
|
42774
43024
|
};
|
|
43025
|
+
export type DevAiAutodevNextDailyCompletedWorkItemCount = {
|
|
43026
|
+
__typename?: 'DevAiAutodevNextDailyCompletedWorkItemCount';
|
|
43027
|
+
completedWorkItemCount?: Maybe<Scalars['Int']['output']>;
|
|
43028
|
+
date?: Maybe<Scalars['Date']['output']>;
|
|
43029
|
+
};
|
|
42775
43030
|
export declare enum DevAiAutodevNextDayOfWeek {
|
|
42776
43031
|
Friday = "FRIDAY",
|
|
42777
43032
|
Monday = "MONDAY",
|
|
@@ -42790,6 +43045,12 @@ export type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
42790
43045
|
errors?: Maybe<Array<MutationError>>;
|
|
42791
43046
|
success: Scalars['Boolean']['output'];
|
|
42792
43047
|
};
|
|
43048
|
+
export type DevAiAutodevNextGlobalDashboard = {
|
|
43049
|
+
__typename?: 'DevAiAutodevNextGlobalDashboard';
|
|
43050
|
+
activeSpaceCount?: Maybe<Scalars['Int']['output']>;
|
|
43051
|
+
completedWorkItemCounts?: Maybe<Array<DevAiAutodevNextDailyCompletedWorkItemCount>>;
|
|
43052
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
43053
|
+
};
|
|
42793
43054
|
export type DevAiAutodevNextJiraProjectAvailabilityPayload = {
|
|
42794
43055
|
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
|
|
42795
43056
|
results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
|
|
@@ -46430,6 +46691,7 @@ export type EcosystemMutation = {
|
|
|
46430
46691
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
46431
46692
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
46432
46693
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
46694
|
+
forgeObservability?: Maybe<ForgeObservabilityMutation>;
|
|
46433
46695
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
46434
46696
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
46435
46697
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -50415,6 +50677,25 @@ export type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
50415
50677
|
type: ForgeMetricsDataType;
|
|
50416
50678
|
};
|
|
50417
50679
|
export type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
50680
|
+
export type ForgeObservabilityMutation = {
|
|
50681
|
+
__typename?: 'ForgeObservabilityMutation';
|
|
50682
|
+
publishFrontendCustomMetric?: Maybe<ForgeObservabilityPublishFrontendCustomMetricResponse>;
|
|
50683
|
+
};
|
|
50684
|
+
export type ForgeObservabilityMutationPublishFrontendCustomMetricArgs = {
|
|
50685
|
+
input: ForgeObservabilityPublishFrontendCustomMetricInput;
|
|
50686
|
+
};
|
|
50687
|
+
export type ForgeObservabilityPublishFrontendCustomMetricInput = {
|
|
50688
|
+
appId: Scalars['ID']['input'];
|
|
50689
|
+
contextAri: Scalars['ID']['input'];
|
|
50690
|
+
customMetricName: Scalars['String']['input'];
|
|
50691
|
+
installationId: Scalars['ID']['input'];
|
|
50692
|
+
moduleKey: Scalars['String']['input'];
|
|
50693
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
50694
|
+
};
|
|
50695
|
+
export type ForgeObservabilityPublishFrontendCustomMetricResponse = {
|
|
50696
|
+
__typename?: 'ForgeObservabilityPublishFrontendCustomMetricResponse';
|
|
50697
|
+
success: Scalars['Boolean']['output'];
|
|
50698
|
+
};
|
|
50418
50699
|
export declare enum FormStatus {
|
|
50419
50700
|
Approved = "APPROVED",
|
|
50420
50701
|
Rejected = "REJECTED",
|
|
@@ -51683,6 +51964,8 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
51683
51964
|
jiraEntityAri: Scalars['String']['input'];
|
|
51684
51965
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51685
51966
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
51967
|
+
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
51968
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
51686
51969
|
};
|
|
51687
51970
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
51688
51971
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -51718,6 +52001,17 @@ export type GraphInferenceGetRelatedReposV3Response = {
|
|
|
51718
52001
|
repos: Array<GraphInferenceRelatedRepoCandidate>;
|
|
51719
52002
|
root: GraphInferenceRelatedReposRoot;
|
|
51720
52003
|
};
|
|
52004
|
+
export type GraphInferenceGetSimilarJiraItemsInput = {
|
|
52005
|
+
jiraItemAri: Scalars['String']['input'];
|
|
52006
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
52007
|
+
};
|
|
52008
|
+
export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
52009
|
+
__typename?: 'GraphInferenceGetSimilarJiraItemsResponse';
|
|
52010
|
+
apiVersion: Scalars['String']['output'];
|
|
52011
|
+
items: Array<GraphInferenceSimilarJiraItemCandidate>;
|
|
52012
|
+
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52013
|
+
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52014
|
+
};
|
|
51721
52015
|
export type GraphInferenceJiraEntityContextCandidate = {
|
|
51722
52016
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
51723
52017
|
ari: Scalars['String']['output'];
|
|
@@ -51745,7 +52039,9 @@ export type GraphInferenceJiraEntityContextEvidence = {
|
|
|
51745
52039
|
};
|
|
51746
52040
|
export type GraphInferenceJiraEntityContextMeta = {
|
|
51747
52041
|
__typename?: 'GraphInferenceJiraEntityContextMeta';
|
|
52042
|
+
contextRetrievalId: Scalars['String']['output'];
|
|
51748
52043
|
degraded: Array<Scalars['String']['output']>;
|
|
52044
|
+
retrievalInvocationId: Scalars['String']['output'];
|
|
51749
52045
|
servedBy: Scalars['String']['output'];
|
|
51750
52046
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
51751
52047
|
warnings: Array<Scalars['String']['output']>;
|
|
@@ -51775,6 +52071,27 @@ export type GraphInferenceRelatedReposRoot = {
|
|
|
51775
52071
|
__typename?: 'GraphInferenceRelatedReposRoot';
|
|
51776
52072
|
ari: Scalars['String']['output'];
|
|
51777
52073
|
};
|
|
52074
|
+
export type GraphInferenceSimilarJiraItemCandidate = {
|
|
52075
|
+
__typename?: 'GraphInferenceSimilarJiraItemCandidate';
|
|
52076
|
+
ari: Scalars['String']['output'];
|
|
52077
|
+
distance: Scalars['Float']['output'];
|
|
52078
|
+
entity?: Maybe<JiraIssue>;
|
|
52079
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
52080
|
+
score: Scalars['Float']['output'];
|
|
52081
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
52082
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
52083
|
+
};
|
|
52084
|
+
export type GraphInferenceSimilarJiraItemsMeta = {
|
|
52085
|
+
__typename?: 'GraphInferenceSimilarJiraItemsMeta';
|
|
52086
|
+
degraded: Array<Scalars['String']['output']>;
|
|
52087
|
+
servedBy: Scalars['String']['output'];
|
|
52088
|
+
traceId?: Maybe<Scalars['String']['output']>;
|
|
52089
|
+
warnings: Array<Scalars['String']['output']>;
|
|
52090
|
+
};
|
|
52091
|
+
export type GraphInferenceSimilarJiraItemsRoot = {
|
|
52092
|
+
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
52093
|
+
ari: Scalars['String']['output'];
|
|
52094
|
+
};
|
|
51778
52095
|
export type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
51779
52096
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
51780
52097
|
readonly: Scalars['Boolean']['output'];
|
|
@@ -51924,6 +52241,7 @@ export type GraphIntegrationDirectoryItemEdge = {
|
|
|
51924
52241
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
51925
52242
|
Action = "ACTION",
|
|
51926
52243
|
CustomSkill = "CUSTOM_SKILL",
|
|
52244
|
+
ForgeTool = "FORGE_TOOL",
|
|
51927
52245
|
McpServer = "MCP_SERVER",
|
|
51928
52246
|
McpTool = "MCP_TOOL",
|
|
51929
52247
|
PlatformSkill = "PLATFORM_SKILL",
|
|
@@ -52237,6 +52555,7 @@ export type GraphIntegrationMcpServerRequestNode = {
|
|
|
52237
52555
|
sourceId: Scalars['ID']['output'];
|
|
52238
52556
|
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
52239
52557
|
status: GraphIntegrationMcpServerRequestStatus;
|
|
52558
|
+
templateId?: Maybe<Scalars['ID']['output']>;
|
|
52240
52559
|
};
|
|
52241
52560
|
export type GraphIntegrationMcpServerRequestRejectInput = {
|
|
52242
52561
|
aggregateRequestId: Scalars['ID']['input'];
|
|
@@ -55829,6 +56148,10 @@ export type GraphStore = {
|
|
|
55829
56148
|
mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
55830
56149
|
mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
55831
56150
|
mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
56151
|
+
mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56152
|
+
mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56153
|
+
mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
56154
|
+
mercuryOrganizationSponsorsFocusAreaInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
55832
56155
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
55833
56156
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
55834
56157
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -60970,6 +61293,36 @@ export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipInverse
|
|
|
60970
61293
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60971
61294
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
60972
61295
|
};
|
|
61296
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaArgs = {
|
|
61297
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61298
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61300
|
+
id: Scalars['ID']['input'];
|
|
61301
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61302
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61303
|
+
};
|
|
61304
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaBatchArgs = {
|
|
61305
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61306
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61307
|
+
ids: Array<Scalars['ID']['input']>;
|
|
61308
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61309
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61310
|
+
};
|
|
61311
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaInverseArgs = {
|
|
61312
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61313
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61315
|
+
id: Scalars['ID']['input'];
|
|
61316
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61317
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61318
|
+
};
|
|
61319
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaInverseBatchArgs = {
|
|
61320
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61321
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61322
|
+
ids: Array<Scalars['ID']['input']>;
|
|
61323
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61324
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
61325
|
+
};
|
|
60973
61326
|
export type GraphStoreOnPremProjectHasIssueArgs = {
|
|
60974
61327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60975
61328
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67227,6 +67580,47 @@ export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartNode = {
|
|
|
67227
67580
|
id: Scalars['ID']['output'];
|
|
67228
67581
|
};
|
|
67229
67582
|
export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartUnion = MercuryOrganization;
|
|
67583
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
67584
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection';
|
|
67585
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge>>;
|
|
67586
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode>>;
|
|
67587
|
+
pageInfo: PageInfo;
|
|
67588
|
+
};
|
|
67589
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge = {
|
|
67590
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge';
|
|
67591
|
+
node: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection;
|
|
67592
|
+
};
|
|
67593
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode = {
|
|
67594
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode';
|
|
67595
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndUnion>;
|
|
67596
|
+
id: Scalars['ID']['output'];
|
|
67597
|
+
};
|
|
67598
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndUnion = MercuryFocusArea;
|
|
67599
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection = {
|
|
67600
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerConnection';
|
|
67601
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge>>;
|
|
67602
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode>>;
|
|
67603
|
+
requestedId: Scalars['ID']['output'];
|
|
67604
|
+
};
|
|
67605
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge = {
|
|
67606
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaInnerEdge';
|
|
67607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67608
|
+
node: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode;
|
|
67609
|
+
};
|
|
67610
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode = Node & {
|
|
67611
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaNode';
|
|
67612
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67613
|
+
from: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode;
|
|
67614
|
+
id: Scalars['ID']['output'];
|
|
67615
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67616
|
+
to: GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEndNode;
|
|
67617
|
+
};
|
|
67618
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode = {
|
|
67619
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartNode';
|
|
67620
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartUnion>;
|
|
67621
|
+
id: Scalars['ID']['output'];
|
|
67622
|
+
};
|
|
67623
|
+
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaStartUnion = MercuryOrganization;
|
|
67230
67624
|
export type GraphStoreBatchProjectLinksToEntityConnection = HasPageInfo & {
|
|
67231
67625
|
__typename?: 'GraphStoreBatchProjectLinksToEntityConnection';
|
|
67232
67626
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityEdge>>;
|
|
@@ -73370,6 +73764,9 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
|
73370
73764
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput = {
|
|
73371
73765
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73372
73766
|
};
|
|
73767
|
+
export type GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput = {
|
|
73768
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
73769
|
+
};
|
|
73373
73770
|
export type GraphStoreMutation = {
|
|
73374
73771
|
__typename?: 'GraphStoreMutation';
|
|
73375
73772
|
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
@@ -80878,6 +81275,34 @@ export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembers
|
|
|
80878
81275
|
};
|
|
80879
81276
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
80880
81277
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
81278
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
81279
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection';
|
|
81280
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge>>>;
|
|
81281
|
+
pageInfo: PageInfo;
|
|
81282
|
+
};
|
|
81283
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge = {
|
|
81284
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge';
|
|
81285
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81286
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81287
|
+
id: Scalars['ID']['output'];
|
|
81288
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81289
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaUnion>;
|
|
81290
|
+
};
|
|
81291
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection = HasPageInfo & {
|
|
81292
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection';
|
|
81293
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge>>>;
|
|
81294
|
+
pageInfo: PageInfo;
|
|
81295
|
+
};
|
|
81296
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge = {
|
|
81297
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseEdge';
|
|
81298
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81299
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81300
|
+
id: Scalars['ID']['output'];
|
|
81301
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81302
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseUnion>;
|
|
81303
|
+
};
|
|
81304
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseUnion = MercuryOrganization;
|
|
81305
|
+
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaUnion = MercuryFocusArea;
|
|
80881
81306
|
export type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
80882
81307
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
80883
81308
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -89316,6 +89741,8 @@ export type GraphStoreV2 = {
|
|
|
89316
89741
|
focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
89317
89742
|
focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
89318
89743
|
focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
89744
|
+
focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
89745
|
+
focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
89319
89746
|
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
89320
89747
|
focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
89321
89748
|
focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
@@ -94196,6 +94623,20 @@ export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipInverseAr
|
|
|
94196
94623
|
id: Scalars['ID']['input'];
|
|
94197
94624
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
94198
94625
|
};
|
|
94626
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
94627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94628
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94630
|
+
id: Scalars['ID']['input'];
|
|
94631
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
94632
|
+
};
|
|
94633
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaInverseArgs = {
|
|
94634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
94635
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94636
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94637
|
+
id: Scalars['ID']['input'];
|
|
94638
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
94639
|
+
};
|
|
94199
94640
|
export type GraphStoreV2FocusRiskHasWorkEntityArgs = {
|
|
94200
94641
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94201
94642
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -97923,6 +98364,9 @@ export type GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput = {
|
|
|
97923
98364
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput = {
|
|
97924
98365
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97925
98366
|
};
|
|
98367
|
+
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput = {
|
|
98368
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
98369
|
+
};
|
|
97926
98370
|
export type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
|
|
97927
98371
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97928
98372
|
};
|
|
@@ -108910,6 +109354,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershi
|
|
|
108910
109354
|
};
|
|
108911
109355
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
108912
109356
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
109357
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection = HasPageInfo & {
|
|
109358
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection';
|
|
109359
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge>>>;
|
|
109360
|
+
pageInfo: PageInfo;
|
|
109361
|
+
};
|
|
109362
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge = {
|
|
109363
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge';
|
|
109364
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109365
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109366
|
+
id: Scalars['ID']['output'];
|
|
109367
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109368
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaUnion>;
|
|
109369
|
+
};
|
|
109370
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection = HasPageInfo & {
|
|
109371
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection';
|
|
109372
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge>>>;
|
|
109373
|
+
pageInfo: PageInfo;
|
|
109374
|
+
};
|
|
109375
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge = {
|
|
109376
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseEdge';
|
|
109377
|
+
createdAt: Scalars['DateTime']['output'];
|
|
109378
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
109379
|
+
id: Scalars['ID']['output'];
|
|
109380
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
109381
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseUnion>;
|
|
109382
|
+
};
|
|
109383
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseUnion = MercuryOrganization;
|
|
109384
|
+
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaUnion = MercuryFocusArea;
|
|
108913
109385
|
export type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
|
|
108914
109386
|
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
|
|
108915
109387
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
|
|
@@ -113750,6 +114222,7 @@ export type HelpCenterBranding = {
|
|
|
113750
114222
|
__typename?: 'HelpCenterBranding';
|
|
113751
114223
|
banner?: Maybe<HelpCenterBanner>;
|
|
113752
114224
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
114225
|
+
cornerRadius?: Maybe<Scalars['Int']['output']>;
|
|
113753
114226
|
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
113754
114227
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
113755
114228
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113778,6 +114251,7 @@ export type HelpCenterBrandingColorsInput = {
|
|
|
113778
114251
|
export type HelpCenterBrandingInput = {
|
|
113779
114252
|
banner?: InputMaybe<HelpCenterBannerInput>;
|
|
113780
114253
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
114254
|
+
cornerRadius?: InputMaybe<Scalars['Int']['input']>;
|
|
113781
114255
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
113782
114256
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
113783
114257
|
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
@@ -116964,6 +117438,7 @@ export declare enum JiraActivityFilter {
|
|
|
116964
117438
|
HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
|
|
116965
117439
|
History = "HISTORY",
|
|
116966
117440
|
HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
|
|
117441
|
+
IccActivity = "ICC_ACTIVITY",
|
|
116967
117442
|
IccSessionDetails = "ICC_SESSION_DETAILS",
|
|
116968
117443
|
IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
|
|
116969
117444
|
Incident = "INCIDENT",
|
|
@@ -117284,6 +117759,7 @@ export type JiraAgentContextFilter = {
|
|
|
117284
117759
|
};
|
|
117285
117760
|
export type JiraAgentContextItem = {
|
|
117286
117761
|
__typename?: 'JiraAgentContextItem';
|
|
117762
|
+
curation?: Maybe<JiraAgentContextItemCuration>;
|
|
117287
117763
|
id: Scalars['ID']['output'];
|
|
117288
117764
|
origin?: Maybe<Scalars['String']['output']>;
|
|
117289
117765
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -117295,6 +117771,12 @@ export type JiraAgentContextItemConnection = {
|
|
|
117295
117771
|
pageInfo: PageInfo;
|
|
117296
117772
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
117297
117773
|
};
|
|
117774
|
+
export type JiraAgentContextItemCuration = {
|
|
117775
|
+
__typename?: 'JiraAgentContextItemCuration';
|
|
117776
|
+
curatedAt?: Maybe<Scalars['String']['output']>;
|
|
117777
|
+
curatedBy?: Maybe<User>;
|
|
117778
|
+
curatorAri?: Maybe<Scalars['ID']['output']>;
|
|
117779
|
+
};
|
|
117298
117780
|
export type JiraAgentContextItemEdge = {
|
|
117299
117781
|
__typename?: 'JiraAgentContextItemEdge';
|
|
117300
117782
|
cursor: Scalars['String']['output'];
|
|
@@ -117354,6 +117836,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
117354
117836
|
IssueCommentMention = "ISSUE_COMMENT_MENTION",
|
|
117355
117837
|
IssueManualTrigger = "ISSUE_MANUAL_TRIGGER",
|
|
117356
117838
|
IssueWorkflowAssignment = "ISSUE_WORKFLOW_ASSIGNMENT",
|
|
117839
|
+
LocalAgentSession = "LOCAL_AGENT_SESSION",
|
|
117357
117840
|
Unknown = "UNKNOWN"
|
|
117358
117841
|
}
|
|
117359
117842
|
export declare enum JiraAgentSessionState {
|
|
@@ -117402,6 +117885,8 @@ export type JiraAgenticUser = JiraActor & {
|
|
|
117402
117885
|
fromUrs?: Maybe<Scalars['Boolean']['output']>;
|
|
117403
117886
|
isAssignable?: Maybe<Scalars['Boolean']['output']>;
|
|
117404
117887
|
isFavorite?: Maybe<Scalars['Boolean']['output']>;
|
|
117888
|
+
totalUniqueConversationsLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117889
|
+
totalUniqueUsersLast30Days?: Maybe<Scalars['Int']['output']>;
|
|
117405
117890
|
user?: Maybe<User>;
|
|
117406
117891
|
};
|
|
117407
117892
|
export type JiraAggregatedDate = JiraDatePickerField | JiraDateTimePickerField;
|
|
@@ -119730,15 +120215,11 @@ export type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
|
119730
120215
|
export type JiraBoardViewFieldSwimlaneTotalIssueCountArgs = {
|
|
119731
120216
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
119732
120217
|
};
|
|
119733
|
-
export type JiraBoardViewFieldSwimlaneAgent = {
|
|
119734
|
-
__typename?: 'JiraBoardViewFieldSwimlaneAgent';
|
|
119735
|
-
agent?: Maybe<User>;
|
|
119736
|
-
};
|
|
119737
120218
|
export type JiraBoardViewFieldSwimlaneUser = {
|
|
119738
120219
|
__typename?: 'JiraBoardViewFieldSwimlaneUser';
|
|
119739
120220
|
user?: Maybe<User>;
|
|
119740
120221
|
};
|
|
119741
|
-
export type JiraBoardViewFieldSwimlaneValue =
|
|
120222
|
+
export type JiraBoardViewFieldSwimlaneValue = JiraBoardViewFieldSwimlaneUser | JiraIssue | JiraOption | JiraPriority | JiraTownsquareProject;
|
|
119742
120223
|
export type JiraBoardViewInput = {
|
|
119743
120224
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
119744
120225
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -124896,6 +125377,12 @@ export type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
124896
125377
|
type: Scalars['String']['output'];
|
|
124897
125378
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
124898
125379
|
};
|
|
125380
|
+
export type JiraForgeStringFieldPayload = Payload & {
|
|
125381
|
+
__typename?: 'JiraForgeStringFieldPayload';
|
|
125382
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125383
|
+
field?: Maybe<JiraForgeStringField>;
|
|
125384
|
+
success: Scalars['Boolean']['output'];
|
|
125385
|
+
};
|
|
124899
125386
|
export type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
124900
125387
|
__typename?: 'JiraForgeStringsField';
|
|
124901
125388
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -125839,6 +126326,18 @@ export type JiraHydrateJqlInput = {
|
|
|
125839
126326
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
125840
126327
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
125841
126328
|
};
|
|
126329
|
+
export type JiraIccActivityValue = {
|
|
126330
|
+
__typename?: 'JiraIccActivityValue';
|
|
126331
|
+
artefactId?: Maybe<Scalars['String']['output']>;
|
|
126332
|
+
hypothesisName?: Maybe<Scalars['String']['output']>;
|
|
126333
|
+
planName?: Maybe<Scalars['String']['output']>;
|
|
126334
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
126335
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
126336
|
+
stepStatus?: Maybe<Scalars['String']['output']>;
|
|
126337
|
+
stepsCompletedSoFar?: Maybe<Scalars['String']['output']>;
|
|
126338
|
+
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
126339
|
+
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
126340
|
+
};
|
|
125842
126341
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
125843
126342
|
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
125844
126343
|
contentType?: Maybe<JiraNextActionContentType>;
|
|
@@ -125868,6 +126367,10 @@ export type JiraInCompleteCardsDestinationEdge = {
|
|
|
125868
126367
|
cursor: Scalars['String']['output'];
|
|
125869
126368
|
node?: Maybe<JiraInCompleteCardsDestination>;
|
|
125870
126369
|
};
|
|
126370
|
+
export type JiraInCompleteCardsDestinationInput = {
|
|
126371
|
+
destination: JiraCardsDestinationEnum;
|
|
126372
|
+
sprintId?: InputMaybe<Scalars['ID']['input']>;
|
|
126373
|
+
};
|
|
125871
126374
|
export type JiraIncidentActivityActor = {
|
|
125872
126375
|
__typename?: 'JiraIncidentActivityActor';
|
|
125873
126376
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -125893,6 +126396,16 @@ export type JiraIncidentActivityItem = {
|
|
|
125893
126396
|
export declare enum JiraIncidentActivityType {
|
|
125894
126397
|
AlertAssociated = "ALERT_ASSOCIATED",
|
|
125895
126398
|
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
126399
|
+
IncidentHypothesisAccepted = "INCIDENT_HYPOTHESIS_ACCEPTED",
|
|
126400
|
+
IncidentInvestigationCompleted = "INCIDENT_INVESTIGATION_COMPLETED",
|
|
126401
|
+
IncidentInvestigationStarted = "INCIDENT_INVESTIGATION_STARTED",
|
|
126402
|
+
IncidentMitigationPlansCreationCompleted = "INCIDENT_MITIGATION_PLANS_CREATION_COMPLETED",
|
|
126403
|
+
IncidentMitigationPlansCreationStarted = "INCIDENT_MITIGATION_PLANS_CREATION_STARTED",
|
|
126404
|
+
IncidentMitigationPlanAssigned = "INCIDENT_MITIGATION_PLAN_ASSIGNED",
|
|
126405
|
+
IncidentMitigationPlanCompleted = "INCIDENT_MITIGATION_PLAN_COMPLETED",
|
|
126406
|
+
IncidentMitigationPlanStepCompleted = "INCIDENT_MITIGATION_PLAN_STEP_COMPLETED",
|
|
126407
|
+
IncidentOverviewNbaGenerated = "INCIDENT_OVERVIEW_NBA_GENERATED",
|
|
126408
|
+
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
125896
126409
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
125897
126410
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
125898
126411
|
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
@@ -125903,7 +126416,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
125903
126416
|
StakeholdersUpdated = "STAKEHOLDERS_UPDATED",
|
|
125904
126417
|
Unknown = "UNKNOWN"
|
|
125905
126418
|
}
|
|
125906
|
-
export type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
126419
|
+
export type JiraIncidentActivityValueUnion = JiraAlertValue | JiraIccActivityValue | JiraIncidentStakeholderActionValue | JiraResponderAlertAssignedValue | JiraResponderAlertPriorityChangedValue | JiraStakeholderUpdatedValue;
|
|
125907
126420
|
export type JiraIncidentItem = {
|
|
125908
126421
|
__typename?: 'JiraIncidentItem';
|
|
125909
126422
|
incidentItem?: Maybe<JiraIncidentActivityItem>;
|
|
@@ -128480,6 +128993,26 @@ export type JiraIssueSection = {
|
|
|
128480
128993
|
msg?: Maybe<Scalars['String']['output']>;
|
|
128481
128994
|
sub?: Maybe<Scalars['String']['output']>;
|
|
128482
128995
|
};
|
|
128996
|
+
export type JiraIssueSecurityLevelUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
128997
|
+
__typename?: 'JiraIssueSecurityLevelUsageMetric';
|
|
128998
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
128999
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
129000
|
+
id: Scalars['ID']['output'];
|
|
129001
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
129002
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
129003
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
129004
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
129005
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
129006
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
129007
|
+
};
|
|
129008
|
+
export type JiraIssueSecurityLevelUsageMetricValuesArgs = {
|
|
129009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129010
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129011
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129012
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
129013
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129014
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
129015
|
+
};
|
|
128483
129016
|
export type JiraIssueStreamHubEventPayloadComment = {
|
|
128484
129017
|
__typename?: 'JiraIssueStreamHubEventPayloadComment';
|
|
128485
129018
|
id: Scalars['Int']['output'];
|
|
@@ -130978,6 +131511,7 @@ export type JiraMutation = {
|
|
|
130978
131511
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
130979
131512
|
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
130980
131513
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
131514
|
+
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
130981
131515
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
130982
131516
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
130983
131517
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
@@ -131602,6 +132136,9 @@ export type JiraMutationUpdateFlagFieldArgs = {
|
|
|
131602
132136
|
export type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
131603
132137
|
input: JiraUpdateForgeObjectFieldInput;
|
|
131604
132138
|
};
|
|
132139
|
+
export type JiraMutationUpdateForgeStringFieldArgs = {
|
|
132140
|
+
input: JiraUpdateSingleLineTextFieldInput;
|
|
132141
|
+
};
|
|
131605
132142
|
export type JiraMutationUpdateFormattingRuleArgs = {
|
|
131606
132143
|
input: JiraUpdateFormattingRuleInput;
|
|
131607
132144
|
};
|
|
@@ -133198,6 +133735,7 @@ export type JiraPlaybookInstanceEdge = {
|
|
|
133198
133735
|
};
|
|
133199
133736
|
export type JiraPlaybookInstanceStep = Node & {
|
|
133200
133737
|
__typename?: 'JiraPlaybookInstanceStep';
|
|
133738
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
133201
133739
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
133202
133740
|
id: Scalars['ID']['output'];
|
|
133203
133741
|
lastRun?: Maybe<JiraPlaybookStepRun>;
|
|
@@ -137856,11 +138394,33 @@ export type JiraRoleEdge = {
|
|
|
137856
138394
|
export type JiraRoleInput = {
|
|
137857
138395
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
137858
138396
|
};
|
|
138397
|
+
export type JiraRovoAiEnabledGloballyStatus = {
|
|
138398
|
+
__typename?: 'JiraRovoAiEnabledGloballyStatus';
|
|
138399
|
+
disabledReason?: Maybe<JiraRovoWithAiDisabledReason>;
|
|
138400
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
138401
|
+
};
|
|
138402
|
+
export declare enum JiraRovoAiProduct {
|
|
138403
|
+
Jira = "JIRA",
|
|
138404
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
138405
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
138406
|
+
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT"
|
|
138407
|
+
}
|
|
137859
138408
|
export type JiraRovoConversationMetadata = {
|
|
137860
138409
|
__typename?: 'JiraRovoConversationMetadata';
|
|
137861
138410
|
actionMessageId?: Maybe<Scalars['String']['output']>;
|
|
137862
138411
|
channelConversationId: Scalars['ID']['output'];
|
|
137863
138412
|
};
|
|
138413
|
+
export type JiraRovoEnablementStatus = {
|
|
138414
|
+
__typename?: 'JiraRovoEnablementStatus';
|
|
138415
|
+
isRovoEntitlementEnabledForTenant?: Maybe<Scalars['Boolean']['output']>;
|
|
138416
|
+
isRovoWithAiEnabledInAnyJiraFamilyProducts?: Maybe<JiraRovoAiEnabledGloballyStatus>;
|
|
138417
|
+
rovoWithAiEnabledProducts?: Maybe<Array<JiraRovoAiProduct>>;
|
|
138418
|
+
};
|
|
138419
|
+
export declare enum JiraRovoWithAiDisabledReason {
|
|
138420
|
+
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
138421
|
+
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
138422
|
+
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
138423
|
+
}
|
|
137864
138424
|
export type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
137865
138425
|
__typename?: 'JiraSDLCSuggestions';
|
|
137866
138426
|
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
@@ -141052,8 +141612,10 @@ export type JiraSprintStreamHubPayload = {
|
|
|
141052
141612
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
141053
141613
|
};
|
|
141054
141614
|
export type JiraSprintUpdateInput = {
|
|
141615
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
141055
141616
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
141056
141617
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
141618
|
+
incompleteCardsDestination?: InputMaybe<JiraInCompleteCardsDestinationInput>;
|
|
141057
141619
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
141058
141620
|
sprintId: Scalars['ID']['input'];
|
|
141059
141621
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146316,6 +146878,15 @@ export type JsmConversationActiveSla = {
|
|
|
146316
146878
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
146317
146879
|
slaType?: Maybe<JsmConversationSlaType>;
|
|
146318
146880
|
};
|
|
146881
|
+
export declare enum JsmConversationAvailabilityOutcome {
|
|
146882
|
+
Available = "AVAILABLE",
|
|
146883
|
+
NotAvailable = "NOT_AVAILABLE"
|
|
146884
|
+
}
|
|
146885
|
+
export type JsmConversationAvailabilityResult = {
|
|
146886
|
+
__typename?: 'JsmConversationAvailabilityResult';
|
|
146887
|
+
criteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
146888
|
+
outcome?: Maybe<JsmConversationAvailabilityOutcome>;
|
|
146889
|
+
};
|
|
146319
146890
|
export type JsmConversationClaimConversationInput = {
|
|
146320
146891
|
cloudId: Scalars['ID']['input'];
|
|
146321
146892
|
conversationId: Scalars['ID']['input'];
|
|
@@ -146368,9 +146939,38 @@ export type JsmConversationEdge = {
|
|
|
146368
146939
|
export type JsmConversationHelpseekerSettings = {
|
|
146369
146940
|
__typename?: 'JsmConversationHelpseekerSettings';
|
|
146370
146941
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
146371
|
-
|
|
146942
|
+
availability?: Maybe<JsmConversationAvailabilityResult>;
|
|
146372
146943
|
};
|
|
146373
146944
|
export type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
|
|
146945
|
+
export type JsmConversationInvite = {
|
|
146946
|
+
__typename?: 'JsmConversationInvite';
|
|
146947
|
+
conversationAri?: Maybe<Scalars['ID']['output']>;
|
|
146948
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146949
|
+
id: Scalars['ID']['output'];
|
|
146950
|
+
initiator?: Maybe<Scalars['ID']['output']>;
|
|
146951
|
+
recipient?: Maybe<Scalars['ID']['output']>;
|
|
146952
|
+
status?: Maybe<JsmConversationInviteStatus>;
|
|
146953
|
+
type?: Maybe<JsmConversationInviteType>;
|
|
146954
|
+
};
|
|
146955
|
+
export type JsmConversationInviteConnection = {
|
|
146956
|
+
__typename?: 'JsmConversationInviteConnection';
|
|
146957
|
+
edges?: Maybe<Array<JsmConversationInviteEdge>>;
|
|
146958
|
+
errors?: Maybe<Array<QueryError>>;
|
|
146959
|
+
nodes?: Maybe<Array<Maybe<JsmConversationInvite>>>;
|
|
146960
|
+
pageInfo: PageInfo;
|
|
146961
|
+
};
|
|
146962
|
+
export type JsmConversationInviteEdge = {
|
|
146963
|
+
__typename?: 'JsmConversationInviteEdge';
|
|
146964
|
+
cursor: Scalars['String']['output'];
|
|
146965
|
+
node?: Maybe<JsmConversationInvite>;
|
|
146966
|
+
};
|
|
146967
|
+
export declare enum JsmConversationInviteStatus {
|
|
146968
|
+
Accepted = "ACCEPTED",
|
|
146969
|
+
Cancelled = "CANCELLED",
|
|
146970
|
+
Expired = "EXPIRED",
|
|
146971
|
+
Pending = "PENDING",
|
|
146972
|
+
Rejected = "REJECTED"
|
|
146973
|
+
}
|
|
146374
146974
|
export declare enum JsmConversationInviteType {
|
|
146375
146975
|
Collaborate = "COLLABORATE",
|
|
146376
146976
|
Transfer = "TRANSFER"
|
|
@@ -146396,6 +146996,7 @@ export type JsmConversationMessage = {
|
|
|
146396
146996
|
sentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
146397
146997
|
sequenceId?: Maybe<Scalars['String']['output']>;
|
|
146398
146998
|
source?: Maybe<JsmConversationMessageSource>;
|
|
146999
|
+
visibility?: Maybe<JsmConversationMessageVisibility>;
|
|
146399
147000
|
};
|
|
146400
147001
|
export type JsmConversationMessageConnection = {
|
|
146401
147002
|
__typename?: 'JsmConversationMessageConnection';
|
|
@@ -146415,6 +147016,10 @@ export declare enum JsmConversationMessageSource {
|
|
|
146415
147016
|
RovoAssistant = "ROVO_ASSISTANT",
|
|
146416
147017
|
System = "SYSTEM"
|
|
146417
147018
|
}
|
|
147019
|
+
export declare enum JsmConversationMessageVisibility {
|
|
147020
|
+
Internal = "INTERNAL",
|
|
147021
|
+
Public = "PUBLIC"
|
|
147022
|
+
}
|
|
146418
147023
|
export type JsmConversationSettings = {
|
|
146419
147024
|
__typename?: 'JsmConversationSettings';
|
|
146420
147025
|
activationState?: Maybe<JsmConversationActivationState>;
|
|
@@ -147784,6 +148389,14 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
147784
148389
|
pageInfo: PageInfo;
|
|
147785
148390
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147786
148391
|
};
|
|
148392
|
+
export type KnowledgeBaseHealthDashboard = {
|
|
148393
|
+
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
148394
|
+
articleCount: Scalars['Int']['output'];
|
|
148395
|
+
articleCountByMonth: Array<KnowledgeBaseMonthlyArticleCount>;
|
|
148396
|
+
articleViewCount: Scalars['Int']['output'];
|
|
148397
|
+
projectIdentifier: Scalars['String']['output'];
|
|
148398
|
+
};
|
|
148399
|
+
export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
|
|
147787
148400
|
export type KnowledgeBaseInaccessibleLinkedSource = {
|
|
147788
148401
|
__typename?: 'KnowledgeBaseInaccessibleLinkedSource';
|
|
147789
148402
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -147832,6 +148445,11 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
147832
148445
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
147833
148446
|
};
|
|
147834
148447
|
export type KnowledgeBaseLinkedSourcesResponse = KnowledgeBaseLinkedSources | QueryError;
|
|
148448
|
+
export type KnowledgeBaseMonthlyArticleCount = {
|
|
148449
|
+
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
148450
|
+
count: Scalars['Int']['output'];
|
|
148451
|
+
yearMonth: Scalars['String']['output'];
|
|
148452
|
+
};
|
|
147835
148453
|
export type KnowledgeBaseMutationApi = {
|
|
147836
148454
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
147837
148455
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -147864,6 +148482,17 @@ export type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
147864
148482
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
147865
148483
|
};
|
|
147866
148484
|
export type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
148485
|
+
export type KnowledgeBaseSearchConversionByMonth = {
|
|
148486
|
+
__typename?: 'KnowledgeBaseSearchConversionByMonth';
|
|
148487
|
+
conversionRate: Scalars['Float']['output'];
|
|
148488
|
+
yearMonth: Scalars['String']['output'];
|
|
148489
|
+
};
|
|
148490
|
+
export type KnowledgeBaseSearchConversionMetrics = {
|
|
148491
|
+
__typename?: 'KnowledgeBaseSearchConversionMetrics';
|
|
148492
|
+
projectIdentifier: Scalars['String']['output'];
|
|
148493
|
+
searchConversionByMonth: Array<KnowledgeBaseSearchConversionByMonth>;
|
|
148494
|
+
};
|
|
148495
|
+
export type KnowledgeBaseSearchConversionMetricsResponse = KnowledgeBaseSearchConversionMetrics | QueryError;
|
|
147867
148496
|
export type KnowledgeBaseSearchFiltersInput = {
|
|
147868
148497
|
knowledgeBaseAppSources?: InputMaybe<Array<KnowledgeBaseAppSource>>;
|
|
147869
148498
|
sourceContainers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -154349,14 +154978,14 @@ export type MediaItem = {
|
|
|
154349
154978
|
};
|
|
154350
154979
|
export type MediaItemDescriptorInput = {
|
|
154351
154980
|
collection?: InputMaybe<Scalars['String']['input']>;
|
|
154352
|
-
fileId
|
|
154981
|
+
fileId?: InputMaybe<Scalars['ID']['input']>;
|
|
154353
154982
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
154354
154983
|
};
|
|
154355
154984
|
export type MediaItemsInput = {
|
|
154356
|
-
clientId
|
|
154357
|
-
descriptors
|
|
154985
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
154986
|
+
descriptors?: InputMaybe<Array<InputMaybe<MediaItemDescriptorInput>>>;
|
|
154358
154987
|
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
154359
|
-
token
|
|
154988
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
154360
154989
|
};
|
|
154361
154990
|
export type MediaPickerUserToken = {
|
|
154362
154991
|
__typename?: 'MediaPickerUserToken';
|
|
@@ -154392,7 +155021,7 @@ export type MenusLookAndFeel = {
|
|
|
154392
155021
|
color?: Maybe<Scalars['String']['output']>;
|
|
154393
155022
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
154394
155023
|
};
|
|
154395
|
-
export type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
155024
|
+
export type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryOrganization | TownsquareGoal | TownsquareProject;
|
|
154396
155025
|
export type MercuryActivityHistoryMetadata = {
|
|
154397
155026
|
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
154398
155027
|
};
|
|
@@ -156054,6 +156683,14 @@ export type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
|
156054
156683
|
errors?: Maybe<Array<MutationError>>;
|
|
156055
156684
|
success: Scalars['Boolean']['output'];
|
|
156056
156685
|
};
|
|
156686
|
+
export type MercuryDeleteDraftPlanInput = {
|
|
156687
|
+
planId: Scalars['ID']['input'];
|
|
156688
|
+
};
|
|
156689
|
+
export type MercuryDeleteDraftPlanPayload = Payload & {
|
|
156690
|
+
__typename?: 'MercuryDeleteDraftPlanPayload';
|
|
156691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156692
|
+
success: Scalars['Boolean']['output'];
|
|
156693
|
+
};
|
|
156057
156694
|
export type MercuryDeleteFocusAreaBudgetInput = {
|
|
156058
156695
|
id: Scalars['ID']['input'];
|
|
156059
156696
|
};
|
|
@@ -156709,6 +157346,7 @@ export type MercuryFocusAreaCostSummary = {
|
|
|
156709
157346
|
};
|
|
156710
157347
|
export type MercuryFocusAreaCustomFieldActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
156711
157348
|
__typename?: 'MercuryFocusAreaCustomFieldActivityHistoryMetadata';
|
|
157349
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
156712
157350
|
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
156713
157351
|
searchKey: Scalars['String']['output'];
|
|
156714
157352
|
};
|
|
@@ -158751,11 +159389,13 @@ export type MercuryOrganizationMembershipEdge = {
|
|
|
158751
159389
|
};
|
|
158752
159390
|
export declare enum MercuryOrganizationPermission {
|
|
158753
159391
|
Archive = "ARCHIVE",
|
|
159392
|
+
CreateFocusAreaSponsor = "CREATE_FOCUS_AREA_SPONSOR",
|
|
158754
159393
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
158755
159394
|
CreateLink = "CREATE_LINK",
|
|
158756
159395
|
CreateUpdate = "CREATE_UPDATE",
|
|
158757
159396
|
CreateWorkLink = "CREATE_WORK_LINK",
|
|
158758
159397
|
Delete = "DELETE",
|
|
159398
|
+
DeleteFocusAreaSponsor = "DELETE_FOCUS_AREA_SPONSOR",
|
|
158759
159399
|
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
158760
159400
|
DeleteLink = "DELETE_LINK",
|
|
158761
159401
|
DeleteUpdate = "DELETE_UPDATE",
|
|
@@ -159544,16 +160184,24 @@ export declare enum MercuryPlanType {
|
|
|
159544
160184
|
export type MercuryPlansMutationApi = {
|
|
159545
160185
|
__typename?: 'MercuryPlansMutationApi';
|
|
159546
160186
|
createDraftPlan?: Maybe<MercuryCreateDraftPlanPayload>;
|
|
160187
|
+
deleteDraftPlan?: Maybe<MercuryDeleteDraftPlanPayload>;
|
|
159547
160188
|
linkFocusAreasToPlan?: Maybe<MercuryLinkFocusAreasToPlanPayload>;
|
|
160189
|
+
setPlanBaseline?: Maybe<MercurySetPlanBaselinePayload>;
|
|
159548
160190
|
setPlanMemberCountAllocations?: Maybe<MercurySetMemberCountAllocationsPayload>;
|
|
159549
160191
|
unlinkFocusAreasFromPlan?: Maybe<MercuryUnlinkFocusAreasFromPlanPayload>;
|
|
159550
160192
|
};
|
|
159551
160193
|
export type MercuryPlansMutationApiCreateDraftPlanArgs = {
|
|
159552
160194
|
input: MercuryCreateDraftPlanInput;
|
|
159553
160195
|
};
|
|
160196
|
+
export type MercuryPlansMutationApiDeleteDraftPlanArgs = {
|
|
160197
|
+
input: MercuryDeleteDraftPlanInput;
|
|
160198
|
+
};
|
|
159554
160199
|
export type MercuryPlansMutationApiLinkFocusAreasToPlanArgs = {
|
|
159555
160200
|
input: MercuryLinkFocusAreasToPlanInput;
|
|
159556
160201
|
};
|
|
160202
|
+
export type MercuryPlansMutationApiSetPlanBaselineArgs = {
|
|
160203
|
+
input: MercurySetPlanBaselineInput;
|
|
160204
|
+
};
|
|
159557
160205
|
export type MercuryPlansMutationApiSetPlanMemberCountAllocationsArgs = {
|
|
159558
160206
|
input: MercurySetMemberCountAllocationsInput;
|
|
159559
160207
|
};
|
|
@@ -160916,6 +161564,14 @@ export type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
|
160916
161564
|
errors?: Maybe<Array<MutationError>>;
|
|
160917
161565
|
success: Scalars['Boolean']['output'];
|
|
160918
161566
|
};
|
|
161567
|
+
export type MercurySetPlanBaselineInput = {
|
|
161568
|
+
planId: Scalars['ID']['input'];
|
|
161569
|
+
};
|
|
161570
|
+
export type MercurySetPlanBaselinePayload = Payload & {
|
|
161571
|
+
__typename?: 'MercurySetPlanBaselinePayload';
|
|
161572
|
+
errors?: Maybe<Array<MutationError>>;
|
|
161573
|
+
success: Scalars['Boolean']['output'];
|
|
161574
|
+
};
|
|
160919
161575
|
export type MercurySetPreferenceInput = {
|
|
160920
161576
|
cloudId: Scalars['ID']['input'];
|
|
160921
161577
|
key: Scalars['String']['input'];
|
|
@@ -163139,6 +163795,8 @@ export type Mutation = {
|
|
|
163139
163795
|
avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
|
|
163140
163796
|
avpanalytics_discardMetricUpdates?: Maybe<AvpAnalyticsDiscardMetricUpdatesPayload>;
|
|
163141
163797
|
avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
|
|
163798
|
+
avpanalytics_purgeMetric?: Maybe<AvpAnalyticsDeleteMetricPayload>;
|
|
163799
|
+
avpanalytics_purgeModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
|
|
163142
163800
|
avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
|
|
163143
163801
|
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
163144
163802
|
avpanalytics_updatePermission?: Maybe<AvpAnalyticsUpdatePermissionPayload>;
|
|
@@ -163440,6 +164098,8 @@ export type Mutation = {
|
|
|
163440
164098
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
163441
164099
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
163442
164100
|
csmAi_updateAgentIdentity?: Maybe<CsmAiUpdateAgentIdentityPayload>;
|
|
164101
|
+
csmAi_updateAgentToolConfiguration?: Maybe<CsmAiUpdateAgentToolConfigurationPayload>;
|
|
164102
|
+
csmAi_updateAgentTools?: Maybe<CsmAiUpdateAgentToolsPayload>;
|
|
163443
164103
|
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
163444
164104
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
163445
164105
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
@@ -164114,6 +164774,8 @@ export type Mutation = {
|
|
|
164114
164774
|
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
164115
164775
|
projects_addView?: Maybe<TownsquareProjectsAddViewPayload>;
|
|
164116
164776
|
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
164777
|
+
projects_connectMsteamsChannels?: Maybe<TownsquareProjectsConnectMsteamsChannelsPayload>;
|
|
164778
|
+
projects_connectSlackChannels?: Maybe<TownsquareProjectsConnectSlackChannelsPayload>;
|
|
164117
164779
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
164118
164780
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
164119
164781
|
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
@@ -165519,6 +166181,14 @@ export type MutationAvpanalytics_DiscardModelUpdatesArgs = {
|
|
|
165519
166181
|
cloudId: Scalars['ID']['input'];
|
|
165520
166182
|
input?: InputMaybe<AvpAnalyticsDiscardModelUpdatesInput>;
|
|
165521
166183
|
};
|
|
166184
|
+
export type MutationAvpanalytics_PurgeMetricArgs = {
|
|
166185
|
+
cloudId: Scalars['ID']['input'];
|
|
166186
|
+
input: AvpAnalyticsPurgeMetricInput;
|
|
166187
|
+
};
|
|
166188
|
+
export type MutationAvpanalytics_PurgeModelArgs = {
|
|
166189
|
+
cloudId: Scalars['ID']['input'];
|
|
166190
|
+
input?: InputMaybe<AvpAnalyticsPurgeModelInput>;
|
|
166191
|
+
};
|
|
165522
166192
|
export type MutationAvpanalytics_UpdateMetricArgs = {
|
|
165523
166193
|
cloudId: Scalars['ID']['input'];
|
|
165524
166194
|
input: AvpAnalyticsUpdateMetricInput;
|
|
@@ -166620,6 +167290,17 @@ export type MutationCsmAi_UpdateAgentIdentityArgs = {
|
|
|
166620
167290
|
helpCenterAri: Scalars['ID']['input'];
|
|
166621
167291
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
166622
167292
|
};
|
|
167293
|
+
export type MutationCsmAi_UpdateAgentToolConfigurationArgs = {
|
|
167294
|
+
csmAgentId: Scalars['ID']['input'];
|
|
167295
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167296
|
+
input: CsmAiAgentToolConfigurationInput;
|
|
167297
|
+
toolId: Scalars['ID']['input'];
|
|
167298
|
+
};
|
|
167299
|
+
export type MutationCsmAi_UpdateAgentToolsArgs = {
|
|
167300
|
+
csmAgentId: Scalars['ID']['input'];
|
|
167301
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167302
|
+
input: CsmAiUpdateAgentToolsInput;
|
|
167303
|
+
};
|
|
166623
167304
|
export type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
166624
167305
|
csmAiAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
166625
167306
|
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
@@ -168678,6 +169359,7 @@ export type MutationLiveChat_SendUserMessageArgs = {
|
|
|
168678
169359
|
liveChatSendUserMessageInput: LiveChatSendUserMessageInput;
|
|
168679
169360
|
};
|
|
168680
169361
|
export type MutationLoom_AcceptOrganizationInviteArgs = {
|
|
169362
|
+
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
168681
169363
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
168682
169364
|
inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
168683
169365
|
orgToken?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168686,6 +169368,7 @@ export type MutationLoom_DeleteVideosArgs = {
|
|
|
168686
169368
|
ids: Array<Scalars['ID']['input']>;
|
|
168687
169369
|
};
|
|
168688
169370
|
export type MutationLoom_JoinWorkspaceArgs = {
|
|
169371
|
+
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
168689
169372
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
168690
169373
|
workspaceId: Scalars['String']['input'];
|
|
168691
169374
|
};
|
|
@@ -168810,6 +169493,12 @@ export type MutationProjects_AddViewArgs = {
|
|
|
168810
169493
|
export type MutationProjects_CloneArgs = {
|
|
168811
169494
|
input: TownsquareProjectsCloneInput;
|
|
168812
169495
|
};
|
|
169496
|
+
export type MutationProjects_ConnectMsteamsChannelsArgs = {
|
|
169497
|
+
input: TownsquareProjectsConnectMsteamsChannelsInput;
|
|
169498
|
+
};
|
|
169499
|
+
export type MutationProjects_ConnectSlackChannelsArgs = {
|
|
169500
|
+
input: TownsquareProjectsConnectSlackChannelsInput;
|
|
169501
|
+
};
|
|
168813
169502
|
export type MutationProjects_CreateArgs = {
|
|
168814
169503
|
input: TownsquareProjectsCreateInput;
|
|
168815
169504
|
};
|
|
@@ -173177,6 +173866,7 @@ export type Query = {
|
|
|
173177
173866
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
173178
173867
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
173179
173868
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173869
|
+
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173180
173870
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
173181
173871
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
173182
173872
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
@@ -173250,6 +173940,7 @@ export type Query = {
|
|
|
173250
173940
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
173251
173941
|
apps?: Maybe<AppConnection>;
|
|
173252
173942
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
173943
|
+
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
173253
173944
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
173254
173945
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
173255
173946
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
@@ -173260,7 +173951,7 @@ export type Query = {
|
|
|
173260
173951
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
173261
173952
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
173262
173953
|
assetsDM_dataDictionaryGroups?: Maybe<AssetsDmDataDictionaryGroupsResponse>;
|
|
173263
|
-
assetsDM_dataSource?: Maybe<
|
|
173954
|
+
assetsDM_dataSource?: Maybe<AssetsDmDataSourceDetail>;
|
|
173264
173955
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
173265
173956
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
173266
173957
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
@@ -173317,6 +174008,7 @@ export type Query = {
|
|
|
173317
174008
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
173318
174009
|
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
173319
174010
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
174011
|
+
assetsVertical_depreciationRuleByAssetTypesTracking?: Maybe<AssetsVerticalDepreciationRuleByAssetTypesTrackingResult>;
|
|
173320
174012
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
173321
174013
|
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
173322
174014
|
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
@@ -173420,6 +174112,7 @@ export type Query = {
|
|
|
173420
174112
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
173421
174113
|
ccp?: Maybe<CcpQueryApi>;
|
|
173422
174114
|
ccp_catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
|
|
174115
|
+
ccp_concessions?: Maybe<Array<Maybe<CcpConcession>>>;
|
|
173423
174116
|
ccp_entitlement?: Maybe<CcpEntitlement>;
|
|
173424
174117
|
ccp_entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
173425
174118
|
ccp_entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
@@ -173690,6 +174383,7 @@ export type Query = {
|
|
|
173690
174383
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
173691
174384
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
173692
174385
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
174386
|
+
convoai_searchAgent?: Maybe<ConvoAiSearchAgentPayload>;
|
|
173693
174387
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
173694
174388
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
173695
174389
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -173781,6 +174475,7 @@ export type Query = {
|
|
|
173781
174475
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
173782
174476
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
173783
174477
|
devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
|
|
174478
|
+
devai_autodevNextGlobalDashboard?: Maybe<DevAiAutodevNextGlobalDashboard>;
|
|
173784
174479
|
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
173785
174480
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
173786
174481
|
devai_autodevNextUsageCurrentCounts?: Maybe<DevAiAutodevNextCurrentUsageCounts>;
|
|
@@ -173906,6 +174601,7 @@ export type Query = {
|
|
|
173906
174601
|
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
173907
174602
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
173908
174603
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
174604
|
+
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
173909
174605
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
173910
174606
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
173911
174607
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -174595,6 +175291,8 @@ export type Query = {
|
|
|
174595
175291
|
graphStoreV2_focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
174596
175292
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
174597
175293
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
175294
|
+
graphStoreV2_focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
175295
|
+
graphStoreV2_focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
174598
175296
|
graphStoreV2_focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
174599
175297
|
graphStoreV2_focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
174600
175298
|
graphStoreV2_focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
@@ -175380,6 +176078,10 @@ export type Query = {
|
|
|
175380
176078
|
graphStore_mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
175381
176079
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
175382
176080
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
176081
|
+
graphStore_mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
176082
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
176083
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
176084
|
+
graphStore_mercuryOrganizationSponsorsFocusAreaInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
175383
176085
|
graphStore_onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
175384
176086
|
graphStore_onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
175385
176087
|
graphStore_operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -176085,6 +176787,7 @@ export type Query = {
|
|
|
176085
176787
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
176086
176788
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
176087
176789
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
176790
|
+
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
176088
176791
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
176089
176792
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
176090
176793
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
@@ -176116,6 +176819,7 @@ export type Query = {
|
|
|
176116
176819
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
176117
176820
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
176118
176821
|
jsmConversation_helpseekerSetting?: Maybe<JsmConversationHelpseekerSettingsResult>;
|
|
176822
|
+
jsmConversation_invitesForAgent?: Maybe<JsmConversationInviteConnection>;
|
|
176119
176823
|
jsmConversation_mediaConfiguration?: Maybe<JsmConversationMediaConfigurationResult>;
|
|
176120
176824
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
176121
176825
|
jsmConversation_myActiveConversations?: Maybe<JsmConversationConnection>;
|
|
@@ -176157,8 +176861,10 @@ export type Query = {
|
|
|
176157
176861
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
176158
176862
|
knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
|
|
176159
176863
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
176864
|
+
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
176160
176865
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
176161
176866
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
176867
|
+
knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
|
|
176162
176868
|
knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
|
|
176163
176869
|
knowledgeBase_userCapabilities?: Maybe<KnowledgeBaseUserCapabilitiesResponse>;
|
|
176164
176870
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
@@ -177394,6 +178100,13 @@ export type QueryAgentWorkspace_ServicesArgs = {
|
|
|
177394
178100
|
projectId: Scalars['ID']['input'];
|
|
177395
178101
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
177396
178102
|
};
|
|
178103
|
+
export type QueryAgentWorkspace_ServicesConfiguredInProjectArgs = {
|
|
178104
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
178105
|
+
cloudId: Scalars['ID']['input'];
|
|
178106
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178107
|
+
projectId: Scalars['ID']['input'];
|
|
178108
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
178109
|
+
};
|
|
177397
178110
|
export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
177398
178111
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
177399
178112
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -177758,6 +178471,10 @@ export type QueryAppsArgs = {
|
|
|
177758
178471
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
177759
178472
|
cloudId: Scalars['ID']['input'];
|
|
177760
178473
|
};
|
|
178474
|
+
export type QueryAssetsDm_AdapterClientVersionStatusArgs = {
|
|
178475
|
+
cloudId: Scalars['ID']['input'];
|
|
178476
|
+
workspaceId: Scalars['ID']['input'];
|
|
178477
|
+
};
|
|
177761
178478
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
177762
178479
|
cloudId: Scalars['ID']['input'];
|
|
177763
178480
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -178166,6 +178883,10 @@ export type QueryAssetsVertical_DepreciationRuleArgs = {
|
|
|
178166
178883
|
cloudId: Scalars['ID']['input'];
|
|
178167
178884
|
id: Scalars['ID']['input'];
|
|
178168
178885
|
};
|
|
178886
|
+
export type QueryAssetsVertical_DepreciationRuleByAssetTypesTrackingArgs = {
|
|
178887
|
+
assetTypesTrackingId: Scalars['ID']['input'];
|
|
178888
|
+
cloudId: Scalars['ID']['input'];
|
|
178889
|
+
};
|
|
178169
178890
|
export type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
178170
178891
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178171
178892
|
cloudId: Scalars['ID']['input'];
|
|
@@ -178599,6 +179320,9 @@ export type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
178599
179320
|
export type QueryCcp_CatalogAccountsArgs = {
|
|
178600
179321
|
ids: Array<Scalars['ID']['input']>;
|
|
178601
179322
|
};
|
|
179323
|
+
export type QueryCcp_ConcessionsArgs = {
|
|
179324
|
+
ids: Array<Scalars['ID']['input']>;
|
|
179325
|
+
};
|
|
178602
179326
|
export type QueryCcp_EntitlementArgs = {
|
|
178603
179327
|
id: Scalars['ID']['input'];
|
|
178604
179328
|
};
|
|
@@ -179865,6 +180589,9 @@ export type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
179865
180589
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
179866
180590
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
179867
180591
|
};
|
|
180592
|
+
export type QueryConvoai_SearchAgentArgs = {
|
|
180593
|
+
input: ConvoAiSearchAgentInput;
|
|
180594
|
+
};
|
|
179868
180595
|
export type QueryCountGroupByEventNameArgs = {
|
|
179869
180596
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
179870
180597
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -180265,6 +180992,11 @@ export type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
|
|
|
180265
180992
|
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
180266
180993
|
workstreamId: Scalars['ID']['input'];
|
|
180267
180994
|
};
|
|
180995
|
+
export type QueryDevai_AutodevNextGlobalDashboardArgs = {
|
|
180996
|
+
cloudId: Scalars['ID']['input'];
|
|
180997
|
+
startDate: Scalars['Date']['input'];
|
|
180998
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
180999
|
+
};
|
|
180268
181000
|
export type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
|
|
180269
181001
|
cloudId: Scalars['ID']['input'];
|
|
180270
181002
|
projectAris: Array<Scalars['ID']['input']>;
|
|
@@ -180776,6 +181508,9 @@ export type QueryGraphInference_GetRelatedReposV2Args = {
|
|
|
180776
181508
|
export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
180777
181509
|
input: GraphInferenceGetRelatedReposV3Input;
|
|
180778
181510
|
};
|
|
181511
|
+
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
181512
|
+
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
181513
|
+
};
|
|
180779
181514
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
180780
181515
|
contextAri: Scalars['ID']['input'];
|
|
180781
181516
|
};
|
|
@@ -180839,9 +181574,11 @@ export type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
|
180839
181574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180840
181575
|
};
|
|
180841
181576
|
export type QueryGraphIntegration_McpServersArgs = {
|
|
181577
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180842
181578
|
ids: Array<Scalars['ID']['input']>;
|
|
180843
181579
|
};
|
|
180844
181580
|
export type QueryGraphIntegration_McpToolsArgs = {
|
|
181581
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180845
181582
|
ids: Array<Scalars['ID']['input']>;
|
|
180846
181583
|
};
|
|
180847
181584
|
export type QueryGraphIntegration_SkillArgs = {
|
|
@@ -185556,6 +186293,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipInv
|
|
|
185556
186293
|
id: Scalars['ID']['input'];
|
|
185557
186294
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
185558
186295
|
};
|
|
186296
|
+
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
186297
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186298
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186300
|
+
id: Scalars['ID']['input'];
|
|
186301
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
186302
|
+
};
|
|
186303
|
+
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaInverseArgs = {
|
|
186304
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186305
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186306
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186307
|
+
id: Scalars['ID']['input'];
|
|
186308
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput>;
|
|
186309
|
+
};
|
|
185559
186310
|
export type QueryGraphStoreV2_FocusRiskHasWorkEntityArgs = {
|
|
185560
186311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
185561
186312
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -191503,6 +192254,36 @@ export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipI
|
|
|
191503
192254
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
191504
192255
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
191505
192256
|
};
|
|
192257
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaArgs = {
|
|
192258
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192259
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192261
|
+
id: Scalars['ID']['input'];
|
|
192262
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192263
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192264
|
+
};
|
|
192265
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaBatchArgs = {
|
|
192266
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192267
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192268
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192269
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192270
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192271
|
+
};
|
|
192272
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaInverseArgs = {
|
|
192273
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192274
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192276
|
+
id: Scalars['ID']['input'];
|
|
192277
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192278
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192279
|
+
};
|
|
192280
|
+
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaInverseBatchArgs = {
|
|
192281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192283
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192284
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
192285
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput>;
|
|
192286
|
+
};
|
|
191506
192287
|
export type QueryGraphStore_OnPremProjectHasIssueArgs = {
|
|
191507
192288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
191508
192289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196539,6 +197320,9 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
196539
197320
|
cloudId: Scalars['ID']['input'];
|
|
196540
197321
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
196541
197322
|
};
|
|
197323
|
+
export type QueryJira_RovoEnablementStatusArgs = {
|
|
197324
|
+
cloudId: Scalars['ID']['input'];
|
|
197325
|
+
};
|
|
196542
197326
|
export type QueryJira_SprintFieldArgs = {
|
|
196543
197327
|
cloudId: Scalars['ID']['input'];
|
|
196544
197328
|
};
|
|
@@ -196666,6 +197450,13 @@ export type QueryJsmConversation_ConversationsArgs = {
|
|
|
196666
197450
|
export type QueryJsmConversation_HelpseekerSettingArgs = {
|
|
196667
197451
|
projectAri: Scalars['String']['input'];
|
|
196668
197452
|
};
|
|
197453
|
+
export type QueryJsmConversation_InvitesForAgentArgs = {
|
|
197454
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197455
|
+
cloudId: Scalars['ID']['input'];
|
|
197456
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197457
|
+
projectKey: Scalars['String']['input'];
|
|
197458
|
+
status?: InputMaybe<JsmConversationInviteStatus>;
|
|
197459
|
+
};
|
|
196669
197460
|
export type QueryJsmConversation_MediaConfigurationArgs = {
|
|
196670
197461
|
conversationAri: Scalars['ID']['input'];
|
|
196671
197462
|
};
|
|
@@ -196849,6 +197640,10 @@ export type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
|
|
|
196849
197640
|
export type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
196850
197641
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
196851
197642
|
};
|
|
197643
|
+
export type QueryKnowledgeBase_HealthDashboardArgs = {
|
|
197644
|
+
cloudId: Scalars['ID']['input'];
|
|
197645
|
+
projectIdentifier: Scalars['String']['input'];
|
|
197646
|
+
};
|
|
196852
197647
|
export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
196853
197648
|
cloudId: Scalars['ID']['input'];
|
|
196854
197649
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -196856,6 +197651,10 @@ export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
|
196856
197651
|
export type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
196857
197652
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
196858
197653
|
};
|
|
197654
|
+
export type QueryKnowledgeBase_SearchConversionMetricsArgs = {
|
|
197655
|
+
cloudId: Scalars['ID']['input'];
|
|
197656
|
+
projectIdentifier: Scalars['String']['input'];
|
|
197657
|
+
};
|
|
196859
197658
|
export type QueryKnowledgeBase_SourceSuggestionsArgs = {
|
|
196860
197659
|
cloudId: Scalars['ID']['input'];
|
|
196861
197660
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -198780,6 +199579,7 @@ export type RadarEntityFieldValuesArgs = {
|
|
|
198780
199579
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
198781
199580
|
};
|
|
198782
199581
|
export declare enum RadarEntityType {
|
|
199582
|
+
AiConnector = "aiConnector",
|
|
198783
199583
|
AiMonthlyUsage = "aiMonthlyUsage",
|
|
198784
199584
|
FocusArea = "focusArea",
|
|
198785
199585
|
FocusAreaType = "focusAreaType",
|
|
@@ -199022,7 +199822,7 @@ export declare enum RadarMetricType {
|
|
|
199022
199822
|
}
|
|
199023
199823
|
export type RadarMetricValue = {
|
|
199024
199824
|
__typename?: 'RadarMetricValue';
|
|
199025
|
-
dimensionName
|
|
199825
|
+
dimensionName?: Maybe<Scalars['String']['output']>;
|
|
199026
199826
|
id: Scalars['ID']['output'];
|
|
199027
199827
|
scopeId: Scalars['String']['output'];
|
|
199028
199828
|
scopeType: RadarMetricScopeType;
|
|
@@ -199030,7 +199830,7 @@ export type RadarMetricValue = {
|
|
|
199030
199830
|
tolerance?: Maybe<Scalars['Float']['output']>;
|
|
199031
199831
|
};
|
|
199032
199832
|
export type RadarMetricValueInput = {
|
|
199033
|
-
dimensionName
|
|
199833
|
+
dimensionName?: InputMaybe<Scalars['String']['input']>;
|
|
199034
199834
|
scopeId: Scalars['String']['input'];
|
|
199035
199835
|
scopeType: RadarMetricScopeType;
|
|
199036
199836
|
target: Scalars['Float']['input'];
|
|
@@ -202139,7 +202939,7 @@ export type SearchResultCompassComponent = SearchResult & {
|
|
|
202139
202939
|
type: SearchResultType;
|
|
202140
202940
|
url: Scalars['String']['output'];
|
|
202141
202941
|
};
|
|
202142
|
-
export type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
202942
|
+
export type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
202143
202943
|
export type SearchResultFederated = SearchResult & {
|
|
202144
202944
|
__typename?: 'SearchResultFederated';
|
|
202145
202945
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -202487,6 +203287,7 @@ export type SearchResultMercuryOrganization = SearchResult & {
|
|
|
202487
203287
|
lifecycleStatus?: Maybe<Scalars['String']['output']>;
|
|
202488
203288
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
202489
203289
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
203290
|
+
organization?: Maybe<MercuryOrganization>;
|
|
202490
203291
|
organizationTypeAri: Scalars['ID']['output'];
|
|
202491
203292
|
ownerAri: Scalars['ID']['output'];
|
|
202492
203293
|
parentOrganizationAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -202509,6 +203310,7 @@ export type SearchResultMercuryOrganizationStatusUpdate = SearchResult & {
|
|
|
202509
203310
|
newTargetDateAt?: Maybe<Scalars['String']['output']>;
|
|
202510
203311
|
newTargetDateType?: Maybe<Scalars['String']['output']>;
|
|
202511
203312
|
organizationAri: Scalars['ID']['output'];
|
|
203313
|
+
organizationStatusUpdate?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
202512
203314
|
ownerAri: Scalars['ID']['output'];
|
|
202513
203315
|
previousTargetDateAt?: Maybe<Scalars['String']['output']>;
|
|
202514
203316
|
previousTargetDateType?: Maybe<Scalars['String']['output']>;
|
|
@@ -231519,6 +232321,69 @@ export type TownsquareProjectsClonePayload = {
|
|
|
231519
232321
|
project?: Maybe<TownsquareProject>;
|
|
231520
232322
|
success: Scalars['Boolean']['output'];
|
|
231521
232323
|
};
|
|
232324
|
+
export type TownsquareProjectsConnectMsteamsChannelsAppInstallResult = {
|
|
232325
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsAppInstallResult';
|
|
232326
|
+
aadGroupId?: Maybe<Scalars['String']['output']>;
|
|
232327
|
+
error?: Maybe<TownsquareProjectsConnectMsteamsChannelsAppInstallResultError>;
|
|
232328
|
+
};
|
|
232329
|
+
export type TownsquareProjectsConnectMsteamsChannelsAppInstallResultError = {
|
|
232330
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsAppInstallResultError';
|
|
232331
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
232332
|
+
reasonType?: Maybe<Scalars['String']['output']>;
|
|
232333
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
232334
|
+
};
|
|
232335
|
+
export type TownsquareProjectsConnectMsteamsChannelsChannelInput = {
|
|
232336
|
+
aadGroupId: Scalars['String']['input'];
|
|
232337
|
+
msTeamsChannelId: Scalars['String']['input'];
|
|
232338
|
+
msTeamsTeamId: Scalars['String']['input'];
|
|
232339
|
+
};
|
|
232340
|
+
export type TownsquareProjectsConnectMsteamsChannelsConnectedChannel = {
|
|
232341
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsConnectedChannel';
|
|
232342
|
+
aadGroupId?: Maybe<Scalars['String']['output']>;
|
|
232343
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
232344
|
+
msTeamsChannelId?: Maybe<Scalars['String']['output']>;
|
|
232345
|
+
msTeamsTeamId?: Maybe<Scalars['String']['output']>;
|
|
232346
|
+
msTeamsTenantId?: Maybe<Scalars['String']['output']>;
|
|
232347
|
+
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
232348
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
232349
|
+
subscriberAaid?: Maybe<Scalars['String']['output']>;
|
|
232350
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
232351
|
+
};
|
|
232352
|
+
export type TownsquareProjectsConnectMsteamsChannelsFailedItem = {
|
|
232353
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsFailedItem';
|
|
232354
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
232355
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
232356
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
232357
|
+
};
|
|
232358
|
+
export type TownsquareProjectsConnectMsteamsChannelsInput = {
|
|
232359
|
+
channels: Array<InputMaybe<TownsquareProjectsConnectMsteamsChannelsChannelInput>>;
|
|
232360
|
+
installBot: Scalars['Boolean']['input'];
|
|
232361
|
+
msTeamsTenantId: Scalars['String']['input'];
|
|
232362
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
232363
|
+
userAzureId?: InputMaybe<Scalars['String']['input']>;
|
|
232364
|
+
};
|
|
232365
|
+
export type TownsquareProjectsConnectMsteamsChannelsPayload = {
|
|
232366
|
+
__typename?: 'TownsquareProjectsConnectMsteamsChannelsPayload';
|
|
232367
|
+
appInstallResults?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsAppInstallResult>>>;
|
|
232368
|
+
connectedChannels?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsConnectedChannel>>>;
|
|
232369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232370
|
+
failedItems?: Maybe<Array<Maybe<TownsquareProjectsConnectMsteamsChannelsFailedItem>>>;
|
|
232371
|
+
success: Scalars['Boolean']['output'];
|
|
232372
|
+
};
|
|
232373
|
+
export type TownsquareProjectsConnectSlackChannelsInput = {
|
|
232374
|
+
containerId: Scalars['ID']['input'];
|
|
232375
|
+
metadata?: InputMaybe<TownsquareConnectSlackChannelInputMetadata>;
|
|
232376
|
+
projectId: Scalars['ID']['input'];
|
|
232377
|
+
slackChannelIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
232378
|
+
slackTeamId: Scalars['String']['input'];
|
|
232379
|
+
types: Array<InputMaybe<Scalars['String']['input']>>;
|
|
232380
|
+
};
|
|
232381
|
+
export type TownsquareProjectsConnectSlackChannelsPayload = {
|
|
232382
|
+
__typename?: 'TownsquareProjectsConnectSlackChannelsPayload';
|
|
232383
|
+
errors?: Maybe<Array<MutationError>>;
|
|
232384
|
+
slackChannels?: Maybe<Array<Maybe<TownsquareSlackChannelConnectionResult>>>;
|
|
232385
|
+
success: Scalars['Boolean']['output'];
|
|
232386
|
+
};
|
|
231522
232387
|
export type TownsquareProjectsCreateCommentInput = {
|
|
231523
232388
|
commentText: Scalars['String']['input'];
|
|
231524
232389
|
entityId: Scalars['ID']['input'];
|
|
@@ -233311,6 +234176,7 @@ export type TrelloBaseCard = {
|
|
|
233311
234176
|
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
233312
234177
|
cover?: Maybe<TrelloCardCover>;
|
|
233313
234178
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
234179
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
233314
234180
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
233315
234181
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
233316
234182
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -233890,6 +234756,7 @@ export type TrelloCard = Node & TrelloBaseCard & {
|
|
|
233890
234756
|
cover?: Maybe<TrelloCardCover>;
|
|
233891
234757
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
233892
234758
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
234759
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
233893
234760
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
233894
234761
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
233895
234762
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -235287,6 +236154,11 @@ export type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
|
235287
236154
|
errors?: Maybe<Array<MutationError>>;
|
|
235288
236155
|
success: Scalars['Boolean']['output'];
|
|
235289
236156
|
};
|
|
236157
|
+
export type TrelloEnqueueGenerateBoardBackgroundJobInput = {
|
|
236158
|
+
boardId: Scalars['ID']['input'];
|
|
236159
|
+
theme?: InputMaybe<Scalars['String']['input']>;
|
|
236160
|
+
userInput: Scalars['String']['input'];
|
|
236161
|
+
};
|
|
235290
236162
|
export type TrelloEnqueueProposePlannerEventsJobInput = {
|
|
235291
236163
|
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
235292
236164
|
timezoneOffsetHours: Scalars['Float']['input'];
|
|
@@ -235344,6 +236216,24 @@ export type TrelloEnterprisePrefs = {
|
|
|
235344
236216
|
__typename?: 'TrelloEnterprisePrefs';
|
|
235345
236217
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
235346
236218
|
};
|
|
236219
|
+
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
236220
|
+
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
236221
|
+
background?: Maybe<TrelloBoardBackground>;
|
|
236222
|
+
errors?: Maybe<Array<TrelloJobError>>;
|
|
236223
|
+
id: Scalars['ID']['output'];
|
|
236224
|
+
status: TrelloGenerateBoardBackgroundJobStatus;
|
|
236225
|
+
};
|
|
236226
|
+
export type TrelloGenerateBoardBackgroundJobPayload = Payload & {
|
|
236227
|
+
__typename?: 'TrelloGenerateBoardBackgroundJobPayload';
|
|
236228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236229
|
+
job?: Maybe<TrelloGenerateBoardBackgroundJob>;
|
|
236230
|
+
success: Scalars['Boolean']['output'];
|
|
236231
|
+
};
|
|
236232
|
+
export declare enum TrelloGenerateBoardBackgroundJobStatus {
|
|
236233
|
+
Finished = "FINISHED",
|
|
236234
|
+
InProgress = "IN_PROGRESS",
|
|
236235
|
+
Pending = "PENDING"
|
|
236236
|
+
}
|
|
235347
236237
|
export type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
235348
236238
|
boardId: Scalars['ID']['input'];
|
|
235349
236239
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -235479,6 +236369,7 @@ export type TrelloInboxCard = TrelloBaseCard & {
|
|
|
235479
236369
|
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
235480
236370
|
cover?: Maybe<TrelloCardCover>;
|
|
235481
236371
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
236372
|
+
dateClosed?: Maybe<Scalars['DateTime']['output']>;
|
|
235482
236373
|
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
235483
236374
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
235484
236375
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -236097,6 +236988,8 @@ export type TrelloMemberOwnedWebhook = {
|
|
|
236097
236988
|
id: Scalars['ID']['output'];
|
|
236098
236989
|
modelId: Scalars['ID']['output'];
|
|
236099
236990
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
236991
|
+
observingModelName?: Maybe<Scalars['String']['output']>;
|
|
236992
|
+
observingModelType?: Maybe<Scalars['String']['output']>;
|
|
236100
236993
|
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
236101
236994
|
};
|
|
236102
236995
|
export type TrelloMemberOwnedWebhookConnection = {
|
|
@@ -236265,7 +237158,7 @@ export type TrelloMoveCardInput = {
|
|
|
236265
237158
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
236266
237159
|
cardId: Scalars['ID']['input'];
|
|
236267
237160
|
listId: Scalars['ID']['input'];
|
|
236268
|
-
position?: InputMaybe<
|
|
237161
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
236269
237162
|
};
|
|
236270
237163
|
export type TrelloMoveCardPayload = Payload & {
|
|
236271
237164
|
__typename?: 'TrelloMoveCardPayload';
|
|
@@ -236390,6 +237283,7 @@ export type TrelloMutationApi = {
|
|
|
236390
237283
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
236391
237284
|
enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
|
|
236392
237285
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
237286
|
+
enqueueGenerateBoardBackgroundJob?: Maybe<TrelloGenerateBoardBackgroundJobPayload>;
|
|
236393
237287
|
enqueueProposePlannerEventsJob?: Maybe<TrelloProposePlannerEventsJobPayload>;
|
|
236394
237288
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
236395
237289
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
@@ -236619,6 +237513,9 @@ export type TrelloMutationApiEnableCardFrontCompleteToggleArgs = {
|
|
|
236619
237513
|
export type TrelloMutationApiEndVoiceCaptureSessionArgs = {
|
|
236620
237514
|
input: TrelloEndVoiceCaptureSessionInput;
|
|
236621
237515
|
};
|
|
237516
|
+
export type TrelloMutationApiEnqueueGenerateBoardBackgroundJobArgs = {
|
|
237517
|
+
input: TrelloEnqueueGenerateBoardBackgroundJobInput;
|
|
237518
|
+
};
|
|
236622
237519
|
export type TrelloMutationApiEnqueueProposePlannerEventsJobArgs = {
|
|
236623
237520
|
input: TrelloEnqueueProposePlannerEventsJobInput;
|
|
236624
237521
|
};
|
|
@@ -241937,6 +242834,7 @@ export type UserPreferences = {
|
|
|
241937
242834
|
highlightOptionPanelEnabled: Scalars['Boolean']['output'];
|
|
241938
242835
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
241939
242836
|
homeWidgets: Array<HomeWidget>;
|
|
242837
|
+
isCommentsPanelAutomaticSummariesEnabled: Scalars['Boolean']['output'];
|
|
241940
242838
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|
|
241941
242839
|
keyboardShortcutDisabled: Scalars['Boolean']['output'];
|
|
241942
242840
|
missionControlFeatureDiscoverySuggestions: Array<Maybe<MissionControlFeatureDiscoverySuggestionState>>;
|
|
@@ -241988,6 +242886,7 @@ export type UserPreferencesInput = {
|
|
|
241988
242886
|
globalPageCardAppearancePreference?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241989
242887
|
homePagesDisplayView?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241990
242888
|
homeWidget?: InputMaybe<HomeWidgetInput>;
|
|
242889
|
+
isCommentsPanelAutomaticSummariesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241991
242890
|
isHomeOnboardingDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241992
242891
|
keyboardShortcutDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241993
242892
|
missionControlFeatureDiscoverySuggestion?: InputMaybe<MissionControlFeatureDiscoverySuggestionInput>;
|