@forge/cli-shared 8.19.0-next.8 → 8.19.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/out/graphql/graphql-types.d.ts +994 -83
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +157 -44
- package/package.json +2 -2
|
@@ -1153,7 +1153,8 @@ export declare type AvpCreateDashboardFromTemplateInput = {
|
|
|
1153
1153
|
dashboard: AvpDashboardTemplateInput;
|
|
1154
1154
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
1155
1155
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1156
|
-
|
|
1156
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1157
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1157
1158
|
};
|
|
1158
1159
|
export declare type AvpCreateDashboardInput = {
|
|
1159
1160
|
cloudId: Scalars['ID']['input'];
|
|
@@ -1161,7 +1162,8 @@ export declare type AvpCreateDashboardInput = {
|
|
|
1161
1162
|
dashboard: AvpDashboardInput;
|
|
1162
1163
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
1163
1164
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
1164
|
-
|
|
1165
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1166
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1165
1167
|
};
|
|
1166
1168
|
export declare type AvpCreateDashboardPayload = Payload & {
|
|
1167
1169
|
__typename?: 'AVPCreateDashboardPayload';
|
|
@@ -1442,6 +1444,13 @@ export declare type AvpGetDashboardTemplatesInput = {
|
|
|
1442
1444
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1443
1445
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1444
1446
|
};
|
|
1447
|
+
export declare type AvpGetReadOnlyDashboardInput = {
|
|
1448
|
+
cloudId: Scalars['ID']['input'];
|
|
1449
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
1450
|
+
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
1451
|
+
templateId: Scalars['String']['input'];
|
|
1452
|
+
workspaceAri: Scalars['ID']['input'];
|
|
1453
|
+
};
|
|
1445
1454
|
export declare type AvpHotTierFilterConfig = {
|
|
1446
1455
|
__typename?: 'AVPHotTierFilterConfig';
|
|
1447
1456
|
datasourceLocator?: Maybe<AvpDatasourceLocator>;
|
|
@@ -1688,24 +1697,15 @@ export declare type AvpPermissionsUserAccess = {
|
|
|
1688
1697
|
user?: Maybe<User>;
|
|
1689
1698
|
};
|
|
1690
1699
|
export declare type AvpPlatformDimension = {
|
|
1700
|
+
__typename?: 'AVPPlatformDimension';
|
|
1691
1701
|
datasourceLocator: AvpDatasourceLocator;
|
|
1702
|
+
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
1692
1703
|
name: Scalars['String']['output'];
|
|
1693
1704
|
product: Scalars['String']['output'];
|
|
1694
1705
|
};
|
|
1695
1706
|
export declare type AvpPlatformDimensionInput = {
|
|
1696
|
-
dynamic?: InputMaybe<AvpPlatformDynamicDimensionInput>;
|
|
1697
|
-
semantic?: InputMaybe<AvpPlatformSemanticDimensionInput>;
|
|
1698
|
-
};
|
|
1699
|
-
export declare type AvpPlatformDynamicDimension = AvpPlatformDimension & {
|
|
1700
|
-
__typename?: 'AVPPlatformDynamicDimension';
|
|
1701
|
-
datasourceLocator: AvpDatasourceLocator;
|
|
1702
|
-
dynamicDimensionKey: Scalars['String']['output'];
|
|
1703
|
-
name: Scalars['String']['output'];
|
|
1704
|
-
product: Scalars['String']['output'];
|
|
1705
|
-
};
|
|
1706
|
-
export declare type AvpPlatformDynamicDimensionInput = {
|
|
1707
1707
|
datasourceLocator: AvpDatasourceLocatorInput;
|
|
1708
|
-
dynamicDimensionKey
|
|
1708
|
+
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
1709
1709
|
name: Scalars['String']['input'];
|
|
1710
1710
|
product: Scalars['String']['input'];
|
|
1711
1711
|
};
|
|
@@ -1735,19 +1735,6 @@ export declare type AvpPlatformFilterUpdateInput = {
|
|
|
1735
1735
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
1736
1736
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1737
1737
|
};
|
|
1738
|
-
export declare type AvpPlatformSemanticDimension = AvpPlatformDimension & {
|
|
1739
|
-
__typename?: 'AVPPlatformSemanticDimension';
|
|
1740
|
-
datasourceLocator: AvpDatasourceLocator;
|
|
1741
|
-
name: Scalars['String']['output'];
|
|
1742
|
-
product: Scalars['String']['output'];
|
|
1743
|
-
semanticModel: Scalars['String']['output'];
|
|
1744
|
-
};
|
|
1745
|
-
export declare type AvpPlatformSemanticDimensionInput = {
|
|
1746
|
-
datasourceLocator: AvpDatasourceLocatorInput;
|
|
1747
|
-
name: Scalars['String']['input'];
|
|
1748
|
-
product: Scalars['String']['input'];
|
|
1749
|
-
semanticModel: Scalars['String']['input'];
|
|
1750
|
-
};
|
|
1751
1738
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
1752
1739
|
product: Scalars['String']['input'];
|
|
1753
1740
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -2599,6 +2586,11 @@ export declare type AdminAiPolicyEdge = {
|
|
|
2599
2586
|
cursor: Scalars['String']['output'];
|
|
2600
2587
|
node: AdminAiPolicy;
|
|
2601
2588
|
};
|
|
2589
|
+
export declare enum AdminAiPolicyStatus {
|
|
2590
|
+
Disabled = "DISABLED",
|
|
2591
|
+
Enabled = "ENABLED",
|
|
2592
|
+
OptOut = "OPT_OUT"
|
|
2593
|
+
}
|
|
2602
2594
|
export declare type AdminAnnouncementBannerFeature = {
|
|
2603
2595
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
2604
2596
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -2852,16 +2844,8 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
2852
2844
|
node: AdminAuditLogEvent;
|
|
2853
2845
|
};
|
|
2854
2846
|
export declare type AdminAuditLogEventExportInput = {
|
|
2855
|
-
action?: InputMaybe<Scalars['String']['input']>;
|
|
2856
|
-
actor?: InputMaybe<Scalars['String']['input']>;
|
|
2857
|
-
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
2858
2847
|
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
2859
|
-
|
|
2860
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
2861
|
-
product?: InputMaybe<Scalars['String']['input']>;
|
|
2862
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
2863
|
-
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
2864
|
-
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
2848
|
+
query: Scalars['String']['input'];
|
|
2865
2849
|
};
|
|
2866
2850
|
export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
2867
2851
|
__typename?: 'AdminAuditLogEventExportResponsePayload';
|
|
@@ -3027,6 +3011,7 @@ export declare type AdminCreateAiPolicyInput = {
|
|
|
3027
3011
|
consented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3028
3012
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
3029
3013
|
resources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3014
|
+
status?: InputMaybe<AdminAiPolicyStatus>;
|
|
3030
3015
|
};
|
|
3031
3016
|
export declare type AdminCreateAiPolicyResponsePayload = Payload & {
|
|
3032
3017
|
__typename?: 'AdminCreateAiPolicyResponsePayload';
|
|
@@ -4621,6 +4606,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration
|
|
|
4621
4606
|
export declare type AgentStudioAuthReadinessResult = {
|
|
4622
4607
|
__typename?: 'AgentStudioAuthReadinessResult';
|
|
4623
4608
|
firstPartyApps: Array<AgentStudioFirstPartyApp>;
|
|
4609
|
+
thirdPartyApps: Array<AgentStudioThirdPartyApp>;
|
|
4624
4610
|
};
|
|
4625
4611
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4626
4612
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5169,6 +5155,7 @@ export declare type AgentStudioKnowledgeGapUploadJob = {
|
|
|
5169
5155
|
startedAt?: Maybe<Scalars['String']['output']>;
|
|
5170
5156
|
status?: Maybe<AgentStudioKnowledgeGapUploadJobStatus>;
|
|
5171
5157
|
triggeredBy?: Maybe<Scalars['String']['output']>;
|
|
5158
|
+
type?: Maybe<AgentStudioKnowledgeGapUploadJobType>;
|
|
5172
5159
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5173
5160
|
};
|
|
5174
5161
|
export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
@@ -5181,6 +5168,10 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
5181
5168
|
Postprocessing = "POSTPROCESSING",
|
|
5182
5169
|
Processing = "PROCESSING"
|
|
5183
5170
|
}
|
|
5171
|
+
export declare enum AgentStudioKnowledgeGapUploadJobType {
|
|
5172
|
+
AdhocCsm = "ADHOC_CSM",
|
|
5173
|
+
FileUpload = "FILE_UPLOAD"
|
|
5174
|
+
}
|
|
5184
5175
|
export declare type AgentStudioKnowledgeSource = {
|
|
5185
5176
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
5186
5177
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -5445,6 +5436,18 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
5445
5436
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
5446
5437
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
5447
5438
|
};
|
|
5439
|
+
export declare type AgentStudioThirdPartyApp = AgentStudioApp & {
|
|
5440
|
+
__typename?: 'AgentStudioThirdPartyApp';
|
|
5441
|
+
authConsentStatus: AgentStudioThirdPartyAuthConsentStatus;
|
|
5442
|
+
authConsentUrl?: Maybe<Scalars['String']['output']>;
|
|
5443
|
+
displayName: Scalars['String']['output'];
|
|
5444
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5445
|
+
integrationKey: Scalars['String']['output'];
|
|
5446
|
+
};
|
|
5447
|
+
export declare enum AgentStudioThirdPartyAuthConsentStatus {
|
|
5448
|
+
Connected = "CONNECTED",
|
|
5449
|
+
Unavailable = "UNAVAILABLE"
|
|
5450
|
+
}
|
|
5448
5451
|
export declare type AgentStudioTool = {
|
|
5449
5452
|
__typename?: 'AgentStudioTool';
|
|
5450
5453
|
configuration?: Maybe<AgentStudioToolConfiguration>;
|
|
@@ -5995,6 +5998,27 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
5995
5998
|
onDuty: Scalars['Int']['output'];
|
|
5996
5999
|
totalAgents: Scalars['Int']['output'];
|
|
5997
6000
|
};
|
|
6001
|
+
export declare type AgentWorkspaceBulkImportJob = {
|
|
6002
|
+
__typename?: 'AgentWorkspaceBulkImportJob';
|
|
6003
|
+
createdAt: Scalars['DateTime']['output'];
|
|
6004
|
+
createdSchedules?: Maybe<Scalars['Int']['output']>;
|
|
6005
|
+
failedSchedules?: Maybe<Scalars['Int']['output']>;
|
|
6006
|
+
jobId: Scalars['ID']['output'];
|
|
6007
|
+
processedRows?: Maybe<Scalars['Int']['output']>;
|
|
6008
|
+
status: AgentWorkspaceBulkImportJobStatus;
|
|
6009
|
+
totalRows?: Maybe<Scalars['Int']['output']>;
|
|
6010
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6011
|
+
validationErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
6012
|
+
};
|
|
6013
|
+
export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
6014
|
+
ImportFailed = "IMPORT_FAILED",
|
|
6015
|
+
ImportInProgress = "IMPORT_IN_PROGRESS",
|
|
6016
|
+
ImportProcessing = "IMPORT_PROCESSING",
|
|
6017
|
+
ImportSuccessful = "IMPORT_SUCCESSFUL",
|
|
6018
|
+
ValidationFailed = "VALIDATION_FAILED",
|
|
6019
|
+
ValidationInProgress = "VALIDATION_IN_PROGRESS",
|
|
6020
|
+
ValidationSuccessful = "VALIDATION_SUCCESSFUL"
|
|
6021
|
+
}
|
|
5998
6022
|
export declare type AgentWorkspaceCapacityConnection = {
|
|
5999
6023
|
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
6000
6024
|
edges: Array<AgentWorkspaceAgentCapacityEdge>;
|
|
@@ -6721,6 +6745,7 @@ export declare type AgentWorkspaceShiftsConnection = {
|
|
|
6721
6745
|
initialFilters?: Maybe<AgentWorkspaceShiftsAppliedFilters>;
|
|
6722
6746
|
metadata: AgentWorkspaceShiftsMetadata;
|
|
6723
6747
|
pageInfo: AgentWorkspaceAgentsPageInfo;
|
|
6748
|
+
resolvedDateRange?: Maybe<AgentWorkspaceResolvedDateRange>;
|
|
6724
6749
|
summary: AgentWorkspaceShiftsSummary;
|
|
6725
6750
|
};
|
|
6726
6751
|
export declare type AgentWorkspaceShiftsMetadata = {
|
|
@@ -6735,12 +6760,12 @@ export declare type AgentWorkspaceShiftsMetadata = {
|
|
|
6735
6760
|
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
6736
6761
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6737
6762
|
cloudId: Scalars['ID']['input'];
|
|
6738
|
-
endTime
|
|
6763
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6739
6764
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6740
6765
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6741
6766
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6742
6767
|
scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6743
|
-
startTime
|
|
6768
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6744
6769
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6745
6770
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6746
6771
|
};
|
|
@@ -6861,6 +6886,16 @@ export declare enum AgentWorkspaceSortDirection {
|
|
|
6861
6886
|
Asc = "ASC",
|
|
6862
6887
|
Desc = "DESC"
|
|
6863
6888
|
}
|
|
6889
|
+
export declare type AgentWorkspaceStartBulkImportInput = {
|
|
6890
|
+
cloudId: Scalars['ID']['input'];
|
|
6891
|
+
jobId: Scalars['ID']['input'];
|
|
6892
|
+
projectId: Scalars['ID']['input'];
|
|
6893
|
+
};
|
|
6894
|
+
export declare type AgentWorkspaceStartBulkImportPayload = {
|
|
6895
|
+
__typename?: 'AgentWorkspaceStartBulkImportPayload';
|
|
6896
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
6897
|
+
status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
|
|
6898
|
+
};
|
|
6864
6899
|
export declare type AgentWorkspaceSubscribeSkillInput = {
|
|
6865
6900
|
cloudId: Scalars['ID']['input'];
|
|
6866
6901
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8584,6 +8619,7 @@ export declare type AppVersionRollout = {
|
|
|
8584
8619
|
sourceVersionId: Scalars['ID']['output'];
|
|
8585
8620
|
status: AppVersionRolloutStatus;
|
|
8586
8621
|
targetVersionId: Scalars['ID']['output'];
|
|
8622
|
+
upgradeLimit?: Maybe<Scalars['Int']['output']>;
|
|
8587
8623
|
};
|
|
8588
8624
|
export declare type AppVersionRolloutPageInfo = {
|
|
8589
8625
|
__typename?: 'AppVersionRolloutPageInfo';
|
|
@@ -8953,6 +8989,7 @@ export declare type AssetsDmAdapter = {
|
|
|
8953
8989
|
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
8954
8990
|
icon?: Maybe<Scalars['String']['output']>;
|
|
8955
8991
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
8992
|
+
isCloudFetchSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
8956
8993
|
name?: Maybe<Scalars['String']['output']>;
|
|
8957
8994
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
8958
8995
|
};
|
|
@@ -9544,6 +9581,7 @@ export declare type AssetsDmDataSourceConfig = {
|
|
|
9544
9581
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
9545
9582
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
9546
9583
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
9584
|
+
isCloudFetchSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
9547
9585
|
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
9548
9586
|
};
|
|
9549
9587
|
export declare type AssetsDmDataSourceConfigureMappingInput = {
|
|
@@ -9628,6 +9666,7 @@ export declare type AssetsDmDataSourceDetails = {
|
|
|
9628
9666
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
9629
9667
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
9630
9668
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
9669
|
+
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9631
9670
|
isTemplate: Scalars['Boolean']['output'];
|
|
9632
9671
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
9633
9672
|
name: Scalars['String']['output'];
|
|
@@ -9816,8 +9855,10 @@ export declare enum AssetsDmDataSourceOperationEnum {
|
|
|
9816
9855
|
export declare type AssetsDmDataSourceResponse = {
|
|
9817
9856
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
9818
9857
|
error?: Maybe<Scalars['String']['output']>;
|
|
9858
|
+
isTestConnectionSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
9819
9859
|
message?: Maybe<Scalars['String']['output']>;
|
|
9820
9860
|
success: Scalars['Boolean']['output'];
|
|
9861
|
+
testConnectionErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
9821
9862
|
};
|
|
9822
9863
|
export declare type AssetsDmDataSourceRunMergeResponse = {
|
|
9823
9864
|
__typename?: 'AssetsDMDataSourceRunMergeResponse';
|
|
@@ -11084,6 +11125,11 @@ export declare type AssetsDmTransformedDataResponse = {
|
|
|
11084
11125
|
filters: Array<AssetsDmTransformedDataFilter>;
|
|
11085
11126
|
pagination: AssetsDmPaginationInfo;
|
|
11086
11127
|
};
|
|
11128
|
+
export declare type AssetsDmTriggerCloudFetchResponse = {
|
|
11129
|
+
__typename?: 'AssetsDMTriggerCloudFetchResponse';
|
|
11130
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
11131
|
+
message: Scalars['String']['output'];
|
|
11132
|
+
};
|
|
11087
11133
|
export declare type AssetsDmUnverifiedAttribute = {
|
|
11088
11134
|
__typename?: 'AssetsDMUnverifiedAttribute';
|
|
11089
11135
|
issue: Scalars['String']['output'];
|
|
@@ -11668,8 +11714,8 @@ export declare type AssetsVerticalAssetTypesTracking = {
|
|
|
11668
11714
|
auditInfo: AssetsVerticalAuditInfo;
|
|
11669
11715
|
cloudId: Scalars['ID']['output'];
|
|
11670
11716
|
id: Scalars['ID']['output'];
|
|
11671
|
-
|
|
11672
|
-
|
|
11717
|
+
objSchema?: Maybe<AssetsSchema>;
|
|
11718
|
+
objType?: Maybe<AssetsObjectType>;
|
|
11673
11719
|
verticalInstantiationCategoryId: Scalars['ID']['output'];
|
|
11674
11720
|
workspaceId: Scalars['ID']['output'];
|
|
11675
11721
|
};
|
|
@@ -11844,7 +11890,6 @@ export declare type AssetsVerticalCreateVerticalInstantiationCategoryInput = {
|
|
|
11844
11890
|
cloudId: Scalars['ID']['input'];
|
|
11845
11891
|
items?: InputMaybe<Array<AssetsVerticalItemSelectionInput>>;
|
|
11846
11892
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
11847
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11848
11893
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
11849
11894
|
};
|
|
11850
11895
|
export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
@@ -11893,9 +11938,7 @@ export declare type AssetsVerticalDepreciationRuleAssetType = {
|
|
|
11893
11938
|
depreciationRuleId: Scalars['ID']['output'];
|
|
11894
11939
|
id: Scalars['ID']['output'];
|
|
11895
11940
|
objSchema?: Maybe<AssetsSchema>;
|
|
11896
|
-
objSchemaAri: Scalars['ID']['output'];
|
|
11897
11941
|
objType?: Maybe<AssetsObjectType>;
|
|
11898
|
-
objTypeAri: Scalars['ID']['output'];
|
|
11899
11942
|
};
|
|
11900
11943
|
export declare type AssetsVerticalDepreciationRuleAssetTypeConnection = {
|
|
11901
11944
|
__typename?: 'AssetsVerticalDepreciationRuleAssetTypeConnection';
|
|
@@ -12179,7 +12222,6 @@ export declare type AssetsVerticalUpdateVerticalInstantiationCategoryInput = {
|
|
|
12179
12222
|
cloudId: Scalars['ID']['input'];
|
|
12180
12223
|
id: Scalars['ID']['input'];
|
|
12181
12224
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
12182
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
12183
12225
|
};
|
|
12184
12226
|
export declare type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
12185
12227
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput>>;
|
|
@@ -12288,7 +12330,6 @@ export declare type AssetsVerticalVerticalInstantiationCategoryWithSelectionsInp
|
|
|
12288
12330
|
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
12289
12331
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
12290
12332
|
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
12291
|
-
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
12292
12333
|
};
|
|
12293
12334
|
export declare type AssetsVerticalVerticalInstantiationConnection = {
|
|
12294
12335
|
__typename?: 'AssetsVerticalVerticalInstantiationConnection';
|
|
@@ -15575,6 +15616,7 @@ export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
|
|
|
15575
15616
|
};
|
|
15576
15617
|
export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
15577
15618
|
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
15619
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
15578
15620
|
response?: Maybe<Scalars['String']['output']>;
|
|
15579
15621
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15580
15622
|
};
|
|
@@ -15594,6 +15636,7 @@ export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
|
|
|
15594
15636
|
};
|
|
15595
15637
|
export declare type ChangeManagementUpdateLastRovoRiskAssessmentInput = {
|
|
15596
15638
|
cloudId: Scalars['ID']['input'];
|
|
15639
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
15597
15640
|
issueId: Scalars['String']['input'];
|
|
15598
15641
|
response: Scalars['String']['input'];
|
|
15599
15642
|
};
|
|
@@ -16896,6 +16939,17 @@ export declare type CommerceExpBillingPeriodDetails = {
|
|
|
16896
16939
|
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
16897
16940
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
16898
16941
|
};
|
|
16942
|
+
export declare type CommerceExpBillingSchedule = {
|
|
16943
|
+
__typename?: 'CommerceExpBillingSchedule';
|
|
16944
|
+
aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
|
|
16945
|
+
aggregatedTaxItems?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
16946
|
+
aggregatedUpcomingBillsLine?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
16947
|
+
billDate?: Maybe<CommerceExpBillDateResponse>;
|
|
16948
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
16949
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
16950
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
16951
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
16952
|
+
};
|
|
16899
16953
|
export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
16900
16954
|
export declare type CommerceExpBuyCurrentTrialInput = {
|
|
16901
16955
|
entitlementId: Scalars['String']['input'];
|
|
@@ -17444,7 +17498,6 @@ export declare type CommerceExpCcpPromotion = {
|
|
|
17444
17498
|
export declare type CommerceExpCcpQuery = {
|
|
17445
17499
|
__typename?: 'CommerceExpCcpQuery';
|
|
17446
17500
|
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
17447
|
-
entitlementSearch?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
17448
17501
|
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
17449
17502
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
17450
17503
|
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
@@ -17470,13 +17523,6 @@ export declare type CommerceExpCcpQuery = {
|
|
|
17470
17523
|
export declare type CommerceExpCcpQueryEntitlementArgs = {
|
|
17471
17524
|
id: Scalars['ID']['input'];
|
|
17472
17525
|
};
|
|
17473
|
-
export declare type CommerceExpCcpQueryEntitlementSearchArgs = {
|
|
17474
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
17475
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
17476
|
-
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
17477
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17478
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17479
|
-
};
|
|
17480
17526
|
export declare type CommerceExpCcpQueryEntitlementsArgs = {
|
|
17481
17527
|
ids: Array<Scalars['ID']['input']>;
|
|
17482
17528
|
};
|
|
@@ -17555,6 +17601,7 @@ export declare type CommerceExpCcpQuote = CommerceExpNode & {
|
|
|
17555
17601
|
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
17556
17602
|
aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
17557
17603
|
aggregatedUpcomingBillsLineForBAC?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
17604
|
+
billingSchedules?: Maybe<Array<Maybe<CommerceExpBillingSchedule>>>;
|
|
17558
17605
|
canUpdateIGInQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
17559
17606
|
cancelledReason?: Maybe<CommerceExpCanceledReason>;
|
|
17560
17607
|
contacts?: Maybe<Array<Maybe<CommerceExpContact>>>;
|
|
@@ -26633,6 +26680,14 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
26633
26680
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
26634
26681
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
26635
26682
|
};
|
|
26683
|
+
export declare type ConfluenceContentOwnerNotificationRecord = {
|
|
26684
|
+
__typename?: 'ConfluenceContentOwnerNotificationRecord';
|
|
26685
|
+
contentId: Scalars['ID']['output'];
|
|
26686
|
+
message: Scalars['String']['output'];
|
|
26687
|
+
recipientEmail: Scalars['String']['output'];
|
|
26688
|
+
sentAt: Scalars['String']['output'];
|
|
26689
|
+
sentBy: ConfluenceContentPerformanceUser;
|
|
26690
|
+
};
|
|
26636
26691
|
export declare type ConfluenceContentPerformance = {
|
|
26637
26692
|
__typename?: 'ConfluenceContentPerformance';
|
|
26638
26693
|
content: ConfluenceContentPerformanceContent;
|
|
@@ -27657,6 +27712,11 @@ export declare type ConfluenceEnableDefaultSpaceLogoPayload = Payload & {
|
|
|
27657
27712
|
errors?: Maybe<Array<MutationError>>;
|
|
27658
27713
|
success: Scalars['Boolean']['output'];
|
|
27659
27714
|
};
|
|
27715
|
+
export declare type ConfluenceEnableGlobalAnonymousEnforcementPayload = Payload & {
|
|
27716
|
+
__typename?: 'ConfluenceEnableGlobalAnonymousEnforcementPayload';
|
|
27717
|
+
errors: Array<MutationError>;
|
|
27718
|
+
success: Scalars['Boolean']['output'];
|
|
27719
|
+
};
|
|
27660
27720
|
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
27661
27721
|
id: Scalars['ID']['input'];
|
|
27662
27722
|
};
|
|
@@ -28871,6 +28931,16 @@ export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
|
28871
28931
|
success: Scalars['Boolean']['output'];
|
|
28872
28932
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
28873
28933
|
};
|
|
28934
|
+
export declare type ConfluenceNbmRetryTransformationLongTaskInput = {
|
|
28935
|
+
transformationId: Scalars['ID']['input'];
|
|
28936
|
+
};
|
|
28937
|
+
export declare type ConfluenceNbmRetryTransformationLongTaskPayload = Payload & {
|
|
28938
|
+
__typename?: 'ConfluenceNbmRetryTransformationLongTaskPayload';
|
|
28939
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28940
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
28941
|
+
success: Scalars['Boolean']['output'];
|
|
28942
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
28943
|
+
};
|
|
28874
28944
|
export declare type ConfluenceNbmScanCategory = {
|
|
28875
28945
|
__typename?: 'ConfluenceNbmScanCategory';
|
|
28876
28946
|
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
@@ -29205,6 +29275,16 @@ export declare type ConfluenceNotificationsSettings = {
|
|
|
29205
29275
|
__typename?: 'ConfluenceNotificationsSettings';
|
|
29206
29276
|
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
29207
29277
|
};
|
|
29278
|
+
export declare type ConfluenceNotifyContentOwnerInput = {
|
|
29279
|
+
contentId: Scalars['ID']['input'];
|
|
29280
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
29281
|
+
};
|
|
29282
|
+
export declare type ConfluenceNotifyContentOwnerPayload = Payload & {
|
|
29283
|
+
__typename?: 'ConfluenceNotifyContentOwnerPayload';
|
|
29284
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29285
|
+
notificationRecord?: Maybe<Array<Maybe<ConfluenceContentOwnerNotificationRecord>>>;
|
|
29286
|
+
success: Scalars['Boolean']['output'];
|
|
29287
|
+
};
|
|
29208
29288
|
export declare type ConfluenceOperationCheck = {
|
|
29209
29289
|
__typename?: 'ConfluenceOperationCheck';
|
|
29210
29290
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -30524,6 +30604,12 @@ export declare enum ConfluenceShareableLinkAccessType {
|
|
|
30524
30604
|
External = "EXTERNAL",
|
|
30525
30605
|
InternalLicensed = "INTERNAL_LICENSED"
|
|
30526
30606
|
}
|
|
30607
|
+
export declare type ConfluenceShareableLinkPageInfo = {
|
|
30608
|
+
__typename?: 'ConfluenceShareableLinkPageInfo';
|
|
30609
|
+
endPage?: Maybe<Scalars['String']['output']>;
|
|
30610
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
30611
|
+
startPage?: Maybe<Scalars['String']['output']>;
|
|
30612
|
+
};
|
|
30527
30613
|
export declare type ConfluenceShareableLinkSiteConfig = {
|
|
30528
30614
|
__typename?: 'ConfluenceShareableLinkSiteConfig';
|
|
30529
30615
|
siteConfigs: Array<Maybe<ConfluenceShareableLinkSiteSetting>>;
|
|
@@ -30538,10 +30624,25 @@ export declare enum ConfluenceShareableLinkSiteStatus {
|
|
|
30538
30624
|
Off = "OFF",
|
|
30539
30625
|
On = "ON"
|
|
30540
30626
|
}
|
|
30627
|
+
export declare type ConfluenceShareableLinkSpace = {
|
|
30628
|
+
__typename?: 'ConfluenceShareableLinkSpace';
|
|
30629
|
+
activeLinkCount: Scalars['Long']['output'];
|
|
30630
|
+
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
30631
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30632
|
+
shareableLinkSpaceConfig: Array<Maybe<ConfluenceShareableLinkSpaceSetting>>;
|
|
30633
|
+
spaceAlias?: Maybe<Scalars['String']['output']>;
|
|
30634
|
+
spaceId: Scalars['ID']['output'];
|
|
30635
|
+
spaceKey: Scalars['String']['output'];
|
|
30636
|
+
};
|
|
30541
30637
|
export declare type ConfluenceShareableLinkSpaceConfig = {
|
|
30542
30638
|
__typename?: 'ConfluenceShareableLinkSpaceConfig';
|
|
30543
30639
|
spaceConfigs?: Maybe<Array<Maybe<ConfluenceShareableLinkSpaceSetting>>>;
|
|
30544
30640
|
};
|
|
30641
|
+
export declare type ConfluenceShareableLinkSpaceConnection = {
|
|
30642
|
+
__typename?: 'ConfluenceShareableLinkSpaceConnection';
|
|
30643
|
+
nodes: Array<Maybe<ConfluenceShareableLinkSpace>>;
|
|
30644
|
+
pageInfo: ConfluenceShareableLinkPageInfo;
|
|
30645
|
+
};
|
|
30545
30646
|
export declare type ConfluenceShareableLinkSpaceSetting = {
|
|
30546
30647
|
__typename?: 'ConfluenceShareableLinkSpaceSetting';
|
|
30547
30648
|
accessType: ConfluenceShareableLinkAccessType;
|
|
@@ -30554,6 +30655,22 @@ export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
|
30554
30655
|
Off = "OFF",
|
|
30555
30656
|
On = "ON"
|
|
30556
30657
|
}
|
|
30658
|
+
export declare enum ConfluenceShareableLinkSpaceStatusFilter {
|
|
30659
|
+
ExternalBlockedByContainerPolicy = "EXTERNAL_BLOCKED_BY_CONTAINER_POLICY",
|
|
30660
|
+
ExternalBlockedByOrg = "EXTERNAL_BLOCKED_BY_ORG",
|
|
30661
|
+
ExternalBlockedByProduct = "EXTERNAL_BLOCKED_BY_PRODUCT",
|
|
30662
|
+
ExternalOff = "EXTERNAL_OFF",
|
|
30663
|
+
ExternalOn = "EXTERNAL_ON",
|
|
30664
|
+
InternalLicensedBlockedByContainerPolicy = "INTERNAL_LICENSED_BLOCKED_BY_CONTAINER_POLICY",
|
|
30665
|
+
InternalLicensedBlockedByOrg = "INTERNAL_LICENSED_BLOCKED_BY_ORG",
|
|
30666
|
+
InternalLicensedBlockedByProduct = "INTERNAL_LICENSED_BLOCKED_BY_PRODUCT",
|
|
30667
|
+
InternalLicensedOff = "INTERNAL_LICENSED_OFF",
|
|
30668
|
+
InternalLicensedOn = "INTERNAL_LICENSED_ON"
|
|
30669
|
+
}
|
|
30670
|
+
export declare enum ConfluenceShareableLinkSpacesByCriteriaOrder {
|
|
30671
|
+
ActiveLinks = "ACTIVE_LINKS",
|
|
30672
|
+
Name = "NAME"
|
|
30673
|
+
}
|
|
30557
30674
|
export declare type ConfluenceSiteConfiguration = {
|
|
30558
30675
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
30559
30676
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -30797,6 +30914,7 @@ export declare type ConfluenceSpacePermissionCombination = {
|
|
|
30797
30914
|
principalCount: Scalars['Long']['output'];
|
|
30798
30915
|
recommendation?: Maybe<ConfluencePermissionTransitionRecommendation>;
|
|
30799
30916
|
spaceCount: Scalars['Long']['output'];
|
|
30917
|
+
spacePermissions?: Maybe<Array<ConfluenceSpacePermission>>;
|
|
30800
30918
|
spaceRole?: Maybe<ConfluenceBasicSpaceRole>;
|
|
30801
30919
|
};
|
|
30802
30920
|
export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
@@ -33112,7 +33230,25 @@ export declare type ConvoAiAgentSessionCreate = {
|
|
|
33112
33230
|
export declare type ConvoAiAgentSessionNode = {
|
|
33113
33231
|
id?: Maybe<Scalars['ID']['output']>;
|
|
33114
33232
|
};
|
|
33233
|
+
export declare enum ConvoAiAgentSessionState {
|
|
33234
|
+
ArtefactReady = "ARTEFACT_READY",
|
|
33235
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
33236
|
+
Completed = "COMPLETED",
|
|
33237
|
+
Failed = "FAILED",
|
|
33238
|
+
InputRequired = "INPUT_REQUIRED",
|
|
33239
|
+
Rejected = "REJECTED",
|
|
33240
|
+
Unknown = "UNKNOWN",
|
|
33241
|
+
Working = "WORKING"
|
|
33242
|
+
}
|
|
33115
33243
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
33244
|
+
export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
33245
|
+
__typename?: 'ConvoAiAgentSessionUpdatedByProjects';
|
|
33246
|
+
agent?: Maybe<ConvoAiUser>;
|
|
33247
|
+
conversationId: Scalars['String']['output'];
|
|
33248
|
+
issueId: Scalars['String']['output'];
|
|
33249
|
+
projectId: Scalars['String']['output'];
|
|
33250
|
+
state: ConvoAiAgentSessionState;
|
|
33251
|
+
};
|
|
33116
33252
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
33117
33253
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
33118
33254
|
id: Scalars['ID']['output'];
|
|
@@ -33273,8 +33409,31 @@ export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
|
33273
33409
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
33274
33410
|
id: Scalars['ID']['output'];
|
|
33275
33411
|
similarityScore: Scalars['Float']['output'];
|
|
33412
|
+
sources?: Maybe<ConvoAiJiraSimilarWorkItemSuggestionSourceConnection>;
|
|
33276
33413
|
workItem?: Maybe<JiraIssue>;
|
|
33277
33414
|
};
|
|
33415
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourcesArgs = {
|
|
33416
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33417
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33418
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33419
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33420
|
+
};
|
|
33421
|
+
export declare enum ConvoAiJiraSimilarWorkItemSuggestionSource {
|
|
33422
|
+
Ers = "ERS",
|
|
33423
|
+
RecentlyCreated = "RECENTLY_CREATED",
|
|
33424
|
+
XpSearch = "XP_SEARCH"
|
|
33425
|
+
}
|
|
33426
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourceConnection = {
|
|
33427
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestionSourceConnection';
|
|
33428
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemSuggestionSourceEdge>>;
|
|
33429
|
+
pageInfo: PageInfo;
|
|
33430
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33431
|
+
};
|
|
33432
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourceEdge = {
|
|
33433
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestionSourceEdge';
|
|
33434
|
+
cursor: Scalars['String']['output'];
|
|
33435
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestionSource>;
|
|
33436
|
+
};
|
|
33278
33437
|
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
33279
33438
|
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
33280
33439
|
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
@@ -33499,6 +33658,7 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
33499
33658
|
};
|
|
33500
33659
|
export declare type CplsAtlasProject = {
|
|
33501
33660
|
__typename?: 'CplsAtlasProject';
|
|
33661
|
+
atlasProject?: Maybe<TownsquareProject>;
|
|
33502
33662
|
atlasProjectId: Scalars['ID']['output'];
|
|
33503
33663
|
};
|
|
33504
33664
|
export declare type CplsAtlasProjectConnection = HasPageInfo & {
|
|
@@ -34155,6 +34315,7 @@ export declare type CreateAppTunnelsInput = {
|
|
|
34155
34315
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
34156
34316
|
};
|
|
34157
34317
|
export declare type CreateAppVersionRolloutInput = {
|
|
34318
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
34158
34319
|
sourceVersionId: Scalars['ID']['input'];
|
|
34159
34320
|
targetVersionId: Scalars['ID']['input'];
|
|
34160
34321
|
};
|
|
@@ -34162,7 +34323,9 @@ export declare type CreateAppVersionRolloutPayload = Payload & {
|
|
|
34162
34323
|
__typename?: 'CreateAppVersionRolloutPayload';
|
|
34163
34324
|
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
34164
34325
|
errors?: Maybe<Array<MutationError>>;
|
|
34326
|
+
expectedRemainingUpgrades?: Maybe<Scalars['Int']['output']>;
|
|
34165
34327
|
success: Scalars['Boolean']['output'];
|
|
34328
|
+
totalEligibleUpgrades?: Maybe<Scalars['Int']['output']>;
|
|
34166
34329
|
};
|
|
34167
34330
|
export declare type CreateCardsOutput = {
|
|
34168
34331
|
__typename?: 'CreateCardsOutput';
|
|
@@ -37648,6 +37811,176 @@ export declare enum DevAiAutodevLogStatus {
|
|
|
37648
37811
|
Failed = "FAILED",
|
|
37649
37812
|
InProgress = "IN_PROGRESS"
|
|
37650
37813
|
}
|
|
37814
|
+
export declare type DevAiAutodevNextAddMembersInput = {
|
|
37815
|
+
cloudId: Scalars['ID']['input'];
|
|
37816
|
+
members: Array<DevAiAutodevNextMemberItemInput>;
|
|
37817
|
+
workstreamId: Scalars['ID']['input'];
|
|
37818
|
+
};
|
|
37819
|
+
export declare type DevAiAutodevNextAddMembersPayload = Payload & {
|
|
37820
|
+
__typename?: 'DevAiAutodevNextAddMembersPayload';
|
|
37821
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37822
|
+
members?: Maybe<Array<DevAiAutodevNextWorkstreamMember>>;
|
|
37823
|
+
success: Scalars['Boolean']['output'];
|
|
37824
|
+
};
|
|
37825
|
+
export declare type DevAiAutodevNextAddProjectsInput = {
|
|
37826
|
+
cloudId: Scalars['ID']['input'];
|
|
37827
|
+
projects: Array<DevAiAutodevNextProjectItemInput>;
|
|
37828
|
+
workstreamId: Scalars['ID']['input'];
|
|
37829
|
+
};
|
|
37830
|
+
export declare type DevAiAutodevNextAddProjectsPayload = Payload & {
|
|
37831
|
+
__typename?: 'DevAiAutodevNextAddProjectsPayload';
|
|
37832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37833
|
+
projects?: Maybe<Array<DevAiAutodevNextProject>>;
|
|
37834
|
+
success: Scalars['Boolean']['output'];
|
|
37835
|
+
};
|
|
37836
|
+
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
37837
|
+
cloudId: Scalars['ID']['input'];
|
|
37838
|
+
members?: InputMaybe<Array<DevAiAutodevNextMemberItemInput>>;
|
|
37839
|
+
name: Scalars['String']['input'];
|
|
37840
|
+
projects?: InputMaybe<Array<DevAiAutodevNextProjectItemInput>>;
|
|
37841
|
+
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
37842
|
+
};
|
|
37843
|
+
export declare type DevAiAutodevNextCreateWorkstreamPayload = Payload & {
|
|
37844
|
+
__typename?: 'DevAiAutodevNextCreateWorkstreamPayload';
|
|
37845
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37846
|
+
success: Scalars['Boolean']['output'];
|
|
37847
|
+
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
37848
|
+
};
|
|
37849
|
+
export declare type DevAiAutodevNextDeleteWorkstreamInput = {
|
|
37850
|
+
cloudId: Scalars['ID']['input'];
|
|
37851
|
+
workstreamId: Scalars['ID']['input'];
|
|
37852
|
+
};
|
|
37853
|
+
export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
37854
|
+
__typename?: 'DevAiAutodevNextDeleteWorkstreamPayload';
|
|
37855
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37856
|
+
success: Scalars['Boolean']['output'];
|
|
37857
|
+
};
|
|
37858
|
+
export declare type DevAiAutodevNextMemberConnection = {
|
|
37859
|
+
__typename?: 'DevAiAutodevNextMemberConnection';
|
|
37860
|
+
edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
|
|
37861
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkstreamMember>>;
|
|
37862
|
+
pageInfo: PageInfo;
|
|
37863
|
+
};
|
|
37864
|
+
export declare type DevAiAutodevNextMemberEdge = {
|
|
37865
|
+
__typename?: 'DevAiAutodevNextMemberEdge';
|
|
37866
|
+
cursor: Scalars['String']['output'];
|
|
37867
|
+
node: DevAiAutodevNextWorkstreamMember;
|
|
37868
|
+
};
|
|
37869
|
+
export declare type DevAiAutodevNextMemberItemInput = {
|
|
37870
|
+
role: DevAiAutodevNextWorkstreamMemberRole;
|
|
37871
|
+
userId: Scalars['ID']['input'];
|
|
37872
|
+
};
|
|
37873
|
+
export declare type DevAiAutodevNextProject = {
|
|
37874
|
+
__typename?: 'DevAiAutodevNextProject';
|
|
37875
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37876
|
+
id: Scalars['ID']['output'];
|
|
37877
|
+
jiraProjectKey?: Maybe<Scalars['String']['output']>;
|
|
37878
|
+
projectAri: Scalars['ID']['output'];
|
|
37879
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37880
|
+
workspaceId: Scalars['ID']['output'];
|
|
37881
|
+
workstreamId: Scalars['ID']['output'];
|
|
37882
|
+
};
|
|
37883
|
+
export declare type DevAiAutodevNextProjectConnection = {
|
|
37884
|
+
__typename?: 'DevAiAutodevNextProjectConnection';
|
|
37885
|
+
edges?: Maybe<Array<DevAiAutodevNextProjectEdge>>;
|
|
37886
|
+
nodes?: Maybe<Array<DevAiAutodevNextProject>>;
|
|
37887
|
+
pageInfo: PageInfo;
|
|
37888
|
+
};
|
|
37889
|
+
export declare type DevAiAutodevNextProjectEdge = {
|
|
37890
|
+
__typename?: 'DevAiAutodevNextProjectEdge';
|
|
37891
|
+
cursor: Scalars['String']['output'];
|
|
37892
|
+
node: DevAiAutodevNextProject;
|
|
37893
|
+
};
|
|
37894
|
+
export declare type DevAiAutodevNextProjectItemInput = {
|
|
37895
|
+
jiraProjectKey: Scalars['String']['input'];
|
|
37896
|
+
projectAri: Scalars['ID']['input'];
|
|
37897
|
+
};
|
|
37898
|
+
export declare type DevAiAutodevNextRemoveMembersInput = {
|
|
37899
|
+
cloudId: Scalars['ID']['input'];
|
|
37900
|
+
userIds: Array<Scalars['ID']['input']>;
|
|
37901
|
+
workstreamId: Scalars['ID']['input'];
|
|
37902
|
+
};
|
|
37903
|
+
export declare type DevAiAutodevNextRemoveMembersPayload = Payload & {
|
|
37904
|
+
__typename?: 'DevAiAutodevNextRemoveMembersPayload';
|
|
37905
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37906
|
+
success: Scalars['Boolean']['output'];
|
|
37907
|
+
};
|
|
37908
|
+
export declare type DevAiAutodevNextRemoveProjectsInput = {
|
|
37909
|
+
cloudId: Scalars['ID']['input'];
|
|
37910
|
+
projectArids: Array<Scalars['ID']['input']>;
|
|
37911
|
+
workstreamId: Scalars['ID']['input'];
|
|
37912
|
+
};
|
|
37913
|
+
export declare type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
37914
|
+
__typename?: 'DevAiAutodevNextRemoveProjectsPayload';
|
|
37915
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37916
|
+
success: Scalars['Boolean']['output'];
|
|
37917
|
+
};
|
|
37918
|
+
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
37919
|
+
cloudId: Scalars['ID']['input'];
|
|
37920
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
37921
|
+
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
37922
|
+
workstreamId: Scalars['ID']['input'];
|
|
37923
|
+
};
|
|
37924
|
+
export declare type DevAiAutodevNextUpdateWorkstreamPayload = Payload & {
|
|
37925
|
+
__typename?: 'DevAiAutodevNextUpdateWorkstreamPayload';
|
|
37926
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37927
|
+
success: Scalars['Boolean']['output'];
|
|
37928
|
+
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
37929
|
+
};
|
|
37930
|
+
export declare type DevAiAutodevNextWorkstream = {
|
|
37931
|
+
__typename?: 'DevAiAutodevNextWorkstream';
|
|
37932
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37933
|
+
id: Scalars['ID']['output'];
|
|
37934
|
+
members?: Maybe<DevAiAutodevNextMemberConnection>;
|
|
37935
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
37936
|
+
projects?: Maybe<DevAiAutodevNextProjectConnection>;
|
|
37937
|
+
settings?: Maybe<DevAiAutodevNextWorkstreamSettings>;
|
|
37938
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37939
|
+
workspaceId: Scalars['ID']['output'];
|
|
37940
|
+
};
|
|
37941
|
+
export declare type DevAiAutodevNextWorkstreamMembersArgs = {
|
|
37942
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37944
|
+
};
|
|
37945
|
+
export declare type DevAiAutodevNextWorkstreamProjectsArgs = {
|
|
37946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37947
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37948
|
+
};
|
|
37949
|
+
export declare type DevAiAutodevNextWorkstreamConnection = {
|
|
37950
|
+
__typename?: 'DevAiAutodevNextWorkstreamConnection';
|
|
37951
|
+
edges?: Maybe<Array<DevAiAutodevNextWorkstreamEdge>>;
|
|
37952
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkstream>>;
|
|
37953
|
+
pageInfo: PageInfo;
|
|
37954
|
+
};
|
|
37955
|
+
export declare type DevAiAutodevNextWorkstreamEdge = {
|
|
37956
|
+
__typename?: 'DevAiAutodevNextWorkstreamEdge';
|
|
37957
|
+
cursor: Scalars['String']['output'];
|
|
37958
|
+
node: DevAiAutodevNextWorkstream;
|
|
37959
|
+
};
|
|
37960
|
+
export declare type DevAiAutodevNextWorkstreamMember = {
|
|
37961
|
+
__typename?: 'DevAiAutodevNextWorkstreamMember';
|
|
37962
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37963
|
+
id: Scalars['ID']['output'];
|
|
37964
|
+
role: DevAiAutodevNextWorkstreamMemberRole;
|
|
37965
|
+
userId: Scalars['ID']['output'];
|
|
37966
|
+
workspaceId: Scalars['ID']['output'];
|
|
37967
|
+
workstreamId: Scalars['ID']['output'];
|
|
37968
|
+
};
|
|
37969
|
+
export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
37970
|
+
Member = "MEMBER",
|
|
37971
|
+
Owner = "OWNER"
|
|
37972
|
+
}
|
|
37973
|
+
export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
37974
|
+
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
37975
|
+
defaultJiraProjectKey?: Maybe<Scalars['String']['output']>;
|
|
37976
|
+
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
37977
|
+
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
37978
|
+
};
|
|
37979
|
+
export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
37980
|
+
defaultJiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
37981
|
+
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
37982
|
+
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
37983
|
+
};
|
|
37651
37984
|
export declare type DevAiAutofixConfiguration = {
|
|
37652
37985
|
__typename?: 'DevAiAutofixConfiguration';
|
|
37653
37986
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -37798,6 +38131,7 @@ export declare type DevAiCancelRunningAutofixScanInput = {
|
|
|
37798
38131
|
export declare type DevAiClientConfig = {
|
|
37799
38132
|
__typename?: 'DevAiClientConfig';
|
|
37800
38133
|
availableModels: Array<DevAiAvailableModel>;
|
|
38134
|
+
defaultModelId?: Maybe<Scalars['String']['output']>;
|
|
37801
38135
|
enableDynamicModelPricing: Scalars['Boolean']['output'];
|
|
37802
38136
|
};
|
|
37803
38137
|
export declare type DevAiContainerConfig = {
|
|
@@ -38150,6 +38484,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
38150
38484
|
cloudId: Scalars['ID']['input'];
|
|
38151
38485
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
38152
38486
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
38487
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
38153
38488
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
38154
38489
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
38155
38490
|
repository: DevAiRovoDevRepositoryInput;
|
|
@@ -38161,6 +38496,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
38161
38496
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
38162
38497
|
linkConversationId?: InputMaybe<Scalars['String']['input']>;
|
|
38163
38498
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
38499
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
38164
38500
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
38165
38501
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
38166
38502
|
repository: DevAiRovoDevRepositoryInput;
|
|
@@ -40814,7 +41150,6 @@ export declare type EcosystemMutation = {
|
|
|
40814
41150
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
40815
41151
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
40816
41152
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
40817
|
-
publishGlobalRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
40818
41153
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
40819
41154
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
40820
41155
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -40853,12 +41188,6 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
40853
41188
|
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
40854
41189
|
appId: Scalars['ID']['input'];
|
|
40855
41190
|
};
|
|
40856
|
-
export declare type EcosystemMutationPublishGlobalRealtimeChannelArgs = {
|
|
40857
|
-
installationId: Scalars['ID']['input'];
|
|
40858
|
-
name: Scalars['String']['input'];
|
|
40859
|
-
payload: Scalars['String']['input'];
|
|
40860
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
40861
|
-
};
|
|
40862
41191
|
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
40863
41192
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
40864
41193
|
installationId: Scalars['ID']['input'];
|
|
@@ -41027,14 +41356,8 @@ export declare enum EcosystemRequiredProduct {
|
|
|
41027
41356
|
}
|
|
41028
41357
|
export declare type EcosystemSubscription = {
|
|
41029
41358
|
__typename?: 'EcosystemSubscription';
|
|
41030
|
-
globalRealtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
41031
41359
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
41032
41360
|
};
|
|
41033
|
-
export declare type EcosystemSubscriptionGlobalRealtimeChannelArgs = {
|
|
41034
|
-
installationId: Scalars['ID']['input'];
|
|
41035
|
-
name: Scalars['String']['input'];
|
|
41036
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
41037
|
-
};
|
|
41038
41361
|
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
41039
41362
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
41040
41363
|
installationId: Scalars['ID']['input'];
|
|
@@ -45857,6 +46180,7 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
45857
46180
|
};
|
|
45858
46181
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
45859
46182
|
Action = "ACTION",
|
|
46183
|
+
CustomSkill = "CUSTOM_SKILL",
|
|
45860
46184
|
McpServer = "MCP_SERVER",
|
|
45861
46185
|
McpTool = "MCP_TOOL",
|
|
45862
46186
|
PlatformSkill = "PLATFORM_SKILL",
|
|
@@ -45891,6 +46215,23 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
45891
46215
|
serverUrl: Scalars['String']['output'];
|
|
45892
46216
|
templateId: Scalars['String']['output'];
|
|
45893
46217
|
};
|
|
46218
|
+
export declare type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
46219
|
+
key: Scalars['String']['input'];
|
|
46220
|
+
value: Scalars['String']['input'];
|
|
46221
|
+
};
|
|
46222
|
+
export declare type GraphIntegrationMcpAdminManagementExtraInputOption = {
|
|
46223
|
+
__typename?: 'GraphIntegrationMcpAdminManagementExtraInputOption';
|
|
46224
|
+
label: Scalars['String']['output'];
|
|
46225
|
+
value: Scalars['String']['output'];
|
|
46226
|
+
};
|
|
46227
|
+
export declare enum GraphIntegrationMcpAdminManagementExtraInputType {
|
|
46228
|
+
Select = "SELECT",
|
|
46229
|
+
TextField = "TEXT_FIELD"
|
|
46230
|
+
}
|
|
46231
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
|
|
46232
|
+
Customer = "CUSTOMER",
|
|
46233
|
+
Global = "GLOBAL"
|
|
46234
|
+
}
|
|
45894
46235
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
45895
46236
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
45896
46237
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
@@ -45908,7 +46249,9 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerExtraInput = {
|
|
|
45908
46249
|
description?: Maybe<Scalars['String']['output']>;
|
|
45909
46250
|
displayName: Scalars['String']['output'];
|
|
45910
46251
|
key: Scalars['String']['output'];
|
|
46252
|
+
options?: Maybe<Array<GraphIntegrationMcpAdminManagementExtraInputOption>>;
|
|
45911
46253
|
required: Scalars['Boolean']['output'];
|
|
46254
|
+
type: GraphIntegrationMcpAdminManagementExtraInputType;
|
|
45912
46255
|
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
45913
46256
|
};
|
|
45914
46257
|
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
@@ -45926,6 +46269,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
45926
46269
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
45927
46270
|
id: Scalars['ID']['output'];
|
|
45928
46271
|
productAri?: Maybe<Scalars['String']['output']>;
|
|
46272
|
+
registrationSource: GraphIntegrationMcpAdminManagementMcpRegistrationSource;
|
|
45929
46273
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
45930
46274
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
45931
46275
|
};
|
|
@@ -45982,11 +46326,12 @@ export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
|
45982
46326
|
cloudId: Scalars['ID']['input'];
|
|
45983
46327
|
displayName: Scalars['String']['input'];
|
|
45984
46328
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
46329
|
+
extraInputs?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
45985
46330
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
45986
46331
|
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
45987
46332
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
45988
46333
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
45989
|
-
url
|
|
46334
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
45990
46335
|
};
|
|
45991
46336
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
45992
46337
|
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
@@ -46178,6 +46523,8 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
46178
46523
|
};
|
|
46179
46524
|
export declare type GraphIntegrationSkillMetadata = {
|
|
46180
46525
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
46526
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
46527
|
+
createdBy?: Maybe<User>;
|
|
46181
46528
|
tags: Array<Scalars['String']['output']>;
|
|
46182
46529
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46183
46530
|
version: Scalars['String']['output'];
|
|
@@ -49115,6 +49462,8 @@ export declare type GraphStore = {
|
|
|
49115
49462
|
commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
|
|
49116
49463
|
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
49117
49464
|
commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
|
|
49465
|
+
compassComponentLinkLinksEntity?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection>;
|
|
49466
|
+
compassComponentLinkLinksEntityInverse?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection>;
|
|
49118
49467
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
49119
49468
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
49120
49469
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -51295,6 +51644,22 @@ export declare type GraphStoreCommitInRepoInverseArgs = {
|
|
|
51295
51644
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51296
51645
|
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
51297
51646
|
};
|
|
51647
|
+
export declare type GraphStoreCompassComponentLinkLinksEntityArgs = {
|
|
51648
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51649
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51650
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51651
|
+
id: Scalars['ID']['input'];
|
|
51652
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51653
|
+
sort?: InputMaybe<GraphStoreCompassComponentLinkLinksEntitySortInput>;
|
|
51654
|
+
};
|
|
51655
|
+
export declare type GraphStoreCompassComponentLinkLinksEntityInverseArgs = {
|
|
51656
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51657
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51658
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51659
|
+
id: Scalars['ID']['input'];
|
|
51660
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51661
|
+
sort?: InputMaybe<GraphStoreCompassComponentLinkLinksEntitySortInput>;
|
|
51662
|
+
};
|
|
51298
51663
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
51299
51664
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51300
51665
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60594,6 +60959,9 @@ export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
|
|
|
60594
60959
|
export declare type GraphStoreCommitInRepoSortInput = {
|
|
60595
60960
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60596
60961
|
};
|
|
60962
|
+
export declare type GraphStoreCompassComponentLinkLinksEntitySortInput = {
|
|
60963
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60964
|
+
};
|
|
60597
60965
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
60598
60966
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60599
60967
|
};
|
|
@@ -68843,6 +69211,34 @@ export declare type GraphStoreSimplifiedCommitInRepoInverseEdge = {
|
|
|
68843
69211
|
};
|
|
68844
69212
|
export declare type GraphStoreSimplifiedCommitInRepoInverseUnion = ExternalCommit;
|
|
68845
69213
|
export declare type GraphStoreSimplifiedCommitInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
69214
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection = HasPageInfo & {
|
|
69215
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection';
|
|
69216
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge>>>;
|
|
69217
|
+
pageInfo: PageInfo;
|
|
69218
|
+
};
|
|
69219
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge = {
|
|
69220
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge';
|
|
69221
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69222
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69223
|
+
id: Scalars['ID']['output'];
|
|
69224
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69225
|
+
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion>;
|
|
69226
|
+
};
|
|
69227
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection = HasPageInfo & {
|
|
69228
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection';
|
|
69229
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge>>>;
|
|
69230
|
+
pageInfo: PageInfo;
|
|
69231
|
+
};
|
|
69232
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge = {
|
|
69233
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge';
|
|
69234
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69235
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69236
|
+
id: Scalars['ID']['output'];
|
|
69237
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69238
|
+
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
69239
|
+
};
|
|
69240
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
69241
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68846
69242
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
68847
69243
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
68848
69244
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -80533,6 +80929,8 @@ export declare type GraphStoreV2 = {
|
|
|
80533
80929
|
compassComponentHasCompassComponentLinkInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkInverseConnection>;
|
|
80534
80930
|
compassComponentLinkIsJiraSpace?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceConnection>;
|
|
80535
80931
|
compassComponentLinkIsJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverseConnection>;
|
|
80932
|
+
compassComponentLinkLinksEntity?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection>;
|
|
80933
|
+
compassComponentLinkLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection>;
|
|
80536
80934
|
compassScorecardHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection>;
|
|
80537
80935
|
compassScorecardHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalInverseConnection>;
|
|
80538
80936
|
confluenceBlogpostHasConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluenceBlogpostHasConfluenceCommentConnection>;
|
|
@@ -82951,6 +83349,20 @@ export declare type GraphStoreV2CompassComponentLinkIsJiraSpaceInverseArgs = {
|
|
|
82951
83349
|
id: Scalars['ID']['input'];
|
|
82952
83350
|
sort?: InputMaybe<GraphStoreV2CompassComponentLinkIsJiraSpaceSortInput>;
|
|
82953
83351
|
};
|
|
83352
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntityArgs = {
|
|
83353
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83354
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83356
|
+
id: Scalars['ID']['input'];
|
|
83357
|
+
sort?: InputMaybe<GraphStoreV2CompassComponentLinkLinksEntitySortInput>;
|
|
83358
|
+
};
|
|
83359
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntityInverseArgs = {
|
|
83360
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83361
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83362
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83363
|
+
id: Scalars['ID']['input'];
|
|
83364
|
+
sort?: InputMaybe<GraphStoreV2CompassComponentLinkLinksEntitySortInput>;
|
|
83365
|
+
};
|
|
82954
83366
|
export declare type GraphStoreV2CompassScorecardHasAtlassianGoalArgs = {
|
|
82955
83367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82956
83368
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87218,6 +87630,9 @@ export declare type GraphStoreV2CompassComponentHasCompassComponentLinkSortInput
|
|
|
87218
87630
|
export declare type GraphStoreV2CompassComponentLinkIsJiraSpaceSortInput = {
|
|
87219
87631
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87220
87632
|
};
|
|
87633
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntitySortInput = {
|
|
87634
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87635
|
+
};
|
|
87221
87636
|
export declare type GraphStoreV2CompassScorecardHasAtlassianGoalSortInput = {
|
|
87222
87637
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87223
87638
|
};
|
|
@@ -94085,6 +94500,34 @@ export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverse
|
|
|
94085
94500
|
};
|
|
94086
94501
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverseUnion = CompassLinkNode;
|
|
94087
94502
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceUnion = JiraProject;
|
|
94503
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection = HasPageInfo & {
|
|
94504
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection';
|
|
94505
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge>>>;
|
|
94506
|
+
pageInfo: PageInfo;
|
|
94507
|
+
};
|
|
94508
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge = {
|
|
94509
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge';
|
|
94510
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94511
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94512
|
+
id: Scalars['ID']['output'];
|
|
94513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94514
|
+
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion>;
|
|
94515
|
+
};
|
|
94516
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection = HasPageInfo & {
|
|
94517
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection';
|
|
94518
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge>>>;
|
|
94519
|
+
pageInfo: PageInfo;
|
|
94520
|
+
};
|
|
94521
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge = {
|
|
94522
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge';
|
|
94523
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94524
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94525
|
+
id: Scalars['ID']['output'];
|
|
94526
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94527
|
+
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
94528
|
+
};
|
|
94529
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
94530
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94088
94531
|
export declare type GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection = HasPageInfo & {
|
|
94089
94532
|
__typename?: 'GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection';
|
|
94090
94533
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalEdge>>>;
|
|
@@ -101830,6 +102273,7 @@ export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
|
101830
102273
|
export declare type GravityCreateViewFromUserPromptInput = {
|
|
101831
102274
|
projectId: Scalars['ID']['input'];
|
|
101832
102275
|
prompt: Scalars['String']['input'];
|
|
102276
|
+
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
101833
102277
|
};
|
|
101834
102278
|
export declare type GravityCreateViewFromUserPromptPayload = Payload & {
|
|
101835
102279
|
__typename?: 'GravityCreateViewFromUserPromptPayload';
|
|
@@ -105569,6 +106013,7 @@ export declare type InfluentsNotificationMutationArchiveAllNotificationsArgs = {
|
|
|
105569
106013
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105570
106014
|
};
|
|
105571
106015
|
export declare type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
106016
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105572
106017
|
ids: Array<Scalars['String']['input']>;
|
|
105573
106018
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105574
106019
|
};
|
|
@@ -105578,6 +106023,7 @@ export declare type InfluentsNotificationMutationArchiveNotificationsByGroupIdAr
|
|
|
105578
106023
|
groupId: Scalars['String']['input'];
|
|
105579
106024
|
};
|
|
105580
106025
|
export declare type InfluentsNotificationMutationClearUnseenCountArgs = {
|
|
106026
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105581
106027
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
105582
106028
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105583
106029
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105586,6 +106032,7 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
105586
106032
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105587
106033
|
beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
105588
106034
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106035
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105589
106036
|
excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105590
106037
|
includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105591
106038
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105595,20 +106042,24 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
105595
106042
|
export declare type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
105596
106043
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105597
106044
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106045
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105598
106046
|
groupId: Scalars['String']['input'];
|
|
105599
106047
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105600
106048
|
};
|
|
105601
106049
|
export declare type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
105602
106050
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105603
106051
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106052
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105604
106053
|
groupId: Scalars['String']['input'];
|
|
105605
106054
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105606
106055
|
};
|
|
105607
106056
|
export declare type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
106057
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105608
106058
|
ids: Array<Scalars['String']['input']>;
|
|
105609
106059
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105610
106060
|
};
|
|
105611
106061
|
export declare type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
106062
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105612
106063
|
ids: Array<Scalars['String']['input']>;
|
|
105613
106064
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105614
106065
|
};
|
|
@@ -105633,12 +106084,14 @@ export declare type InfluentsNotificationQuery = {
|
|
|
105633
106084
|
unseenNotificationCount: Scalars['Int']['output'];
|
|
105634
106085
|
};
|
|
105635
106086
|
export declare type InfluentsNotificationQueryAvailableActorsArgs = {
|
|
106087
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105636
106088
|
filter?: InputMaybe<InfluentsNotificationActorFilter>;
|
|
105637
106089
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105638
106090
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105639
106091
|
};
|
|
105640
106092
|
export declare type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
105641
106093
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
106094
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105642
106095
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
105643
106096
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105644
106097
|
flat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -105646,12 +106099,14 @@ export declare type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
|
105646
106099
|
};
|
|
105647
106100
|
export declare type InfluentsNotificationQueryNotificationGroupArgs = {
|
|
105648
106101
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
106102
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105649
106103
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
105650
106104
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105651
106105
|
groupId: Scalars['String']['input'];
|
|
105652
106106
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105653
106107
|
};
|
|
105654
106108
|
export declare type InfluentsNotificationQueryUnseenNotificationCountArgs = {
|
|
106109
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105655
106110
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
105656
106111
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105657
106112
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105900,8 +106355,9 @@ export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
|
105900
106355
|
version?: Maybe<Scalars['String']['output']>;
|
|
105901
106356
|
};
|
|
105902
106357
|
export declare enum InstallationTarget {
|
|
105903
|
-
Site = "
|
|
105904
|
-
Unit = "
|
|
106358
|
+
Site = "site",
|
|
106359
|
+
Unit = "unit",
|
|
106360
|
+
User = "user"
|
|
105905
106361
|
}
|
|
105906
106362
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
105907
106363
|
types: Array<AppEnvironmentType>;
|
|
@@ -113086,9 +113542,15 @@ export declare type JiraFieldSetPreferencesMutationInput = {
|
|
|
113086
113542
|
export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
113087
113543
|
__typename?: 'JiraFieldSetPreferencesUpdatePayload';
|
|
113088
113544
|
errors?: Maybe<Array<MutationError>>;
|
|
113545
|
+
fieldSetView?: Maybe<JiraFieldSetViewResult>;
|
|
113089
113546
|
success: Scalars['Boolean']['output'];
|
|
113090
113547
|
view?: Maybe<JiraView>;
|
|
113091
113548
|
};
|
|
113549
|
+
export declare type JiraFieldSetPreferencesUpdatePayloadFieldSetViewArgs = {
|
|
113550
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
113551
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
113552
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
113553
|
+
};
|
|
113092
113554
|
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
113093
113555
|
__typename?: 'JiraFieldSetView';
|
|
113094
113556
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -114742,6 +115204,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114742
115204
|
defaultAssignee?: Maybe<User>;
|
|
114743
115205
|
delegator?: Maybe<User>;
|
|
114744
115206
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
115207
|
+
deployments?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalDeploymentConnection>;
|
|
114745
115208
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
114746
115209
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
114747
115210
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -114758,6 +115221,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114758
115221
|
estimationForView?: Maybe<JiraEstimationValue>;
|
|
114759
115222
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
114760
115223
|
extraFieldsForView?: Maybe<JiraExtraFieldForViewConnection>;
|
|
115224
|
+
featureFlags?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalFeatureFlagConnection>;
|
|
114761
115225
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
114762
115226
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
114763
115227
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -114843,6 +115307,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
114843
115307
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
114844
115308
|
redactedFields?: Maybe<JiraFieldConnection>;
|
|
114845
115309
|
redactions?: Maybe<JiraRedactionConnection>;
|
|
115310
|
+
remoteLinks?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalRemoteLinkConnection>;
|
|
114846
115311
|
reporter?: Maybe<User>;
|
|
114847
115312
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
114848
115313
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -114993,6 +115458,14 @@ export declare type JiraIssueCreateBranchTargetsArgs = {
|
|
|
114993
115458
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114994
115459
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
114995
115460
|
};
|
|
115461
|
+
export declare type JiraIssueDeploymentsArgs = {
|
|
115462
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115463
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115464
|
+
filter?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalDeploymentFilterInput>;
|
|
115465
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115466
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
115467
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalDeploymentSortInput>;
|
|
115468
|
+
};
|
|
114996
115469
|
export declare type JiraIssueDesignsArgs = {
|
|
114997
115470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
114998
115471
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -115009,6 +115482,13 @@ export declare type JiraIssueExtraFieldsForViewArgs = {
|
|
|
115009
115482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115010
115483
|
view: JiraViewQueryInput;
|
|
115011
115484
|
};
|
|
115485
|
+
export declare type JiraIssueFeatureFlagsArgs = {
|
|
115486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115487
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115489
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
115490
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalFeatureFlagSortInput>;
|
|
115491
|
+
};
|
|
115012
115492
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
115013
115493
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
115014
115494
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -115173,6 +115653,13 @@ export declare type JiraIssueRedactionsArgs = {
|
|
|
115173
115653
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
115174
115654
|
sortBy?: InputMaybe<JiraRedactionSortInput>;
|
|
115175
115655
|
};
|
|
115656
|
+
export declare type JiraIssueRemoteLinksArgs = {
|
|
115657
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115658
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115659
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115660
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
115661
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalRemoteLinkSortInput>;
|
|
115662
|
+
};
|
|
115176
115663
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
115177
115664
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115178
115665
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -117821,6 +118308,7 @@ export declare type JiraJqlBuilder = {
|
|
|
117821
118308
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
117822
118309
|
functions: Array<JiraJqlFunction>;
|
|
117823
118310
|
hydrateJqlQuery?: Maybe<JiraJqlHydratedQueryResult>;
|
|
118311
|
+
hydrateJqlQueryFieldsOnly?: Maybe<JiraJqlHydratedQueryFieldsOnlyResult>;
|
|
117824
118312
|
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
117825
118313
|
issueTypes?: Maybe<JiraJqlIssueTypes>;
|
|
117826
118314
|
myFilterFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -117868,6 +118356,11 @@ export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
|
117868
118356
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
117869
118357
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
117870
118358
|
};
|
|
118359
|
+
export declare type JiraJqlBuilderHydrateJqlQueryFieldsOnlyArgs = {
|
|
118360
|
+
input?: InputMaybe<JiraHydrateJqlInput>;
|
|
118361
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118362
|
+
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
118363
|
+
};
|
|
117871
118364
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
117872
118365
|
id: Scalars['ID']['input'];
|
|
117873
118366
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
@@ -118091,6 +118584,12 @@ export declare type JiraJqlHydratedQuery = {
|
|
|
118091
118584
|
fields: Array<JiraJqlQueryHydratedFieldResult>;
|
|
118092
118585
|
jql?: Maybe<Scalars['String']['output']>;
|
|
118093
118586
|
};
|
|
118587
|
+
export declare type JiraJqlHydratedQueryFieldsOnly = {
|
|
118588
|
+
__typename?: 'JiraJqlHydratedQueryFieldsOnly';
|
|
118589
|
+
fields: Array<JiraJqlQueryHydratedFieldsOnlyResult>;
|
|
118590
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
118591
|
+
};
|
|
118592
|
+
export declare type JiraJqlHydratedQueryFieldsOnlyResult = JiraJqlHydratedQueryFieldsOnly | QueryError;
|
|
118094
118593
|
export declare type JiraJqlHydratedQueryResult = JiraJqlHydratedQuery | QueryError;
|
|
118095
118594
|
export declare type JiraJqlIssueFieldValue = JiraJqlFieldValue & {
|
|
118096
118595
|
__typename?: 'JiraJqlIssueFieldValue';
|
|
@@ -118250,7 +118749,14 @@ export declare type JiraJqlQueryHydratedField = {
|
|
|
118250
118749
|
jqlTerm: Scalars['String']['output'];
|
|
118251
118750
|
values: Array<Maybe<JiraJqlQueryHydratedValueResult>>;
|
|
118252
118751
|
};
|
|
118752
|
+
export declare type JiraJqlQueryHydratedFieldOnly = {
|
|
118753
|
+
__typename?: 'JiraJqlQueryHydratedFieldOnly';
|
|
118754
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
118755
|
+
field: JiraJqlField;
|
|
118756
|
+
jqlTerm: Scalars['String']['output'];
|
|
118757
|
+
};
|
|
118253
118758
|
export declare type JiraJqlQueryHydratedFieldResult = JiraJqlQueryHydratedError | JiraJqlQueryHydratedField;
|
|
118759
|
+
export declare type JiraJqlQueryHydratedFieldsOnlyResult = JiraJqlQueryHydratedError | JiraJqlQueryHydratedFieldOnly;
|
|
118254
118760
|
export declare type JiraJqlQueryHydratedValue = {
|
|
118255
118761
|
__typename?: 'JiraJqlQueryHydratedValue';
|
|
118256
118762
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -124245,6 +124751,7 @@ export declare type JiraQueryLinkedIssuesArgs = {
|
|
|
124245
124751
|
cloudId: Scalars['ID']['input'];
|
|
124246
124752
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124247
124753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124754
|
+
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124248
124755
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124249
124756
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124250
124757
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -124255,6 +124762,7 @@ export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
|
124255
124762
|
cloudId: Scalars['ID']['input'];
|
|
124256
124763
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124257
124764
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124765
|
+
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124258
124766
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124259
124767
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124260
124768
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -128724,6 +129232,8 @@ export declare type JiraSubscription = {
|
|
|
128724
129232
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
128725
129233
|
onIssueMutatedByIssueIdFromDiffUserNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
128726
129234
|
onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129235
|
+
onIssueMutatedByProjectNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129236
|
+
onIssueMutatedByProjectsNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
128727
129237
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
128728
129238
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
128729
129239
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
@@ -128842,6 +129352,14 @@ export declare type JiraSubscriptionOnIssueMutatedByIssueIdFromDiffUserNoEnrichm
|
|
|
128842
129352
|
export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
|
|
128843
129353
|
issueId: Scalars['ID']['input'];
|
|
128844
129354
|
};
|
|
129355
|
+
export declare type JiraSubscriptionOnIssueMutatedByProjectNoEnrichmentArgs = {
|
|
129356
|
+
cloudId: Scalars['ID']['input'];
|
|
129357
|
+
projectId: Scalars['String']['input'];
|
|
129358
|
+
};
|
|
129359
|
+
export declare type JiraSubscriptionOnIssueMutatedByProjectsNoEnrichmentArgs = {
|
|
129360
|
+
cloudId: Scalars['ID']['input'];
|
|
129361
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
129362
|
+
};
|
|
128845
129363
|
export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
128846
129364
|
cloudId: Scalars['ID']['input'];
|
|
128847
129365
|
projectId: Scalars['String']['input'];
|
|
@@ -133974,6 +134492,7 @@ export declare type KeyValueHierarchyMap = {
|
|
|
133974
134492
|
export declare type KitsuneChunk = Node & {
|
|
133975
134493
|
__typename?: 'KitsuneChunk';
|
|
133976
134494
|
content?: Maybe<Scalars['String']['output']>;
|
|
134495
|
+
feedbackId: Scalars['ID']['output'];
|
|
133977
134496
|
id: Scalars['ID']['output'];
|
|
133978
134497
|
};
|
|
133979
134498
|
export declare type KitsuneChunkConnection = KitsuneConnection & {
|
|
@@ -134120,15 +134639,21 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
134120
134639
|
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
134121
134640
|
content: Scalars['KitsuneADF']['output'];
|
|
134122
134641
|
createdAt: Scalars['DateTime']['output'];
|
|
134642
|
+
feedbackAri: Scalars['ID']['output'];
|
|
134123
134643
|
id: Scalars['ID']['output'];
|
|
134124
134644
|
source?: Maybe<KitsuneSource>;
|
|
134125
|
-
|
|
134645
|
+
spaceAri: Scalars['ID']['output'];
|
|
134646
|
+
spaceId: Scalars['String']['output'];
|
|
134126
134647
|
summary?: Maybe<KitsuneSummary>;
|
|
134127
134648
|
tenantId: Scalars['ID']['output'];
|
|
134128
134649
|
title?: Maybe<Scalars['String']['output']>;
|
|
134129
134650
|
type: KitsuneFeedbackType;
|
|
134130
134651
|
updatedAt: Scalars['DateTime']['output'];
|
|
134131
134652
|
};
|
|
134653
|
+
export declare type KitsuneFeedbackHighlights = {
|
|
134654
|
+
__typename?: 'KitsuneFeedbackHighlights';
|
|
134655
|
+
content: Array<KitsuneHighlightFragment>;
|
|
134656
|
+
};
|
|
134132
134657
|
export declare enum KitsuneFeedbackType {
|
|
134133
134658
|
Call = "CALL",
|
|
134134
134659
|
Conversation = "CONVERSATION",
|
|
@@ -134185,6 +134710,10 @@ export declare type KitsuneFilterValueInput = {
|
|
|
134185
134710
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
134186
134711
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134187
134712
|
};
|
|
134713
|
+
export declare type KitsuneHighlightFragment = {
|
|
134714
|
+
__typename?: 'KitsuneHighlightFragment';
|
|
134715
|
+
text: Scalars['String']['output'];
|
|
134716
|
+
};
|
|
134188
134717
|
export declare type KitsuneInsight = Node & {
|
|
134189
134718
|
__typename?: 'KitsuneInsight';
|
|
134190
134719
|
content: Scalars['KitsuneADF']['output'];
|
|
@@ -134212,6 +134741,8 @@ export declare type KitsuneJob = {
|
|
|
134212
134741
|
jobId: Scalars['ID']['output'];
|
|
134213
134742
|
processedItems?: Maybe<Scalars['Int']['output']>;
|
|
134214
134743
|
status: KitsuneJobStatus;
|
|
134744
|
+
statusUrl?: Maybe<Array<Scalars['String']['output']>>;
|
|
134745
|
+
tasks?: Maybe<Array<KitsuneTask>>;
|
|
134215
134746
|
totalItems?: Maybe<Scalars['Int']['output']>;
|
|
134216
134747
|
type: KitsuneJobType;
|
|
134217
134748
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -134242,6 +134773,7 @@ export declare type KitsuneNumberValue = {
|
|
|
134242
134773
|
};
|
|
134243
134774
|
export declare type KitsuneOrganization = {
|
|
134244
134775
|
__typename?: 'KitsuneOrganization';
|
|
134776
|
+
customers?: Maybe<Array<KitsuneCustomer>>;
|
|
134245
134777
|
id: Scalars['ID']['output'];
|
|
134246
134778
|
name: Scalars['String']['output'];
|
|
134247
134779
|
};
|
|
@@ -134270,6 +134802,18 @@ export declare type KitsuneRankInput = {
|
|
|
134270
134802
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
134271
134803
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
134272
134804
|
};
|
|
134805
|
+
export declare type KitsuneSearchFeedbackConnection = KitsuneConnection & {
|
|
134806
|
+
__typename?: 'KitsuneSearchFeedbackConnection';
|
|
134807
|
+
edges: Array<KitsuneSearchFeedbackEdge>;
|
|
134808
|
+
pageInfo: PageInfo;
|
|
134809
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
134810
|
+
};
|
|
134811
|
+
export declare type KitsuneSearchFeedbackEdge = KitsuneEdge & {
|
|
134812
|
+
__typename?: 'KitsuneSearchFeedbackEdge';
|
|
134813
|
+
cursor: Scalars['String']['output'];
|
|
134814
|
+
highlights?: Maybe<KitsuneFeedbackHighlights>;
|
|
134815
|
+
node?: Maybe<KitsuneFeedback>;
|
|
134816
|
+
};
|
|
134273
134817
|
export declare type KitsuneSearchFeedbackInput = {
|
|
134274
134818
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
134275
134819
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -134554,6 +135098,24 @@ export declare enum KitsuneSummaryStatus {
|
|
|
134554
135098
|
Error = "ERROR",
|
|
134555
135099
|
Generating = "GENERATING"
|
|
134556
135100
|
}
|
|
135101
|
+
export declare type KitsuneTask = {
|
|
135102
|
+
__typename?: 'KitsuneTask';
|
|
135103
|
+
createdAt: Scalars['String']['output'];
|
|
135104
|
+
failures?: Maybe<Array<KitsuneTaskFailure>>;
|
|
135105
|
+
id: Scalars['ID']['output'];
|
|
135106
|
+
status: Scalars['String']['output'];
|
|
135107
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
135108
|
+
updatedAt: Scalars['String']['output'];
|
|
135109
|
+
};
|
|
135110
|
+
export declare type KitsuneTaskFailure = {
|
|
135111
|
+
__typename?: 'KitsuneTaskFailure';
|
|
135112
|
+
entity: Scalars['String']['output'];
|
|
135113
|
+
entityId: Scalars['String']['output'];
|
|
135114
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
135115
|
+
operatedOn: Scalars['String']['output'];
|
|
135116
|
+
operatedOnIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
135117
|
+
operation: Scalars['String']['output'];
|
|
135118
|
+
};
|
|
134557
135119
|
export declare type KitsuneTextValue = {
|
|
134558
135120
|
__typename?: 'KitsuneTextValue';
|
|
134559
135121
|
_id: Scalars['ID']['output'];
|
|
@@ -140671,6 +141233,12 @@ export declare type MediaItemDescriptorInput = {
|
|
|
140671
141233
|
fileId: Scalars['ID']['input'];
|
|
140672
141234
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
140673
141235
|
};
|
|
141236
|
+
export declare type MediaItemsInput = {
|
|
141237
|
+
clientId: Scalars['String']['input'];
|
|
141238
|
+
descriptors: Array<MediaItemDescriptorInput>;
|
|
141239
|
+
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141240
|
+
token: Scalars['String']['input'];
|
|
141241
|
+
};
|
|
140674
141242
|
export declare type MediaPickerUserToken = {
|
|
140675
141243
|
__typename?: 'MediaPickerUserToken';
|
|
140676
141244
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -140947,7 +141515,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
140947
141515
|
id: Scalars['ID']['output'];
|
|
140948
141516
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
140949
141517
|
linkedGoals?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalConnection>;
|
|
140950
|
-
linkedWork?: Maybe<Array<MercuryLinkedWork
|
|
141518
|
+
linkedWork?: Maybe<Array<Maybe<MercuryLinkedWork>>>;
|
|
140951
141519
|
name: Scalars['String']['output'];
|
|
140952
141520
|
owner?: Maybe<User>;
|
|
140953
141521
|
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
@@ -141672,8 +142240,10 @@ export declare type MercuryCustomFieldInput = {
|
|
|
141672
142240
|
booleanField?: InputMaybe<MercuryBooleanCustomFieldInput>;
|
|
141673
142241
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
141674
142242
|
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
142243
|
+
multiUserField?: InputMaybe<MercuryMultiUserCustomFieldInput>;
|
|
141675
142244
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
141676
142245
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
142246
|
+
singleUserField?: InputMaybe<MercurySingleUserCustomFieldInput>;
|
|
141677
142247
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
141678
142248
|
};
|
|
141679
142249
|
export declare enum MercuryCustomFieldKind {
|
|
@@ -142212,12 +142782,14 @@ export declare type MercuryFocusArea = Node & {
|
|
|
142212
142782
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
142213
142783
|
focusAreaType: MercuryFocusAreaType;
|
|
142214
142784
|
funding?: Maybe<MercuryFunding>;
|
|
142785
|
+
fundsPermissions?: Maybe<Array<MercuryFundsPermission>>;
|
|
142215
142786
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
142216
142787
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
142217
142788
|
icon: MercuryFocusAreaIcon;
|
|
142218
142789
|
id: Scalars['ID']['output'];
|
|
142219
142790
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
142220
142791
|
linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
|
|
142792
|
+
linkedRisks?: Maybe<Array<MercuryRisk>>;
|
|
142221
142793
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
142222
142794
|
name: Scalars['String']['output'];
|
|
142223
142795
|
owner?: Maybe<User>;
|
|
@@ -142312,6 +142884,7 @@ export declare type MercuryFocusAreaBenefitSummary = {
|
|
|
142312
142884
|
financialVersionBenefitPerYearMonthSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitPerYearMonthSummary>>>;
|
|
142313
142885
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
142314
142886
|
focusAreaId: Scalars['ID']['output'];
|
|
142887
|
+
returnOnInvestment?: Maybe<Scalars['Float']['output']>;
|
|
142315
142888
|
};
|
|
142316
142889
|
export declare type MercuryFocusAreaBudget = Node & {
|
|
142317
142890
|
__typename?: 'MercuryFocusAreaBudget';
|
|
@@ -142631,6 +143204,11 @@ export declare type MercuryFocusAreaStatusUpdateConnection = {
|
|
|
142631
143204
|
pageInfo: PageInfo;
|
|
142632
143205
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142633
143206
|
};
|
|
143207
|
+
export declare type MercuryFocusAreaStatusUpdateDraft = {
|
|
143208
|
+
__typename?: 'MercuryFocusAreaStatusUpdateDraft';
|
|
143209
|
+
draft?: Maybe<Scalars['String']['output']>;
|
|
143210
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
143211
|
+
};
|
|
142634
143212
|
export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
142635
143213
|
__typename?: 'MercuryFocusAreaStatusUpdateEdge';
|
|
142636
143214
|
cursor: Scalars['String']['output'];
|
|
@@ -142775,8 +143353,10 @@ export declare type MercuryFundsMutationApi = {
|
|
|
142775
143353
|
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
142776
143354
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
142777
143355
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
143356
|
+
setBenefitBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
142778
143357
|
setCostBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
142779
143358
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
143359
|
+
unsetBenefitBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
142780
143360
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
142781
143361
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
142782
143362
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
@@ -142845,12 +143425,18 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
142845
143425
|
export declare type MercuryFundsMutationApiSetBaselineArgs = {
|
|
142846
143426
|
input: MercurySetBaselineInput;
|
|
142847
143427
|
};
|
|
143428
|
+
export declare type MercuryFundsMutationApiSetBenefitBaselineArgs = {
|
|
143429
|
+
input: MercurySetBaselineInput;
|
|
143430
|
+
};
|
|
142848
143431
|
export declare type MercuryFundsMutationApiSetCostBaselineArgs = {
|
|
142849
143432
|
input: MercurySetBaselineInput;
|
|
142850
143433
|
};
|
|
142851
143434
|
export declare type MercuryFundsMutationApiUnsetBaselineArgs = {
|
|
142852
143435
|
input: MercuryUnsetBaselineInput;
|
|
142853
143436
|
};
|
|
143437
|
+
export declare type MercuryFundsMutationApiUnsetBenefitBaselineArgs = {
|
|
143438
|
+
input: MercuryUnsetBaselineInput;
|
|
143439
|
+
};
|
|
142854
143440
|
export declare type MercuryFundsMutationApiUnsetCostBaselineArgs = {
|
|
142855
143441
|
input: MercuryUnsetBaselineInput;
|
|
142856
143442
|
};
|
|
@@ -142890,6 +143476,13 @@ export declare type MercuryFundsMutationApiUpdateFocusAreaBudgetAmountArgs = {
|
|
|
142890
143476
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
142891
143477
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
142892
143478
|
};
|
|
143479
|
+
export declare enum MercuryFundsPermission {
|
|
143480
|
+
CreateCostItem = "CREATE_COST_ITEM",
|
|
143481
|
+
EditBaseline = "EDIT_BASELINE",
|
|
143482
|
+
EditBudget = "EDIT_BUDGET",
|
|
143483
|
+
ExportFunds = "EXPORT_FUNDS",
|
|
143484
|
+
ViewFund = "VIEW_FUND"
|
|
143485
|
+
}
|
|
142893
143486
|
export declare type MercuryFundsQueryApi = {
|
|
142894
143487
|
__typename?: 'MercuryFundsQueryApi';
|
|
142895
143488
|
activeCurrency: MercuryCurrency;
|
|
@@ -142919,6 +143512,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
142919
143512
|
focusAreaBudgetsByFocusAreaIds?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
142920
143513
|
focusAreaBudgetsSearch?: Maybe<MercuryFocusAreaBudgetConnection>;
|
|
142921
143514
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
143515
|
+
fundsPermissionsByFocusAreaId?: Maybe<Array<MercuryFundsPermission>>;
|
|
142922
143516
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
142923
143517
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
142924
143518
|
};
|
|
@@ -143033,6 +143627,9 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
|
143033
143627
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
143034
143628
|
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
143035
143629
|
};
|
|
143630
|
+
export declare type MercuryFundsQueryApiFundsPermissionsByFocusAreaIdArgs = {
|
|
143631
|
+
id: Scalars['ID']['input'];
|
|
143632
|
+
};
|
|
143036
143633
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
143037
143634
|
ids: Array<Scalars['ID']['input']>;
|
|
143038
143635
|
};
|
|
@@ -143560,6 +144157,32 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
|
|
|
143560
144157
|
export declare type MercuryMultiSelectCustomFieldInput = {
|
|
143561
144158
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
143562
144159
|
};
|
|
144160
|
+
export declare type MercuryMultiUserCustomField = MercuryCustomField & {
|
|
144161
|
+
__typename?: 'MercuryMultiUserCustomField';
|
|
144162
|
+
createdBy?: Maybe<User>;
|
|
144163
|
+
createdDate: Scalars['DateTime']['output'];
|
|
144164
|
+
definition?: Maybe<MercuryMultiUserCustomFieldDefinition>;
|
|
144165
|
+
selectedUsers?: Maybe<Array<User>>;
|
|
144166
|
+
updatedBy?: Maybe<User>;
|
|
144167
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
144168
|
+
};
|
|
144169
|
+
export declare type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
144170
|
+
__typename?: 'MercuryMultiUserCustomFieldDefinition';
|
|
144171
|
+
createdBy?: Maybe<User>;
|
|
144172
|
+
createdDate: Scalars['DateTime']['output'];
|
|
144173
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
144174
|
+
fieldKind: MercuryCustomFieldKind;
|
|
144175
|
+
id: Scalars['ID']['output'];
|
|
144176
|
+
name: Scalars['String']['output'];
|
|
144177
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
144178
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
144179
|
+
updatedBy?: Maybe<User>;
|
|
144180
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
144181
|
+
visibility: MercuryCustomFieldVisibility;
|
|
144182
|
+
};
|
|
144183
|
+
export declare type MercuryMultiUserCustomFieldInput = {
|
|
144184
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144185
|
+
};
|
|
143563
144186
|
export declare type MercuryMutationApi = {
|
|
143564
144187
|
__typename?: 'MercuryMutationApi';
|
|
143565
144188
|
addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
@@ -144357,6 +144980,7 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
|
144357
144980
|
export declare type MercuryQueryApi = {
|
|
144358
144981
|
__typename?: 'MercuryQueryApi';
|
|
144359
144982
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
144983
|
+
aiFocusAreaStatusUpdateDraft?: Maybe<MercuryFocusAreaStatusUpdateDraft>;
|
|
144360
144984
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
144361
144985
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
144362
144986
|
aiLinkedGoalOrWorkInsightSummary?: Maybe<MercuryLinkedGoalOrWorkAiSummary>;
|
|
@@ -144390,6 +145014,10 @@ export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
|
144390
145014
|
id: Scalars['ID']['input'];
|
|
144391
145015
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
144392
145016
|
};
|
|
145017
|
+
export declare type MercuryQueryApiAiFocusAreaStatusUpdateDraftArgs = {
|
|
145018
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145019
|
+
focusAreaId: Scalars['ID']['input'];
|
|
145020
|
+
};
|
|
144393
145021
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
144394
145022
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144395
145023
|
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -144948,6 +145576,32 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
144948
145576
|
export declare type MercurySingleSelectCustomFieldInput = {
|
|
144949
145577
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
144950
145578
|
};
|
|
145579
|
+
export declare type MercurySingleUserCustomField = MercuryCustomField & {
|
|
145580
|
+
__typename?: 'MercurySingleUserCustomField';
|
|
145581
|
+
createdBy?: Maybe<User>;
|
|
145582
|
+
createdDate: Scalars['DateTime']['output'];
|
|
145583
|
+
definition?: Maybe<MercurySingleUserCustomFieldDefinition>;
|
|
145584
|
+
selectedUser?: Maybe<User>;
|
|
145585
|
+
updatedBy?: Maybe<User>;
|
|
145586
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
145587
|
+
};
|
|
145588
|
+
export declare type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
145589
|
+
__typename?: 'MercurySingleUserCustomFieldDefinition';
|
|
145590
|
+
createdBy?: Maybe<User>;
|
|
145591
|
+
createdDate: Scalars['DateTime']['output'];
|
|
145592
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145593
|
+
fieldKind: MercuryCustomFieldKind;
|
|
145594
|
+
id: Scalars['ID']['output'];
|
|
145595
|
+
name: Scalars['String']['output'];
|
|
145596
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
145597
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
145598
|
+
updatedBy?: Maybe<User>;
|
|
145599
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
145600
|
+
visibility: MercuryCustomFieldVisibility;
|
|
145601
|
+
};
|
|
145602
|
+
export declare type MercurySingleUserCustomFieldInput = {
|
|
145603
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
145604
|
+
};
|
|
144951
145605
|
export declare type MercurySpendAggregation = {
|
|
144952
145606
|
__typename?: 'MercurySpendAggregation';
|
|
144953
145607
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -146419,6 +147073,7 @@ export declare type Mutation = {
|
|
|
146419
147073
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
146420
147074
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
146421
147075
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
147076
|
+
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
146422
147077
|
agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
|
|
146423
147078
|
agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
|
|
146424
147079
|
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
@@ -146488,6 +147143,7 @@ export declare type Mutation = {
|
|
|
146488
147143
|
assetsDM_objectAttributeDelete?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
146489
147144
|
assetsDM_objectAttributeUpdate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
146490
147145
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
147146
|
+
assetsDM_triggerCloudFetch?: Maybe<AssetsDmTriggerCloudFetchResponse>;
|
|
146491
147147
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
146492
147148
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
146493
147149
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
@@ -146637,6 +147293,7 @@ export declare type Mutation = {
|
|
|
146637
147293
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
146638
147294
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
146639
147295
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
147296
|
+
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
146640
147297
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
146641
147298
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
146642
147299
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
@@ -146655,6 +147312,7 @@ export declare type Mutation = {
|
|
|
146655
147312
|
confluence_nbmRemoveTransformerFromConfig?: Maybe<ConfluenceNbmRemoveTransformerFromConfigPayload>;
|
|
146656
147313
|
confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
|
|
146657
147314
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
147315
|
+
confluence_nbmRetryTransformationLongTask?: Maybe<ConfluenceNbmRetryTransformationLongTaskPayload>;
|
|
146658
147316
|
confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
|
|
146659
147317
|
confluence_nbmStartPerfScanLongTask?: Maybe<ConfluenceNbmStartPerfScanLongTaskPayload>;
|
|
146660
147318
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
@@ -146662,6 +147320,7 @@ export declare type Mutation = {
|
|
|
146662
147320
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
146663
147321
|
confluence_nbmUpdateTransformer?: Maybe<ConfluenceNbmUpdateTransformerPayload>;
|
|
146664
147322
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
147323
|
+
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
146665
147324
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
146666
147325
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
146667
147326
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
@@ -146863,6 +147522,13 @@ export declare type Mutation = {
|
|
|
146863
147522
|
devai_addContainerConfigSecret?: Maybe<DevAiAddContainerConfigSecretPayload>;
|
|
146864
147523
|
devai_addContainerConfigVariable?: Maybe<DevAiAddContainerConfigVariablePayload>;
|
|
146865
147524
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
147525
|
+
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
147526
|
+
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
147527
|
+
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
147528
|
+
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
147529
|
+
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
147530
|
+
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
147531
|
+
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
146866
147532
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
146867
147533
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
146868
147534
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
@@ -147575,9 +148241,8 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
147575
148241
|
orgId: Scalars['ID']['input'];
|
|
147576
148242
|
};
|
|
147577
148243
|
export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
147578
|
-
container
|
|
147579
|
-
input
|
|
147580
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
148244
|
+
container: AdminAuditLogContainer;
|
|
148245
|
+
input: AdminAuditLogEventExportInput;
|
|
147581
148246
|
};
|
|
147582
148247
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
147583
148248
|
resourceAri: Scalars['ID']['input'];
|
|
@@ -147887,6 +148552,9 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
147887
148552
|
agentId: Scalars['ID']['input'];
|
|
147888
148553
|
cloudId: Scalars['ID']['input'];
|
|
147889
148554
|
};
|
|
148555
|
+
export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
148556
|
+
input: AgentWorkspaceStartBulkImportInput;
|
|
148557
|
+
};
|
|
147890
148558
|
export declare type MutationAgentWorkspace_SubscribeSkillArgs = {
|
|
147891
148559
|
input: AgentWorkspaceSubscribeSkillInput;
|
|
147892
148560
|
};
|
|
@@ -148044,6 +148712,7 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
148044
148712
|
cloudId: Scalars['ID']['input'];
|
|
148045
148713
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
148046
148714
|
input: AssetsDmDataSourceInput;
|
|
148715
|
+
isTestConnectionRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148047
148716
|
jobId?: InputMaybe<Scalars['String']['input']>;
|
|
148048
148717
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
148049
148718
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -148195,6 +148864,11 @@ export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
|
148195
148864
|
dataSourceId: Scalars['ID']['input'];
|
|
148196
148865
|
workspaceId: Scalars['ID']['input'];
|
|
148197
148866
|
};
|
|
148867
|
+
export declare type MutationAssetsDm_TriggerCloudFetchArgs = {
|
|
148868
|
+
cloudId: Scalars['ID']['input'];
|
|
148869
|
+
jobId: Scalars['ID']['input'];
|
|
148870
|
+
workspaceId: Scalars['ID']['input'];
|
|
148871
|
+
};
|
|
148198
148872
|
export declare type MutationAssetsDm_UpdateAttributePriorityArgs = {
|
|
148199
148873
|
cloudId: Scalars['ID']['input'];
|
|
148200
148874
|
input: AssetsDmUpdateAttributePriorityInput;
|
|
@@ -148689,6 +149363,9 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
148689
149363
|
cloudId: Scalars['ID']['input'];
|
|
148690
149364
|
input: ConfluenceDeleteTopicInput;
|
|
148691
149365
|
};
|
|
149366
|
+
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
149367
|
+
cloudId: Scalars['ID']['input'];
|
|
149368
|
+
};
|
|
148692
149369
|
export declare type MutationConfluence_ExperimentInitAiFirstCreationArgs = {
|
|
148693
149370
|
cloudId: Scalars['ID']['input'];
|
|
148694
149371
|
};
|
|
@@ -148763,6 +149440,10 @@ export declare type MutationConfluence_NbmRetryScanLongTaskArgs = {
|
|
|
148763
149440
|
cloudId: Scalars['ID']['input'];
|
|
148764
149441
|
input: ConfluenceNbmRetryScanLongTaskInput;
|
|
148765
149442
|
};
|
|
149443
|
+
export declare type MutationConfluence_NbmRetryTransformationLongTaskArgs = {
|
|
149444
|
+
cloudId: Scalars['ID']['input'];
|
|
149445
|
+
input: ConfluenceNbmRetryTransformationLongTaskInput;
|
|
149446
|
+
};
|
|
148766
149447
|
export declare type MutationConfluence_NbmSetChainReadyForTransformationArgs = {
|
|
148767
149448
|
cloudId: Scalars['ID']['input'];
|
|
148768
149449
|
input: ConfluenceNbmSetChainReadyForTransformationInput;
|
|
@@ -148791,6 +149472,10 @@ export declare type MutationConfluence_NbmUploadTransformerConfigArgs = {
|
|
|
148791
149472
|
cloudId: Scalars['ID']['input'];
|
|
148792
149473
|
input: ConfluenceNbmUploadTransformerConfigInput;
|
|
148793
149474
|
};
|
|
149475
|
+
export declare type MutationConfluence_NotifyContentOwnerArgs = {
|
|
149476
|
+
cloudId: Scalars['ID']['input'];
|
|
149477
|
+
input: Array<InputMaybe<ConfluenceNotifyContentOwnerInput>>;
|
|
149478
|
+
};
|
|
148794
149479
|
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
148795
149480
|
cloudId: Scalars['ID']['input'];
|
|
148796
149481
|
input: ConfluencePatchCalendarInput;
|
|
@@ -149517,6 +150202,27 @@ export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
|
149517
150202
|
cloudId: Scalars['ID']['input'];
|
|
149518
150203
|
jobId: Scalars['ID']['input'];
|
|
149519
150204
|
};
|
|
150205
|
+
export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
150206
|
+
input: DevAiAutodevNextAddMembersInput;
|
|
150207
|
+
};
|
|
150208
|
+
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
150209
|
+
input: DevAiAutodevNextAddProjectsInput;
|
|
150210
|
+
};
|
|
150211
|
+
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
150212
|
+
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
150213
|
+
};
|
|
150214
|
+
export declare type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
150215
|
+
input: DevAiAutodevNextDeleteWorkstreamInput;
|
|
150216
|
+
};
|
|
150217
|
+
export declare type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
150218
|
+
input: DevAiAutodevNextRemoveMembersInput;
|
|
150219
|
+
};
|
|
150220
|
+
export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
150221
|
+
input: DevAiAutodevNextRemoveProjectsInput;
|
|
150222
|
+
};
|
|
150223
|
+
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
150224
|
+
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
150225
|
+
};
|
|
149520
150226
|
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
149521
150227
|
id: Scalars['ID']['input'];
|
|
149522
150228
|
};
|
|
@@ -154246,7 +154952,7 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
154246
154952
|
Explicit = "explicit",
|
|
154247
154953
|
Implicit = "implicit"
|
|
154248
154954
|
}
|
|
154249
|
-
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
154955
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
154250
154956
|
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
154251
154957
|
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
154252
154958
|
description: Scalars['String']['output'];
|
|
@@ -154256,6 +154962,11 @@ export declare type PostOfficeMessagePayload = {
|
|
|
154256
154962
|
__typename?: 'PostOfficeMessagePayload';
|
|
154257
154963
|
messages: Array<PostOfficeMessage>;
|
|
154258
154964
|
};
|
|
154965
|
+
export declare type PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData = {
|
|
154966
|
+
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData';
|
|
154967
|
+
conversationChannelId: Scalars['String']['output'];
|
|
154968
|
+
numberOfSuggestions: Scalars['Float']['output'];
|
|
154969
|
+
};
|
|
154259
154970
|
export declare type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
154260
154971
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
154261
154972
|
description: Scalars['String']['output'];
|
|
@@ -154772,6 +155483,7 @@ export declare type Query = {
|
|
|
154772
155483
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
154773
155484
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
154774
155485
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
155486
|
+
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
154775
155487
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
154776
155488
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
154777
155489
|
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
@@ -154937,6 +155649,7 @@ export declare type Query = {
|
|
|
154937
155649
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
154938
155650
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
154939
155651
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
155652
|
+
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
154940
155653
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
154941
155654
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
154942
155655
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
@@ -155092,6 +155805,7 @@ export declare type Query = {
|
|
|
155092
155805
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
155093
155806
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
155094
155807
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
155808
|
+
confluence_isGlobalAnonymousEnforcementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155095
155809
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
155096
155810
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
155097
155811
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
@@ -155142,6 +155856,7 @@ export declare type Query = {
|
|
|
155142
155856
|
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
155143
155857
|
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
155144
155858
|
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
155859
|
+
confluence_shareableLinkSpacesByCriteria?: Maybe<ConfluenceShareableLinkSpaceConnection>;
|
|
155145
155860
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
155146
155861
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
155147
155862
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
@@ -155277,6 +155992,8 @@ export declare type Query = {
|
|
|
155277
155992
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
155278
155993
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
155279
155994
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
155995
|
+
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
155996
|
+
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
155280
155997
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
155281
155998
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
155282
155999
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
@@ -155517,6 +156234,7 @@ export declare type Query = {
|
|
|
155517
156234
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
155518
156235
|
jsw?: Maybe<JswQuery>;
|
|
155519
156236
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
156237
|
+
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
155520
156238
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
155521
156239
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
155522
156240
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
@@ -155525,10 +156243,13 @@ export declare type Query = {
|
|
|
155525
156243
|
kitsune_insights?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
155526
156244
|
kitsune_jobs?: Maybe<Array<Maybe<KitsuneJob>>>;
|
|
155527
156245
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
156246
|
+
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
155528
156247
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
155529
156248
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
156249
|
+
kitsune_searchChunk?: Maybe<Array<KitsuneChunk>>;
|
|
155530
156250
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
155531
156251
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
156252
|
+
kitsune_searchFeedbackWithHighlights?: Maybe<KitsuneSearchFeedbackConnection>;
|
|
155532
156253
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
155533
156254
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
155534
156255
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
@@ -155596,6 +156317,7 @@ export declare type Query = {
|
|
|
155596
156317
|
me: AuthenticationContext;
|
|
155597
156318
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
155598
156319
|
media_items?: Maybe<Array<MediaItem>>;
|
|
156320
|
+
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
155599
156321
|
mercury?: Maybe<MercuryQueryApi>;
|
|
155600
156322
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
155601
156323
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
@@ -156508,6 +157230,11 @@ export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
|
156508
157230
|
cloudId: Scalars['ID']['input'];
|
|
156509
157231
|
projectKey: Scalars['String']['input'];
|
|
156510
157232
|
};
|
|
157233
|
+
export declare type QueryAgentWorkspace_BulkScheduleImportJobArgs = {
|
|
157234
|
+
cloudId: Scalars['ID']['input'];
|
|
157235
|
+
jobId: Scalars['ID']['input'];
|
|
157236
|
+
projectId: Scalars['ID']['input'];
|
|
157237
|
+
};
|
|
156511
157238
|
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
156512
157239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156513
157240
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -157281,19 +158008,22 @@ export declare type QueryAvp_GetChartArgs = {
|
|
|
157281
158008
|
export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
157282
158009
|
chartConfigId: Scalars['ID']['input'];
|
|
157283
158010
|
cloudId: Scalars['ID']['input'];
|
|
157284
|
-
|
|
158011
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158012
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157285
158013
|
};
|
|
157286
158014
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
157287
158015
|
cloudId: Scalars['ID']['input'];
|
|
157288
158016
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157289
158017
|
templateFileName: Scalars['String']['input'];
|
|
157290
|
-
|
|
158018
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158019
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157291
158020
|
};
|
|
157292
158021
|
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
157293
158022
|
cloudId: Scalars['ID']['input'];
|
|
157294
158023
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157295
158024
|
locations: Array<Scalars['String']['input']>;
|
|
157296
|
-
|
|
158025
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158026
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157297
158027
|
};
|
|
157298
158028
|
export declare type QueryAvp_GetDashboardArgs = {
|
|
157299
158029
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -157301,7 +158031,8 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
157301
158031
|
export declare type QueryAvp_GetDashboardIdBySlugArgs = {
|
|
157302
158032
|
cloudId: Scalars['ID']['input'];
|
|
157303
158033
|
slug: Scalars['String']['input'];
|
|
157304
|
-
|
|
158034
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158035
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157305
158036
|
};
|
|
157306
158037
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
157307
158038
|
input: AvpGetDashboardTemplatesInput;
|
|
@@ -157312,6 +158043,9 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
157312
158043
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
157313
158044
|
dashboardAri: Scalars['ID']['input'];
|
|
157314
158045
|
};
|
|
158046
|
+
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
158047
|
+
input: AvpGetReadOnlyDashboardInput;
|
|
158048
|
+
};
|
|
157315
158049
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
157316
158050
|
cloudId: Scalars['ID']['input'];
|
|
157317
158051
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -157945,6 +158679,9 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
157945
158679
|
export declare type QueryConfluence_ImportsAllArgs = {
|
|
157946
158680
|
cloudID: Scalars['ID']['input'];
|
|
157947
158681
|
};
|
|
158682
|
+
export declare type QueryConfluence_IsGlobalAnonymousEnforcementEnabledArgs = {
|
|
158683
|
+
cloudId: Scalars['ID']['input'];
|
|
158684
|
+
};
|
|
157948
158685
|
export declare type QueryConfluence_IsPrivacyModeEnabledArgs = {
|
|
157949
158686
|
cloudId: Scalars['ID']['input'];
|
|
157950
158687
|
};
|
|
@@ -158182,6 +158919,15 @@ export declare type QueryConfluence_ShareableLinkSpaceConfigArgs = {
|
|
|
158182
158919
|
cloudId: Scalars['ID']['input'];
|
|
158183
158920
|
spaceId: Scalars['ID']['input'];
|
|
158184
158921
|
};
|
|
158922
|
+
export declare type QueryConfluence_ShareableLinkSpacesByCriteriaArgs = {
|
|
158923
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158924
|
+
cloudId: Scalars['ID']['input'];
|
|
158925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158926
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158927
|
+
orderBy?: InputMaybe<ConfluenceShareableLinkSpacesByCriteriaOrder>;
|
|
158928
|
+
spaceNamePattern?: InputMaybe<Scalars['String']['input']>;
|
|
158929
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkSpaceStatusFilter>>>;
|
|
158930
|
+
};
|
|
158185
158931
|
export declare type QueryConfluence_SlideArgs = {
|
|
158186
158932
|
id: Scalars['ID']['input'];
|
|
158187
158933
|
};
|
|
@@ -158839,6 +159585,15 @@ export declare type QueryDevai_AutodevJobsForIssueArgs = {
|
|
|
158839
159585
|
issueAri: Scalars['ID']['input'];
|
|
158840
159586
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158841
159587
|
};
|
|
159588
|
+
export declare type QueryDevai_AutodevNextWorkstreamArgs = {
|
|
159589
|
+
cloudId: Scalars['ID']['input'];
|
|
159590
|
+
workstreamId: Scalars['ID']['input'];
|
|
159591
|
+
};
|
|
159592
|
+
export declare type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
159593
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159594
|
+
cloudId: Scalars['ID']['input'];
|
|
159595
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159596
|
+
};
|
|
158842
159597
|
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
158843
159598
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158844
159599
|
cloudId: Scalars['ID']['input'];
|
|
@@ -158866,6 +159621,7 @@ export declare type QueryDevai_ContainerConfigArgs = {
|
|
|
158866
159621
|
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
158867
159622
|
cloudId: Scalars['ID']['input'];
|
|
158868
159623
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
159624
|
+
searchAllConnectedRepos?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158869
159625
|
};
|
|
158870
159626
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
158871
159627
|
id: Scalars['ID']['input'];
|
|
@@ -159758,6 +160514,9 @@ export declare type QueryJsmConversation_SettingsArgs = {
|
|
|
159758
160514
|
export declare type QueryKitsune_ChunksArgs = {
|
|
159759
160515
|
ids: Array<Scalars['ID']['input']>;
|
|
159760
160516
|
};
|
|
160517
|
+
export declare type QueryKitsune_CustomerByAriArgs = {
|
|
160518
|
+
ari: Scalars['ID']['input'];
|
|
160519
|
+
};
|
|
159761
160520
|
export declare type QueryKitsune_CustomersArgs = {
|
|
159762
160521
|
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159763
160522
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -159785,6 +160544,9 @@ export declare type QueryKitsune_JobsArgs = {
|
|
|
159785
160544
|
export declare type QueryKitsune_NodeArgs = {
|
|
159786
160545
|
id: Scalars['ID']['input'];
|
|
159787
160546
|
};
|
|
160547
|
+
export declare type QueryKitsune_OrganizationByAriArgs = {
|
|
160548
|
+
ari: Scalars['ID']['input'];
|
|
160549
|
+
};
|
|
159788
160550
|
export declare type QueryKitsune_OrganizationsArgs = {
|
|
159789
160551
|
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159790
160552
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -159793,6 +160555,13 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
159793
160555
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159794
160556
|
workspaceAri: Scalars['ID']['input'];
|
|
159795
160557
|
};
|
|
160558
|
+
export declare type QueryKitsune_SearchChunkArgs = {
|
|
160559
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
160560
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
160561
|
+
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
160562
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
160563
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160564
|
+
};
|
|
159796
160565
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
159797
160566
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159798
160567
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159810,6 +160579,16 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
159810
160579
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159811
160580
|
workspaceAri: Scalars['ID']['input'];
|
|
159812
160581
|
};
|
|
160582
|
+
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
160583
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
160584
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
160585
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160586
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
160587
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160588
|
+
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160589
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
160590
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160591
|
+
};
|
|
159813
160592
|
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
159814
160593
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159815
160594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159831,6 +160610,7 @@ export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
159831
160610
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159832
160611
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159833
160612
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
160613
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159834
160614
|
workspaceAri: Scalars['ID']['input'];
|
|
159835
160615
|
};
|
|
159836
160616
|
export declare type QueryKitsune_ViewsArgs = {
|
|
@@ -160021,6 +160801,10 @@ export declare type QueryMedia_ItemsArgs = {
|
|
|
160021
160801
|
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160022
160802
|
token: Scalars['String']['input'];
|
|
160023
160803
|
};
|
|
160804
|
+
export declare type QueryMedia_ItemsByDescriptorArgs = {
|
|
160805
|
+
cloudId: Scalars['String']['input'];
|
|
160806
|
+
input: MediaItemsInput;
|
|
160807
|
+
};
|
|
160024
160808
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
160025
160809
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
160026
160810
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -161538,6 +162322,7 @@ export declare enum RadarEntityType {
|
|
|
161538
162322
|
Position = "position",
|
|
161539
162323
|
Proposal = "proposal",
|
|
161540
162324
|
ProposedMovement = "proposedMovement",
|
|
162325
|
+
Skill = "skill",
|
|
161541
162326
|
Team = "team",
|
|
161542
162327
|
View = "view",
|
|
161543
162328
|
Worker = "worker"
|
|
@@ -161614,6 +162399,7 @@ export declare type RadarFields = {
|
|
|
161614
162399
|
positionFields: Array<RadarFieldDefinition>;
|
|
161615
162400
|
proposalFields: Array<RadarFieldDefinition>;
|
|
161616
162401
|
proposedMovementFields: Array<RadarFieldDefinition>;
|
|
162402
|
+
skillFields: Array<RadarFieldDefinition>;
|
|
161617
162403
|
teamFields: Array<RadarFieldDefinition>;
|
|
161618
162404
|
viewFields: Array<RadarFieldDefinition>;
|
|
161619
162405
|
workerFields: Array<RadarFieldDefinition>;
|
|
@@ -164743,10 +165529,17 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
164743
165529
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
164744
165530
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
164745
165531
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
165532
|
+
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
164746
165533
|
title: Scalars['String']['output'];
|
|
164747
165534
|
type: SearchResultType;
|
|
164748
165535
|
url: Scalars['String']['output'];
|
|
164749
165536
|
};
|
|
165537
|
+
export declare type SearchResultGraphTab = {
|
|
165538
|
+
__typename?: 'SearchResultGraphTab';
|
|
165539
|
+
tabId?: Maybe<Scalars['String']['output']>;
|
|
165540
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
165541
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
165542
|
+
};
|
|
164750
165543
|
export declare type SearchResultItemEdge = {
|
|
164751
165544
|
__typename?: 'SearchResultItemEdge';
|
|
164752
165545
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -183352,6 +184145,7 @@ export declare type ShepherdDetection = Node & {
|
|
|
183352
184145
|
category: ShepherdAlertDetectionCategory;
|
|
183353
184146
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
183354
184147
|
id: Scalars['ID']['output'];
|
|
184148
|
+
platformDetectorType?: Maybe<Scalars['String']['output']>;
|
|
183355
184149
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
183356
184150
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
183357
184151
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
@@ -187381,6 +188175,7 @@ export declare type StakeholderCommsPageUptimeDailyAggregate = {
|
|
|
187381
188175
|
maintenanceTime?: Maybe<Scalars['Int']['output']>;
|
|
187382
188176
|
majorOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
187383
188177
|
partialOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
188178
|
+
relatedEvents?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
187384
188179
|
};
|
|
187385
188180
|
export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
187386
188181
|
__typename?: 'StakeholderCommsPageUptimePercentageResponse';
|
|
@@ -188128,6 +188923,7 @@ export declare type Subscription = {
|
|
|
188128
188923
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
188129
188924
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
188130
188925
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
188926
|
+
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
188131
188927
|
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
188132
188928
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
188133
188929
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
@@ -188183,6 +188979,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
188183
188979
|
cloudId: Scalars['ID']['input'];
|
|
188184
188980
|
conversationId: Scalars['ID']['input'];
|
|
188185
188981
|
};
|
|
188982
|
+
export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
188983
|
+
cloudId: Scalars['ID']['input'];
|
|
188984
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
188985
|
+
};
|
|
188186
188986
|
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
188187
188987
|
scopeId: Scalars['ID']['input'];
|
|
188188
188988
|
};
|
|
@@ -189730,7 +190530,6 @@ export declare type TestingSubscription = {
|
|
|
189730
190530
|
__typename?: 'TestingSubscription';
|
|
189731
190531
|
onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
|
|
189732
190532
|
onTestingActivityItemUpdateEnrichJira?: Maybe<TestingActivityItem>;
|
|
189733
|
-
onTestingActivityItemUpdateTest?: Maybe<TestingActivityItem>;
|
|
189734
190533
|
};
|
|
189735
190534
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
189736
190535
|
issueId: Scalars['ID']['input'];
|
|
@@ -189738,9 +190537,6 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
|
189738
190537
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
|
|
189739
190538
|
issueId: Scalars['ID']['input'];
|
|
189740
190539
|
};
|
|
189741
|
-
export declare type TestingSubscriptionOnTestingActivityItemUpdateTestArgs = {
|
|
189742
|
-
issueId: Scalars['ID']['input'];
|
|
189743
|
-
};
|
|
189744
190540
|
export declare type Theme = {
|
|
189745
190541
|
__typename?: 'Theme';
|
|
189746
190542
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -189792,6 +190588,7 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
189792
190588
|
__typename?: 'ThirdPartyUser';
|
|
189793
190589
|
accountId: Scalars['ID']['output'];
|
|
189794
190590
|
accountStatus: AccountStatus;
|
|
190591
|
+
atlassianUser?: Maybe<User>;
|
|
189795
190592
|
canonicalAccountId: Scalars['ID']['output'];
|
|
189796
190593
|
createdAt: Scalars['DateTime']['output'];
|
|
189797
190594
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -195183,6 +195980,11 @@ export declare enum TrelloCardRole {
|
|
|
195183
195980
|
Mirror = "MIRROR",
|
|
195184
195981
|
Separator = "SEPARATOR"
|
|
195185
195982
|
}
|
|
195983
|
+
export declare type TrelloCardSearchResult = {
|
|
195984
|
+
__typename?: 'TrelloCardSearchResult';
|
|
195985
|
+
options?: Maybe<TrelloSearchOptions>;
|
|
195986
|
+
results?: Maybe<TrelloSearchCardConnection>;
|
|
195987
|
+
};
|
|
195186
195988
|
export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
195187
195989
|
__typename?: 'TrelloCardUpdated';
|
|
195188
195990
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -195640,6 +196442,21 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
195640
196442
|
card?: Maybe<TrelloActionCardEntity>;
|
|
195641
196443
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
195642
196444
|
};
|
|
196445
|
+
export declare type TrelloCreateListInput = {
|
|
196446
|
+
boardId: Scalars['ID']['input'];
|
|
196447
|
+
color?: InputMaybe<TrelloListColor>;
|
|
196448
|
+
creationMethod?: InputMaybe<TrelloListCreationMethod>;
|
|
196449
|
+
dataSource?: InputMaybe<TrelloListDataSourceInput>;
|
|
196450
|
+
name: Scalars['String']['input'];
|
|
196451
|
+
pos?: InputMaybe<TrelloListPosition>;
|
|
196452
|
+
type?: InputMaybe<TrelloListType>;
|
|
196453
|
+
};
|
|
196454
|
+
export declare type TrelloCreateListPayload = Payload & {
|
|
196455
|
+
__typename?: 'TrelloCreateListPayload';
|
|
196456
|
+
board?: Maybe<TrelloBoard>;
|
|
196457
|
+
errors?: Maybe<Array<MutationError>>;
|
|
196458
|
+
success: Scalars['Boolean']['output'];
|
|
196459
|
+
};
|
|
195643
196460
|
export declare type TrelloCreateMemberAiRuleInput = {
|
|
195644
196461
|
position: Scalars['Float']['input'];
|
|
195645
196462
|
rule: Scalars['String']['input'];
|
|
@@ -196360,6 +197177,18 @@ export declare enum TrelloListCardSortBy {
|
|
|
196360
197177
|
OldestFirst = "OLDEST_FIRST",
|
|
196361
197178
|
Votes = "VOTES"
|
|
196362
197179
|
}
|
|
197180
|
+
export declare enum TrelloListColor {
|
|
197181
|
+
Blue = "BLUE",
|
|
197182
|
+
Gray = "GRAY",
|
|
197183
|
+
Green = "GREEN",
|
|
197184
|
+
Lime = "LIME",
|
|
197185
|
+
Magenta = "MAGENTA",
|
|
197186
|
+
Orange = "ORANGE",
|
|
197187
|
+
Purple = "PURPLE",
|
|
197188
|
+
Red = "RED",
|
|
197189
|
+
Teal = "TEAL",
|
|
197190
|
+
Yellow = "YELLOW"
|
|
197191
|
+
}
|
|
196363
197192
|
export declare type TrelloListConnection = {
|
|
196364
197193
|
__typename?: 'TrelloListConnection';
|
|
196365
197194
|
edges?: Maybe<Array<TrelloListEdge>>;
|
|
@@ -196372,12 +197201,24 @@ export declare type TrelloListContainer = {
|
|
|
196372
197201
|
id: Scalars['ID']['output'];
|
|
196373
197202
|
objectId: Scalars['ID']['output'];
|
|
196374
197203
|
};
|
|
197204
|
+
export declare enum TrelloListCreationMethod {
|
|
197205
|
+
Ai = "AI",
|
|
197206
|
+
Assisted = "ASSISTED",
|
|
197207
|
+
Automatic = "AUTOMATIC",
|
|
197208
|
+
Demo = "DEMO",
|
|
197209
|
+
EmailSource = "EMAIL_SOURCE"
|
|
197210
|
+
}
|
|
196375
197211
|
export declare type TrelloListDataSource = {
|
|
196376
197212
|
__typename?: 'TrelloListDataSource';
|
|
196377
197213
|
filter: Scalars['Boolean']['output'];
|
|
196378
197214
|
handler: TrelloDataSourceHandler;
|
|
196379
197215
|
link: Scalars['URL']['output'];
|
|
196380
197216
|
};
|
|
197217
|
+
export declare type TrelloListDataSourceInput = {
|
|
197218
|
+
filter: Scalars['Boolean']['input'];
|
|
197219
|
+
handler: TrelloDataSourceHandler;
|
|
197220
|
+
link: Scalars['URL']['input'];
|
|
197221
|
+
};
|
|
196381
197222
|
export declare type TrelloListEdge = {
|
|
196382
197223
|
__typename?: 'TrelloListEdge';
|
|
196383
197224
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -196394,6 +197235,10 @@ export declare type TrelloListLimits = {
|
|
|
196394
197235
|
__typename?: 'TrelloListLimits';
|
|
196395
197236
|
cards?: Maybe<TrelloListCardLimits>;
|
|
196396
197237
|
};
|
|
197238
|
+
export declare type TrelloListPosition = {
|
|
197239
|
+
absolute?: InputMaybe<Scalars['Float']['input']>;
|
|
197240
|
+
relative?: InputMaybe<TrelloRelativePosition>;
|
|
197241
|
+
};
|
|
196397
197242
|
export declare enum TrelloListType {
|
|
196398
197243
|
Datasource = "DATASOURCE"
|
|
196399
197244
|
}
|
|
@@ -196450,6 +197295,7 @@ export declare type TrelloMember = Node & {
|
|
|
196450
197295
|
bio?: Maybe<Scalars['String']['output']>;
|
|
196451
197296
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
196452
197297
|
boardStars?: Maybe<TrelloMemberBoardStarConnection>;
|
|
197298
|
+
boards?: Maybe<TrelloMemberBoardConnection>;
|
|
196453
197299
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
196454
197300
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
196455
197301
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
@@ -196482,6 +197328,10 @@ export declare type TrelloMemberBoardStarsArgs = {
|
|
|
196482
197328
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196483
197329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196484
197330
|
};
|
|
197331
|
+
export declare type TrelloMemberBoardsArgs = {
|
|
197332
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197334
|
+
};
|
|
196485
197335
|
export declare type TrelloMemberNotificationsArgs = {
|
|
196486
197336
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196487
197337
|
filter?: InputMaybe<TrelloNotificationFilter>;
|
|
@@ -196517,6 +197367,17 @@ export declare type TrelloMemberAtlassianSiteEdge = {
|
|
|
196517
197367
|
cursor: Scalars['String']['output'];
|
|
196518
197368
|
node?: Maybe<TrelloAtlassianSite>;
|
|
196519
197369
|
};
|
|
197370
|
+
export declare type TrelloMemberBoardConnection = {
|
|
197371
|
+
__typename?: 'TrelloMemberBoardConnection';
|
|
197372
|
+
edges?: Maybe<Array<TrelloMemberBoardEdge>>;
|
|
197373
|
+
nodes?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
197374
|
+
pageInfo: PageInfo;
|
|
197375
|
+
};
|
|
197376
|
+
export declare type TrelloMemberBoardEdge = {
|
|
197377
|
+
__typename?: 'TrelloMemberBoardEdge';
|
|
197378
|
+
cursor: Scalars['String']['output'];
|
|
197379
|
+
node?: Maybe<TrelloBoard>;
|
|
197380
|
+
};
|
|
196520
197381
|
export declare type TrelloMemberBoardStarConnection = {
|
|
196521
197382
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
196522
197383
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
@@ -196784,6 +197645,7 @@ export declare type TrelloMutationApi = {
|
|
|
196784
197645
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
196785
197646
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
196786
197647
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
197648
|
+
createList?: Maybe<TrelloCreateListPayload>;
|
|
196787
197649
|
createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
|
|
196788
197650
|
createMemberFromAa?: Maybe<TrelloCreateMemberFromAaPayload>;
|
|
196789
197651
|
createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
|
|
@@ -196856,6 +197718,7 @@ export declare type TrelloMutationApi = {
|
|
|
196856
197718
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
196857
197719
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
196858
197720
|
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
197721
|
+
updateCardDueDate?: Maybe<TrelloUpdateCardDueDatePayload>;
|
|
196859
197722
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
196860
197723
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
196861
197724
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
@@ -196930,6 +197793,9 @@ export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
|
196930
197793
|
export declare type TrelloMutationApiCreateCustomFieldOptionArgs = {
|
|
196931
197794
|
input: TrelloCreateCustomFieldOptionInput;
|
|
196932
197795
|
};
|
|
197796
|
+
export declare type TrelloMutationApiCreateListArgs = {
|
|
197797
|
+
input: TrelloCreateListInput;
|
|
197798
|
+
};
|
|
196933
197799
|
export declare type TrelloMutationApiCreateMemberAiRuleArgs = {
|
|
196934
197800
|
input: TrelloCreateMemberAiRuleInput;
|
|
196935
197801
|
};
|
|
@@ -197140,6 +198006,9 @@ export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
|
197140
198006
|
export declare type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
197141
198007
|
input: TrelloUpdateCardDescriptionInput;
|
|
197142
198008
|
};
|
|
198009
|
+
export declare type TrelloMutationApiUpdateCardDueDateArgs = {
|
|
198010
|
+
input: TrelloUpdateCardDueDateInput;
|
|
198011
|
+
};
|
|
197143
198012
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
197144
198013
|
input: TrelloUpdateCardNameInput;
|
|
197145
198014
|
};
|
|
@@ -197971,6 +198840,7 @@ export declare type TrelloProposedEvent = {
|
|
|
197971
198840
|
cards?: Maybe<TrelloProposedEventCardConnection>;
|
|
197972
198841
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197973
198842
|
objectId: Scalars['ID']['output'];
|
|
198843
|
+
schedulingRequestId?: Maybe<Scalars['String']['output']>;
|
|
197974
198844
|
source?: Maybe<TrelloProposedEventSource>;
|
|
197975
198845
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
197976
198846
|
};
|
|
@@ -198027,6 +198897,7 @@ export declare type TrelloProposedEventUpdated = {
|
|
|
198027
198897
|
cards?: Maybe<TrelloProposedEventCardConnectionUpdated>;
|
|
198028
198898
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
198029
198899
|
objectId: Scalars['ID']['output'];
|
|
198900
|
+
schedulingRequestId?: Maybe<Scalars['String']['output']>;
|
|
198030
198901
|
source?: Maybe<TrelloProposedEventSource>;
|
|
198031
198902
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
198032
198903
|
};
|
|
@@ -198076,6 +198947,7 @@ export declare type TrelloQueryApi = {
|
|
|
198076
198947
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
198077
198948
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
198078
198949
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
198950
|
+
searchCards?: Maybe<TrelloCardSearchResult>;
|
|
198079
198951
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
198080
198952
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
198081
198953
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
@@ -198193,6 +199065,14 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
198193
199065
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
198194
199066
|
ids: Array<Scalars['ID']['input']>;
|
|
198195
199067
|
};
|
|
199068
|
+
export declare type TrelloQueryApiSearchCardsArgs = {
|
|
199069
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199070
|
+
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
199071
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199072
|
+
partial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199073
|
+
query: Scalars['String']['input'];
|
|
199074
|
+
workspaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
199075
|
+
};
|
|
198196
199076
|
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
198197
199077
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198198
199078
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
@@ -198259,6 +199139,10 @@ export declare type TrelloRejectProposedEventsPayload = Payload & {
|
|
|
198259
199139
|
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
198260
199140
|
success: Scalars['Boolean']['output'];
|
|
198261
199141
|
};
|
|
199142
|
+
export declare enum TrelloRelativePosition {
|
|
199143
|
+
Bottom = "BOTTOM",
|
|
199144
|
+
Top = "TOP"
|
|
199145
|
+
}
|
|
198262
199146
|
export declare type TrelloRemoveBoardStarInput = {
|
|
198263
199147
|
boardStarId: Scalars['ID']['input'];
|
|
198264
199148
|
userId: Scalars['ID']['input'];
|
|
@@ -198409,6 +199293,23 @@ export declare type TrelloScaleProps = {
|
|
|
198409
199293
|
url?: Maybe<Scalars['URL']['output']>;
|
|
198410
199294
|
width?: Maybe<Scalars['Int']['output']>;
|
|
198411
199295
|
};
|
|
199296
|
+
export declare type TrelloSearchCardConnection = {
|
|
199297
|
+
__typename?: 'TrelloSearchCardConnection';
|
|
199298
|
+
edges?: Maybe<Array<TrelloSearchCardEdge>>;
|
|
199299
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseCard>>>;
|
|
199300
|
+
pageInfo: PageInfo;
|
|
199301
|
+
};
|
|
199302
|
+
export declare type TrelloSearchCardEdge = {
|
|
199303
|
+
__typename?: 'TrelloSearchCardEdge';
|
|
199304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
199305
|
+
node?: Maybe<TrelloBaseCard>;
|
|
199306
|
+
};
|
|
199307
|
+
export declare type TrelloSearchOptions = {
|
|
199308
|
+
__typename?: 'TrelloSearchOptions';
|
|
199309
|
+
modifiers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
199310
|
+
partial?: Maybe<Scalars['Boolean']['output']>;
|
|
199311
|
+
terms?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
199312
|
+
};
|
|
198412
199313
|
export declare type TrelloSendBoardEmailKeyInput = {
|
|
198413
199314
|
boardId: Scalars['ID']['input'];
|
|
198414
199315
|
};
|
|
@@ -198898,6 +199799,16 @@ export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
|
198898
199799
|
date?: Maybe<TrelloActionDateEntity>;
|
|
198899
199800
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
198900
199801
|
};
|
|
199802
|
+
export declare type TrelloUpdateCardDueDateInput = {
|
|
199803
|
+
cardId: Scalars['ID']['input'];
|
|
199804
|
+
dueAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
199805
|
+
};
|
|
199806
|
+
export declare type TrelloUpdateCardDueDatePayload = Payload & {
|
|
199807
|
+
__typename?: 'TrelloUpdateCardDueDatePayload';
|
|
199808
|
+
card?: Maybe<TrelloBaseCard>;
|
|
199809
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199810
|
+
success: Scalars['Boolean']['output'];
|
|
199811
|
+
};
|
|
198901
199812
|
export declare type TrelloUpdateCardNameInput = {
|
|
198902
199813
|
cardId: Scalars['ID']['input'];
|
|
198903
199814
|
name?: InputMaybe<Scalars['String']['input']>;
|