@forge/cli-shared 8.19.0 → 8.19.1-next.0-experimental-5b726e6
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 +15 -0
- package/out/graphql/graphql-types.d.ts +1072 -84
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +165 -42
- package/package.json +2 -2
|
@@ -356,6 +356,7 @@ export declare enum AvpAnalyticsColumnType {
|
|
|
356
356
|
Time = "TIME"
|
|
357
357
|
}
|
|
358
358
|
export declare type AvpAnalyticsCreateModelInput = {
|
|
359
|
+
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
359
360
|
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
|
|
360
361
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
361
362
|
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -456,6 +457,7 @@ export declare enum AvpAnalyticsFilterOperator {
|
|
|
456
457
|
Range = "RANGE"
|
|
457
458
|
}
|
|
458
459
|
export declare enum AvpAnalyticsFilterType {
|
|
460
|
+
ModelCloudId = "MODEL_CLOUD_ID",
|
|
459
461
|
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
460
462
|
ModelLabel = "MODEL_LABEL",
|
|
461
463
|
ModelStatus = "MODEL_STATUS"
|
|
@@ -627,6 +629,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
627
629
|
};
|
|
628
630
|
export declare type AvpAnalyticsModel = {
|
|
629
631
|
__typename?: 'AVPAnalyticsModel';
|
|
632
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
630
633
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
631
634
|
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
632
635
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
@@ -712,13 +715,11 @@ export declare type AvpAnalyticsModelFilter = {
|
|
|
712
715
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
713
716
|
columnName: Scalars['String']['output'];
|
|
714
717
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
715
|
-
name: Scalars['String']['output'];
|
|
716
718
|
operator: AvpAnalyticsFilterOperator;
|
|
717
719
|
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
718
720
|
};
|
|
719
721
|
export declare type AvpAnalyticsModelFilterInput = {
|
|
720
722
|
columnName: Scalars['String']['input'];
|
|
721
|
-
name: Scalars['String']['input'];
|
|
722
723
|
operator: AvpAnalyticsFilterOperator;
|
|
723
724
|
value?: InputMaybe<AvpAnalyticsFilterValueInput>;
|
|
724
725
|
};
|
|
@@ -833,6 +834,7 @@ export declare enum AvpAnalyticsSortType {
|
|
|
833
834
|
}
|
|
834
835
|
export declare type AvpAnalyticsUpdateModelInput = {
|
|
835
836
|
forceUpdate: Scalars['Boolean']['input'];
|
|
837
|
+
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
836
838
|
modelDefinition: AvpAnalyticsModelDefinitionInput;
|
|
837
839
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
838
840
|
modelId: Scalars['ID']['input'];
|
|
@@ -1153,7 +1155,8 @@ export declare type AvpCreateDashboardFromTemplateInput = {
|
|
|
1153
1155
|
dashboard: AvpDashboardTemplateInput;
|
|
1154
1156
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
1155
1157
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1156
|
-
|
|
1158
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1159
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1157
1160
|
};
|
|
1158
1161
|
export declare type AvpCreateDashboardInput = {
|
|
1159
1162
|
cloudId: Scalars['ID']['input'];
|
|
@@ -1161,7 +1164,8 @@ export declare type AvpCreateDashboardInput = {
|
|
|
1161
1164
|
dashboard: AvpDashboardInput;
|
|
1162
1165
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
1163
1166
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
1164
|
-
|
|
1167
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
1168
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1165
1169
|
};
|
|
1166
1170
|
export declare type AvpCreateDashboardPayload = Payload & {
|
|
1167
1171
|
__typename?: 'AVPCreateDashboardPayload';
|
|
@@ -1239,6 +1243,11 @@ export declare type AvpDashboardCanvasLayoutRow = {
|
|
|
1239
1243
|
height?: Maybe<AvpCanvasRowHeight>;
|
|
1240
1244
|
id?: Maybe<Scalars['ID']['output']>;
|
|
1241
1245
|
};
|
|
1246
|
+
export declare type AvpDashboardEdge = {
|
|
1247
|
+
__typename?: 'AVPDashboardEdge';
|
|
1248
|
+
cursor: Scalars['String']['output'];
|
|
1249
|
+
node: AvpDashboard;
|
|
1250
|
+
};
|
|
1242
1251
|
export declare type AvpDashboardFilterInput = {
|
|
1243
1252
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
1244
1253
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -1305,6 +1314,11 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
1305
1314
|
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
1306
1315
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
1307
1316
|
};
|
|
1317
|
+
export declare type AvpDashboardsConnection = HasPageInfo & {
|
|
1318
|
+
__typename?: 'AVPDashboardsConnection';
|
|
1319
|
+
edges: Array<AvpDashboardEdge>;
|
|
1320
|
+
pageInfo: PageInfo;
|
|
1321
|
+
};
|
|
1308
1322
|
export declare enum AvpDataFetchStrategy {
|
|
1309
1323
|
Dynamic = "DYNAMIC",
|
|
1310
1324
|
Static = "STATIC"
|
|
@@ -1695,24 +1709,15 @@ export declare type AvpPermissionsUserAccess = {
|
|
|
1695
1709
|
user?: Maybe<User>;
|
|
1696
1710
|
};
|
|
1697
1711
|
export declare type AvpPlatformDimension = {
|
|
1712
|
+
__typename?: 'AVPPlatformDimension';
|
|
1698
1713
|
datasourceLocator: AvpDatasourceLocator;
|
|
1714
|
+
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
1699
1715
|
name: Scalars['String']['output'];
|
|
1700
1716
|
product: Scalars['String']['output'];
|
|
1701
1717
|
};
|
|
1702
1718
|
export declare type AvpPlatformDimensionInput = {
|
|
1703
|
-
dynamic?: InputMaybe<AvpPlatformDynamicDimensionInput>;
|
|
1704
|
-
semantic?: InputMaybe<AvpPlatformSemanticDimensionInput>;
|
|
1705
|
-
};
|
|
1706
|
-
export declare type AvpPlatformDynamicDimension = AvpPlatformDimension & {
|
|
1707
|
-
__typename?: 'AVPPlatformDynamicDimension';
|
|
1708
|
-
datasourceLocator: AvpDatasourceLocator;
|
|
1709
|
-
dynamicDimensionKey: Scalars['String']['output'];
|
|
1710
|
-
name: Scalars['String']['output'];
|
|
1711
|
-
product: Scalars['String']['output'];
|
|
1712
|
-
};
|
|
1713
|
-
export declare type AvpPlatformDynamicDimensionInput = {
|
|
1714
1719
|
datasourceLocator: AvpDatasourceLocatorInput;
|
|
1715
|
-
dynamicDimensionKey
|
|
1720
|
+
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
1716
1721
|
name: Scalars['String']['input'];
|
|
1717
1722
|
product: Scalars['String']['input'];
|
|
1718
1723
|
};
|
|
@@ -1742,19 +1747,6 @@ export declare type AvpPlatformFilterUpdateInput = {
|
|
|
1742
1747
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
1743
1748
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1744
1749
|
};
|
|
1745
|
-
export declare type AvpPlatformSemanticDimension = AvpPlatformDimension & {
|
|
1746
|
-
__typename?: 'AVPPlatformSemanticDimension';
|
|
1747
|
-
datasourceLocator: AvpDatasourceLocator;
|
|
1748
|
-
name: Scalars['String']['output'];
|
|
1749
|
-
product: Scalars['String']['output'];
|
|
1750
|
-
semanticModel: Scalars['String']['output'];
|
|
1751
|
-
};
|
|
1752
|
-
export declare type AvpPlatformSemanticDimensionInput = {
|
|
1753
|
-
datasourceLocator: AvpDatasourceLocatorInput;
|
|
1754
|
-
name: Scalars['String']['input'];
|
|
1755
|
-
product: Scalars['String']['input'];
|
|
1756
|
-
semanticModel: Scalars['String']['input'];
|
|
1757
|
-
};
|
|
1758
1750
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
1759
1751
|
product: Scalars['String']['input'];
|
|
1760
1752
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -6008,6 +6000,27 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
6008
6000
|
onDuty: Scalars['Int']['output'];
|
|
6009
6001
|
totalAgents: Scalars['Int']['output'];
|
|
6010
6002
|
};
|
|
6003
|
+
export declare type AgentWorkspaceBulkImportJob = {
|
|
6004
|
+
__typename?: 'AgentWorkspaceBulkImportJob';
|
|
6005
|
+
createdAt: Scalars['DateTime']['output'];
|
|
6006
|
+
createdSchedules?: Maybe<Scalars['Int']['output']>;
|
|
6007
|
+
failedSchedules?: Maybe<Scalars['Int']['output']>;
|
|
6008
|
+
jobId: Scalars['ID']['output'];
|
|
6009
|
+
processedRows?: Maybe<Scalars['Int']['output']>;
|
|
6010
|
+
status: AgentWorkspaceBulkImportJobStatus;
|
|
6011
|
+
totalRows?: Maybe<Scalars['Int']['output']>;
|
|
6012
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6013
|
+
validationErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
6014
|
+
};
|
|
6015
|
+
export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
6016
|
+
ImportFailed = "IMPORT_FAILED",
|
|
6017
|
+
ImportInProgress = "IMPORT_IN_PROGRESS",
|
|
6018
|
+
ImportProcessing = "IMPORT_PROCESSING",
|
|
6019
|
+
ImportSuccessful = "IMPORT_SUCCESSFUL",
|
|
6020
|
+
ValidationFailed = "VALIDATION_FAILED",
|
|
6021
|
+
ValidationInProgress = "VALIDATION_IN_PROGRESS",
|
|
6022
|
+
ValidationSuccessful = "VALIDATION_SUCCESSFUL"
|
|
6023
|
+
}
|
|
6011
6024
|
export declare type AgentWorkspaceCapacityConnection = {
|
|
6012
6025
|
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
6013
6026
|
edges: Array<AgentWorkspaceAgentCapacityEdge>;
|
|
@@ -6875,6 +6888,16 @@ export declare enum AgentWorkspaceSortDirection {
|
|
|
6875
6888
|
Asc = "ASC",
|
|
6876
6889
|
Desc = "DESC"
|
|
6877
6890
|
}
|
|
6891
|
+
export declare type AgentWorkspaceStartBulkImportInput = {
|
|
6892
|
+
cloudId: Scalars['ID']['input'];
|
|
6893
|
+
jobId: Scalars['ID']['input'];
|
|
6894
|
+
projectId: Scalars['ID']['input'];
|
|
6895
|
+
};
|
|
6896
|
+
export declare type AgentWorkspaceStartBulkImportPayload = {
|
|
6897
|
+
__typename?: 'AgentWorkspaceStartBulkImportPayload';
|
|
6898
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
6899
|
+
status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
|
|
6900
|
+
};
|
|
6878
6901
|
export declare type AgentWorkspaceSubscribeSkillInput = {
|
|
6879
6902
|
cloudId: Scalars['ID']['input'];
|
|
6880
6903
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8598,6 +8621,7 @@ export declare type AppVersionRollout = {
|
|
|
8598
8621
|
sourceVersionId: Scalars['ID']['output'];
|
|
8599
8622
|
status: AppVersionRolloutStatus;
|
|
8600
8623
|
targetVersionId: Scalars['ID']['output'];
|
|
8624
|
+
upgradeLimit?: Maybe<Scalars['Int']['output']>;
|
|
8601
8625
|
};
|
|
8602
8626
|
export declare type AppVersionRolloutPageInfo = {
|
|
8603
8627
|
__typename?: 'AppVersionRolloutPageInfo';
|
|
@@ -11683,9 +11707,7 @@ export declare type AssetsVerticalAssetTypesTracking = {
|
|
|
11683
11707
|
cloudId: Scalars['ID']['output'];
|
|
11684
11708
|
id: Scalars['ID']['output'];
|
|
11685
11709
|
objSchema?: Maybe<AssetsSchema>;
|
|
11686
|
-
objSchemaAri: Scalars['ID']['output'];
|
|
11687
11710
|
objType?: Maybe<AssetsObjectType>;
|
|
11688
|
-
objTypeAri: Scalars['ID']['output'];
|
|
11689
11711
|
verticalInstantiationCategoryId: Scalars['ID']['output'];
|
|
11690
11712
|
workspaceId: Scalars['ID']['output'];
|
|
11691
11713
|
};
|
|
@@ -11800,6 +11822,7 @@ export declare type AssetsVerticalBundleInstantiationResult = AssetsVerticalBund
|
|
|
11800
11822
|
export declare type AssetsVerticalBundleResult = AssetsVerticalBundle | QueryError;
|
|
11801
11823
|
export declare enum AssetsVerticalBundleType {
|
|
11802
11824
|
Cdm = "CDM",
|
|
11825
|
+
Ham = "HAM",
|
|
11803
11826
|
Osc = "OSC"
|
|
11804
11827
|
}
|
|
11805
11828
|
export declare type AssetsVerticalCountByStatus = {
|
|
@@ -11908,9 +11931,7 @@ export declare type AssetsVerticalDepreciationRuleAssetType = {
|
|
|
11908
11931
|
depreciationRuleId: Scalars['ID']['output'];
|
|
11909
11932
|
id: Scalars['ID']['output'];
|
|
11910
11933
|
objSchema?: Maybe<AssetsSchema>;
|
|
11911
|
-
objSchemaAri: Scalars['ID']['output'];
|
|
11912
11934
|
objType?: Maybe<AssetsObjectType>;
|
|
11913
|
-
objTypeAri: Scalars['ID']['output'];
|
|
11914
11935
|
};
|
|
11915
11936
|
export declare type AssetsVerticalDepreciationRuleAssetTypeConnection = {
|
|
11916
11937
|
__typename?: 'AssetsVerticalDepreciationRuleAssetTypeConnection';
|
|
@@ -11972,6 +11993,10 @@ export declare type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErr
|
|
|
11972
11993
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11973
11994
|
};
|
|
11974
11995
|
export declare type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
11996
|
+
export declare enum AssetsVerticalFlowType {
|
|
11997
|
+
Existing = "EXISTING",
|
|
11998
|
+
New = "NEW"
|
|
11999
|
+
}
|
|
11975
12000
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
11976
12001
|
cloudId: Scalars['ID']['input'];
|
|
11977
12002
|
};
|
|
@@ -12293,8 +12318,10 @@ export declare enum AssetsVerticalVerticalInstantiationCategoryStatus {
|
|
|
12293
12318
|
InProgress = "IN_PROGRESS"
|
|
12294
12319
|
}
|
|
12295
12320
|
export declare enum AssetsVerticalVerticalInstantiationCategoryType {
|
|
12321
|
+
Cdm = "CDM",
|
|
12296
12322
|
HardwareAssetTypesSelection = "HARDWARE_ASSET_TYPES_SELECTION",
|
|
12297
12323
|
ItemSelection = "ITEM_SELECTION",
|
|
12324
|
+
SpaceCreation = "SPACE_CREATION",
|
|
12298
12325
|
UserRolesAssignment = "USER_ROLES_ASSIGNMENT"
|
|
12299
12326
|
}
|
|
12300
12327
|
export declare type AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput = {
|
|
@@ -12348,6 +12375,41 @@ export declare enum AssetsVerticalVerticalInstantiationStatus {
|
|
|
12348
12375
|
Failed = "FAILED",
|
|
12349
12376
|
InProgress = "IN_PROGRESS"
|
|
12350
12377
|
}
|
|
12378
|
+
export declare type AssetsVerticalVerticalTemplate = {
|
|
12379
|
+
__typename?: 'AssetsVerticalVerticalTemplate';
|
|
12380
|
+
content: AssetsVerticalVerticalTemplateContent;
|
|
12381
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
12382
|
+
id: Scalars['ID']['output'];
|
|
12383
|
+
type: AssetsVerticalVerticalType;
|
|
12384
|
+
version: Scalars['String']['output'];
|
|
12385
|
+
};
|
|
12386
|
+
export declare type AssetsVerticalVerticalTemplateComponent = {
|
|
12387
|
+
__typename?: 'AssetsVerticalVerticalTemplateComponent';
|
|
12388
|
+
bundleType?: Maybe<AssetsVerticalBundleType>;
|
|
12389
|
+
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
12390
|
+
cdmTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
12391
|
+
};
|
|
12392
|
+
export declare type AssetsVerticalVerticalTemplateContent = {
|
|
12393
|
+
__typename?: 'AssetsVerticalVerticalTemplateContent';
|
|
12394
|
+
flows: Array<AssetsVerticalVerticalTemplateFlow>;
|
|
12395
|
+
};
|
|
12396
|
+
export declare type AssetsVerticalVerticalTemplateFlow = {
|
|
12397
|
+
__typename?: 'AssetsVerticalVerticalTemplateFlow';
|
|
12398
|
+
components: Array<AssetsVerticalVerticalTemplateComponent>;
|
|
12399
|
+
type: AssetsVerticalFlowType;
|
|
12400
|
+
};
|
|
12401
|
+
export declare enum AssetsVerticalVerticalTemplateQueryErrorCode {
|
|
12402
|
+
InvalidVersion = "INVALID_VERSION",
|
|
12403
|
+
NotFound = "NOT_FOUND",
|
|
12404
|
+
UnknownError = "UNKNOWN_ERROR"
|
|
12405
|
+
}
|
|
12406
|
+
export declare type AssetsVerticalVerticalTemplateQueryErrorExtension = QueryErrorExtension & {
|
|
12407
|
+
__typename?: 'AssetsVerticalVerticalTemplateQueryErrorExtension';
|
|
12408
|
+
code?: Maybe<AssetsVerticalVerticalTemplateQueryErrorCode>;
|
|
12409
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
12410
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
12411
|
+
};
|
|
12412
|
+
export declare type AssetsVerticalVerticalTemplateResult = AssetsVerticalVerticalTemplate | QueryError;
|
|
12351
12413
|
export declare enum AssetsVerticalVerticalType {
|
|
12352
12414
|
Ham = "HAM"
|
|
12353
12415
|
}
|
|
@@ -15588,6 +15650,7 @@ export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
|
|
|
15588
15650
|
};
|
|
15589
15651
|
export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
15590
15652
|
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
15653
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
15591
15654
|
response?: Maybe<Scalars['String']['output']>;
|
|
15592
15655
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15593
15656
|
};
|
|
@@ -15607,6 +15670,7 @@ export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
|
|
|
15607
15670
|
};
|
|
15608
15671
|
export declare type ChangeManagementUpdateLastRovoRiskAssessmentInput = {
|
|
15609
15672
|
cloudId: Scalars['ID']['input'];
|
|
15673
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
15610
15674
|
issueId: Scalars['String']['input'];
|
|
15611
15675
|
response: Scalars['String']['input'];
|
|
15612
15676
|
};
|
|
@@ -16909,6 +16973,17 @@ export declare type CommerceExpBillingPeriodDetails = {
|
|
|
16909
16973
|
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
16910
16974
|
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
16911
16975
|
};
|
|
16976
|
+
export declare type CommerceExpBillingSchedule = {
|
|
16977
|
+
__typename?: 'CommerceExpBillingSchedule';
|
|
16978
|
+
aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
|
|
16979
|
+
aggregatedTaxItems?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
16980
|
+
aggregatedUpcomingBillsLine?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
16981
|
+
billDate?: Maybe<CommerceExpBillDateResponse>;
|
|
16982
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
16983
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
16984
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
16985
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
16986
|
+
};
|
|
16912
16987
|
export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
16913
16988
|
export declare type CommerceExpBuyCurrentTrialInput = {
|
|
16914
16989
|
entitlementId: Scalars['String']['input'];
|
|
@@ -17457,7 +17532,6 @@ export declare type CommerceExpCcpPromotion = {
|
|
|
17457
17532
|
export declare type CommerceExpCcpQuery = {
|
|
17458
17533
|
__typename?: 'CommerceExpCcpQuery';
|
|
17459
17534
|
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
17460
|
-
entitlementSearch?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
17461
17535
|
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
17462
17536
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
17463
17537
|
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
@@ -17483,13 +17557,6 @@ export declare type CommerceExpCcpQuery = {
|
|
|
17483
17557
|
export declare type CommerceExpCcpQueryEntitlementArgs = {
|
|
17484
17558
|
id: Scalars['ID']['input'];
|
|
17485
17559
|
};
|
|
17486
|
-
export declare type CommerceExpCcpQueryEntitlementSearchArgs = {
|
|
17487
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
17488
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
17489
|
-
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
17490
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17491
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17492
|
-
};
|
|
17493
17560
|
export declare type CommerceExpCcpQueryEntitlementsArgs = {
|
|
17494
17561
|
ids: Array<Scalars['ID']['input']>;
|
|
17495
17562
|
};
|
|
@@ -17568,6 +17635,7 @@ export declare type CommerceExpCcpQuote = CommerceExpNode & {
|
|
|
17568
17635
|
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
17569
17636
|
aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
17570
17637
|
aggregatedUpcomingBillsLineForBAC?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
17638
|
+
billingSchedules?: Maybe<Array<Maybe<CommerceExpBillingSchedule>>>;
|
|
17571
17639
|
canUpdateIGInQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
17572
17640
|
cancelledReason?: Maybe<CommerceExpCanceledReason>;
|
|
17573
17641
|
contacts?: Maybe<Array<Maybe<CommerceExpContact>>>;
|
|
@@ -30560,6 +30628,12 @@ export declare enum ConfluenceShareableLinkAccessType {
|
|
|
30560
30628
|
External = "EXTERNAL",
|
|
30561
30629
|
InternalLicensed = "INTERNAL_LICENSED"
|
|
30562
30630
|
}
|
|
30631
|
+
export declare type ConfluenceShareableLinkPageInfo = {
|
|
30632
|
+
__typename?: 'ConfluenceShareableLinkPageInfo';
|
|
30633
|
+
endPage?: Maybe<Scalars['String']['output']>;
|
|
30634
|
+
hasNextPage?: Maybe<Scalars['Boolean']['output']>;
|
|
30635
|
+
startPage?: Maybe<Scalars['String']['output']>;
|
|
30636
|
+
};
|
|
30563
30637
|
export declare type ConfluenceShareableLinkSiteConfig = {
|
|
30564
30638
|
__typename?: 'ConfluenceShareableLinkSiteConfig';
|
|
30565
30639
|
siteConfigs: Array<Maybe<ConfluenceShareableLinkSiteSetting>>;
|
|
@@ -30574,10 +30648,25 @@ export declare enum ConfluenceShareableLinkSiteStatus {
|
|
|
30574
30648
|
Off = "OFF",
|
|
30575
30649
|
On = "ON"
|
|
30576
30650
|
}
|
|
30651
|
+
export declare type ConfluenceShareableLinkSpace = {
|
|
30652
|
+
__typename?: 'ConfluenceShareableLinkSpace';
|
|
30653
|
+
activeLinkCount: Scalars['Long']['output'];
|
|
30654
|
+
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
30655
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30656
|
+
shareableLinkSpaceConfig: Array<Maybe<ConfluenceShareableLinkSpaceSetting>>;
|
|
30657
|
+
spaceAlias?: Maybe<Scalars['String']['output']>;
|
|
30658
|
+
spaceId: Scalars['ID']['output'];
|
|
30659
|
+
spaceKey: Scalars['String']['output'];
|
|
30660
|
+
};
|
|
30577
30661
|
export declare type ConfluenceShareableLinkSpaceConfig = {
|
|
30578
30662
|
__typename?: 'ConfluenceShareableLinkSpaceConfig';
|
|
30579
30663
|
spaceConfigs?: Maybe<Array<Maybe<ConfluenceShareableLinkSpaceSetting>>>;
|
|
30580
30664
|
};
|
|
30665
|
+
export declare type ConfluenceShareableLinkSpaceConnection = {
|
|
30666
|
+
__typename?: 'ConfluenceShareableLinkSpaceConnection';
|
|
30667
|
+
nodes: Array<Maybe<ConfluenceShareableLinkSpace>>;
|
|
30668
|
+
pageInfo: ConfluenceShareableLinkPageInfo;
|
|
30669
|
+
};
|
|
30581
30670
|
export declare type ConfluenceShareableLinkSpaceSetting = {
|
|
30582
30671
|
__typename?: 'ConfluenceShareableLinkSpaceSetting';
|
|
30583
30672
|
accessType: ConfluenceShareableLinkAccessType;
|
|
@@ -30590,6 +30679,22 @@ export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
|
30590
30679
|
Off = "OFF",
|
|
30591
30680
|
On = "ON"
|
|
30592
30681
|
}
|
|
30682
|
+
export declare enum ConfluenceShareableLinkSpaceStatusFilter {
|
|
30683
|
+
ExternalBlockedByContainerPolicy = "EXTERNAL_BLOCKED_BY_CONTAINER_POLICY",
|
|
30684
|
+
ExternalBlockedByOrg = "EXTERNAL_BLOCKED_BY_ORG",
|
|
30685
|
+
ExternalBlockedByProduct = "EXTERNAL_BLOCKED_BY_PRODUCT",
|
|
30686
|
+
ExternalOff = "EXTERNAL_OFF",
|
|
30687
|
+
ExternalOn = "EXTERNAL_ON",
|
|
30688
|
+
InternalLicensedBlockedByContainerPolicy = "INTERNAL_LICENSED_BLOCKED_BY_CONTAINER_POLICY",
|
|
30689
|
+
InternalLicensedBlockedByOrg = "INTERNAL_LICENSED_BLOCKED_BY_ORG",
|
|
30690
|
+
InternalLicensedBlockedByProduct = "INTERNAL_LICENSED_BLOCKED_BY_PRODUCT",
|
|
30691
|
+
InternalLicensedOff = "INTERNAL_LICENSED_OFF",
|
|
30692
|
+
InternalLicensedOn = "INTERNAL_LICENSED_ON"
|
|
30693
|
+
}
|
|
30694
|
+
export declare enum ConfluenceShareableLinkSpacesByCriteriaOrder {
|
|
30695
|
+
ActiveLinks = "ACTIVE_LINKS",
|
|
30696
|
+
Name = "NAME"
|
|
30697
|
+
}
|
|
30593
30698
|
export declare type ConfluenceSiteConfiguration = {
|
|
30594
30699
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
30595
30700
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -30833,6 +30938,7 @@ export declare type ConfluenceSpacePermissionCombination = {
|
|
|
30833
30938
|
principalCount: Scalars['Long']['output'];
|
|
30834
30939
|
recommendation?: Maybe<ConfluencePermissionTransitionRecommendation>;
|
|
30835
30940
|
spaceCount: Scalars['Long']['output'];
|
|
30941
|
+
spacePermissions?: Maybe<Array<ConfluenceSpacePermission>>;
|
|
30836
30942
|
spaceRole?: Maybe<ConfluenceBasicSpaceRole>;
|
|
30837
30943
|
};
|
|
30838
30944
|
export declare type ConfluenceSpacePermissionCombinationConnection = {
|
|
@@ -33148,7 +33254,25 @@ export declare type ConvoAiAgentSessionCreate = {
|
|
|
33148
33254
|
export declare type ConvoAiAgentSessionNode = {
|
|
33149
33255
|
id?: Maybe<Scalars['ID']['output']>;
|
|
33150
33256
|
};
|
|
33257
|
+
export declare enum ConvoAiAgentSessionState {
|
|
33258
|
+
ArtefactReady = "ARTEFACT_READY",
|
|
33259
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
33260
|
+
Completed = "COMPLETED",
|
|
33261
|
+
Failed = "FAILED",
|
|
33262
|
+
InputRequired = "INPUT_REQUIRED",
|
|
33263
|
+
Rejected = "REJECTED",
|
|
33264
|
+
Unknown = "UNKNOWN",
|
|
33265
|
+
Working = "WORKING"
|
|
33266
|
+
}
|
|
33151
33267
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
33268
|
+
export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
33269
|
+
__typename?: 'ConvoAiAgentSessionUpdatedByProjects';
|
|
33270
|
+
agent?: Maybe<ConvoAiUser>;
|
|
33271
|
+
conversationId: Scalars['String']['output'];
|
|
33272
|
+
issueId: Scalars['String']['output'];
|
|
33273
|
+
projectId: Scalars['String']['output'];
|
|
33274
|
+
state: ConvoAiAgentSessionState;
|
|
33275
|
+
};
|
|
33152
33276
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
33153
33277
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
33154
33278
|
id: Scalars['ID']['output'];
|
|
@@ -33309,8 +33433,31 @@ export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
|
33309
33433
|
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
33310
33434
|
id: Scalars['ID']['output'];
|
|
33311
33435
|
similarityScore: Scalars['Float']['output'];
|
|
33436
|
+
sources?: Maybe<ConvoAiJiraSimilarWorkItemSuggestionSourceConnection>;
|
|
33312
33437
|
workItem?: Maybe<JiraIssue>;
|
|
33313
33438
|
};
|
|
33439
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourcesArgs = {
|
|
33440
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33441
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33442
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33443
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33444
|
+
};
|
|
33445
|
+
export declare enum ConvoAiJiraSimilarWorkItemSuggestionSource {
|
|
33446
|
+
Ers = "ERS",
|
|
33447
|
+
RecentlyCreated = "RECENTLY_CREATED",
|
|
33448
|
+
XpSearch = "XP_SEARCH"
|
|
33449
|
+
}
|
|
33450
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourceConnection = {
|
|
33451
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestionSourceConnection';
|
|
33452
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemSuggestionSourceEdge>>;
|
|
33453
|
+
pageInfo: PageInfo;
|
|
33454
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33455
|
+
};
|
|
33456
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestionSourceEdge = {
|
|
33457
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestionSourceEdge';
|
|
33458
|
+
cursor: Scalars['String']['output'];
|
|
33459
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestionSource>;
|
|
33460
|
+
};
|
|
33314
33461
|
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
33315
33462
|
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
33316
33463
|
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
@@ -33535,6 +33682,7 @@ export declare type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
33535
33682
|
};
|
|
33536
33683
|
export declare type CplsAtlasProject = {
|
|
33537
33684
|
__typename?: 'CplsAtlasProject';
|
|
33685
|
+
atlasProject?: Maybe<TownsquareProject>;
|
|
33538
33686
|
atlasProjectId: Scalars['ID']['output'];
|
|
33539
33687
|
};
|
|
33540
33688
|
export declare type CplsAtlasProjectConnection = HasPageInfo & {
|
|
@@ -34191,6 +34339,7 @@ export declare type CreateAppTunnelsInput = {
|
|
|
34191
34339
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
34192
34340
|
};
|
|
34193
34341
|
export declare type CreateAppVersionRolloutInput = {
|
|
34342
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
34194
34343
|
sourceVersionId: Scalars['ID']['input'];
|
|
34195
34344
|
targetVersionId: Scalars['ID']['input'];
|
|
34196
34345
|
};
|
|
@@ -34198,7 +34347,9 @@ export declare type CreateAppVersionRolloutPayload = Payload & {
|
|
|
34198
34347
|
__typename?: 'CreateAppVersionRolloutPayload';
|
|
34199
34348
|
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
34200
34349
|
errors?: Maybe<Array<MutationError>>;
|
|
34350
|
+
expectedRemainingUpgrades?: Maybe<Scalars['Int']['output']>;
|
|
34201
34351
|
success: Scalars['Boolean']['output'];
|
|
34352
|
+
totalEligibleUpgrades?: Maybe<Scalars['Int']['output']>;
|
|
34202
34353
|
};
|
|
34203
34354
|
export declare type CreateCardsOutput = {
|
|
34204
34355
|
__typename?: 'CreateCardsOutput';
|
|
@@ -37684,6 +37835,178 @@ export declare enum DevAiAutodevLogStatus {
|
|
|
37684
37835
|
Failed = "FAILED",
|
|
37685
37836
|
InProgress = "IN_PROGRESS"
|
|
37686
37837
|
}
|
|
37838
|
+
export declare type DevAiAutodevNextAddMembersInput = {
|
|
37839
|
+
cloudId: Scalars['ID']['input'];
|
|
37840
|
+
members: Array<DevAiAutodevNextMemberItemInput>;
|
|
37841
|
+
workstreamId: Scalars['ID']['input'];
|
|
37842
|
+
};
|
|
37843
|
+
export declare type DevAiAutodevNextAddMembersPayload = Payload & {
|
|
37844
|
+
__typename?: 'DevAiAutodevNextAddMembersPayload';
|
|
37845
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37846
|
+
members?: Maybe<Array<DevAiAutodevNextWorkstreamMember>>;
|
|
37847
|
+
success: Scalars['Boolean']['output'];
|
|
37848
|
+
};
|
|
37849
|
+
export declare type DevAiAutodevNextAddProjectsInput = {
|
|
37850
|
+
cloudId: Scalars['ID']['input'];
|
|
37851
|
+
projects: Array<DevAiAutodevNextProjectItemInput>;
|
|
37852
|
+
workstreamId: Scalars['ID']['input'];
|
|
37853
|
+
};
|
|
37854
|
+
export declare type DevAiAutodevNextAddProjectsPayload = Payload & {
|
|
37855
|
+
__typename?: 'DevAiAutodevNextAddProjectsPayload';
|
|
37856
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37857
|
+
projects?: Maybe<Array<DevAiAutodevNextProject>>;
|
|
37858
|
+
success: Scalars['Boolean']['output'];
|
|
37859
|
+
};
|
|
37860
|
+
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
37861
|
+
cloudId: Scalars['ID']['input'];
|
|
37862
|
+
members?: InputMaybe<Array<DevAiAutodevNextMemberItemInput>>;
|
|
37863
|
+
name: Scalars['String']['input'];
|
|
37864
|
+
projects?: InputMaybe<Array<DevAiAutodevNextProjectItemInput>>;
|
|
37865
|
+
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
37866
|
+
};
|
|
37867
|
+
export declare type DevAiAutodevNextCreateWorkstreamPayload = Payload & {
|
|
37868
|
+
__typename?: 'DevAiAutodevNextCreateWorkstreamPayload';
|
|
37869
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37870
|
+
success: Scalars['Boolean']['output'];
|
|
37871
|
+
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
37872
|
+
};
|
|
37873
|
+
export declare type DevAiAutodevNextDeleteWorkstreamInput = {
|
|
37874
|
+
cloudId: Scalars['ID']['input'];
|
|
37875
|
+
workstreamId: Scalars['ID']['input'];
|
|
37876
|
+
};
|
|
37877
|
+
export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
37878
|
+
__typename?: 'DevAiAutodevNextDeleteWorkstreamPayload';
|
|
37879
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37880
|
+
success: Scalars['Boolean']['output'];
|
|
37881
|
+
};
|
|
37882
|
+
export declare type DevAiAutodevNextMemberConnection = {
|
|
37883
|
+
__typename?: 'DevAiAutodevNextMemberConnection';
|
|
37884
|
+
edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
|
|
37885
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkstreamMember>>;
|
|
37886
|
+
pageInfo: PageInfo;
|
|
37887
|
+
};
|
|
37888
|
+
export declare type DevAiAutodevNextMemberEdge = {
|
|
37889
|
+
__typename?: 'DevAiAutodevNextMemberEdge';
|
|
37890
|
+
cursor: Scalars['String']['output'];
|
|
37891
|
+
node: DevAiAutodevNextWorkstreamMember;
|
|
37892
|
+
};
|
|
37893
|
+
export declare type DevAiAutodevNextMemberItemInput = {
|
|
37894
|
+
role: DevAiAutodevNextWorkstreamMemberRole;
|
|
37895
|
+
userId: Scalars['ID']['input'];
|
|
37896
|
+
};
|
|
37897
|
+
export declare type DevAiAutodevNextProject = {
|
|
37898
|
+
__typename?: 'DevAiAutodevNextProject';
|
|
37899
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37900
|
+
id: Scalars['ID']['output'];
|
|
37901
|
+
jiraProject?: Maybe<JiraProject>;
|
|
37902
|
+
jiraProjectKey?: Maybe<Scalars['String']['output']>;
|
|
37903
|
+
projectAri: Scalars['ID']['output'];
|
|
37904
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37905
|
+
workspaceId: Scalars['ID']['output'];
|
|
37906
|
+
workstreamId: Scalars['ID']['output'];
|
|
37907
|
+
};
|
|
37908
|
+
export declare type DevAiAutodevNextProjectConnection = {
|
|
37909
|
+
__typename?: 'DevAiAutodevNextProjectConnection';
|
|
37910
|
+
edges?: Maybe<Array<DevAiAutodevNextProjectEdge>>;
|
|
37911
|
+
nodes?: Maybe<Array<DevAiAutodevNextProject>>;
|
|
37912
|
+
pageInfo: PageInfo;
|
|
37913
|
+
};
|
|
37914
|
+
export declare type DevAiAutodevNextProjectEdge = {
|
|
37915
|
+
__typename?: 'DevAiAutodevNextProjectEdge';
|
|
37916
|
+
cursor: Scalars['String']['output'];
|
|
37917
|
+
node: DevAiAutodevNextProject;
|
|
37918
|
+
};
|
|
37919
|
+
export declare type DevAiAutodevNextProjectItemInput = {
|
|
37920
|
+
jiraProjectKey: Scalars['String']['input'];
|
|
37921
|
+
projectAri: Scalars['ID']['input'];
|
|
37922
|
+
};
|
|
37923
|
+
export declare type DevAiAutodevNextRemoveMembersInput = {
|
|
37924
|
+
cloudId: Scalars['ID']['input'];
|
|
37925
|
+
userIds: Array<Scalars['ID']['input']>;
|
|
37926
|
+
workstreamId: Scalars['ID']['input'];
|
|
37927
|
+
};
|
|
37928
|
+
export declare type DevAiAutodevNextRemoveMembersPayload = Payload & {
|
|
37929
|
+
__typename?: 'DevAiAutodevNextRemoveMembersPayload';
|
|
37930
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37931
|
+
success: Scalars['Boolean']['output'];
|
|
37932
|
+
};
|
|
37933
|
+
export declare type DevAiAutodevNextRemoveProjectsInput = {
|
|
37934
|
+
cloudId: Scalars['ID']['input'];
|
|
37935
|
+
projectArids: Array<Scalars['ID']['input']>;
|
|
37936
|
+
workstreamId: Scalars['ID']['input'];
|
|
37937
|
+
};
|
|
37938
|
+
export declare type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
37939
|
+
__typename?: 'DevAiAutodevNextRemoveProjectsPayload';
|
|
37940
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37941
|
+
success: Scalars['Boolean']['output'];
|
|
37942
|
+
};
|
|
37943
|
+
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
37944
|
+
cloudId: Scalars['ID']['input'];
|
|
37945
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
37946
|
+
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
37947
|
+
workstreamId: Scalars['ID']['input'];
|
|
37948
|
+
};
|
|
37949
|
+
export declare type DevAiAutodevNextUpdateWorkstreamPayload = Payload & {
|
|
37950
|
+
__typename?: 'DevAiAutodevNextUpdateWorkstreamPayload';
|
|
37951
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37952
|
+
success: Scalars['Boolean']['output'];
|
|
37953
|
+
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
37954
|
+
};
|
|
37955
|
+
export declare type DevAiAutodevNextWorkstream = {
|
|
37956
|
+
__typename?: 'DevAiAutodevNextWorkstream';
|
|
37957
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37958
|
+
id: Scalars['ID']['output'];
|
|
37959
|
+
members?: Maybe<DevAiAutodevNextMemberConnection>;
|
|
37960
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
37961
|
+
projects?: Maybe<DevAiAutodevNextProjectConnection>;
|
|
37962
|
+
settings?: Maybe<DevAiAutodevNextWorkstreamSettings>;
|
|
37963
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37964
|
+
workspaceId: Scalars['ID']['output'];
|
|
37965
|
+
};
|
|
37966
|
+
export declare type DevAiAutodevNextWorkstreamMembersArgs = {
|
|
37967
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37968
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37969
|
+
};
|
|
37970
|
+
export declare type DevAiAutodevNextWorkstreamProjectsArgs = {
|
|
37971
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37972
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37973
|
+
};
|
|
37974
|
+
export declare type DevAiAutodevNextWorkstreamConnection = {
|
|
37975
|
+
__typename?: 'DevAiAutodevNextWorkstreamConnection';
|
|
37976
|
+
edges?: Maybe<Array<DevAiAutodevNextWorkstreamEdge>>;
|
|
37977
|
+
nodes?: Maybe<Array<DevAiAutodevNextWorkstream>>;
|
|
37978
|
+
pageInfo: PageInfo;
|
|
37979
|
+
};
|
|
37980
|
+
export declare type DevAiAutodevNextWorkstreamEdge = {
|
|
37981
|
+
__typename?: 'DevAiAutodevNextWorkstreamEdge';
|
|
37982
|
+
cursor: Scalars['String']['output'];
|
|
37983
|
+
node: DevAiAutodevNextWorkstream;
|
|
37984
|
+
};
|
|
37985
|
+
export declare type DevAiAutodevNextWorkstreamMember = {
|
|
37986
|
+
__typename?: 'DevAiAutodevNextWorkstreamMember';
|
|
37987
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37988
|
+
id: Scalars['ID']['output'];
|
|
37989
|
+
role: DevAiAutodevNextWorkstreamMemberRole;
|
|
37990
|
+
user?: Maybe<User>;
|
|
37991
|
+
userId: Scalars['ID']['output'];
|
|
37992
|
+
workspaceId: Scalars['ID']['output'];
|
|
37993
|
+
workstreamId: Scalars['ID']['output'];
|
|
37994
|
+
};
|
|
37995
|
+
export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
37996
|
+
Member = "MEMBER",
|
|
37997
|
+
Owner = "OWNER"
|
|
37998
|
+
}
|
|
37999
|
+
export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
38000
|
+
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
38001
|
+
defaultJiraProjectKey?: Maybe<Scalars['String']['output']>;
|
|
38002
|
+
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
38003
|
+
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
38004
|
+
};
|
|
38005
|
+
export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
38006
|
+
defaultJiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
38007
|
+
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
38008
|
+
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
38009
|
+
};
|
|
37687
38010
|
export declare type DevAiAutofixConfiguration = {
|
|
37688
38011
|
__typename?: 'DevAiAutofixConfiguration';
|
|
37689
38012
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -40853,7 +41176,6 @@ export declare type EcosystemMutation = {
|
|
|
40853
41176
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
40854
41177
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
40855
41178
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
40856
|
-
publishGlobalRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
40857
41179
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
40858
41180
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
40859
41181
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -40892,12 +41214,6 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
40892
41214
|
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
40893
41215
|
appId: Scalars['ID']['input'];
|
|
40894
41216
|
};
|
|
40895
|
-
export declare type EcosystemMutationPublishGlobalRealtimeChannelArgs = {
|
|
40896
|
-
installationId: Scalars['ID']['input'];
|
|
40897
|
-
name: Scalars['String']['input'];
|
|
40898
|
-
payload: Scalars['String']['input'];
|
|
40899
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
40900
|
-
};
|
|
40901
41217
|
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
40902
41218
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
40903
41219
|
installationId: Scalars['ID']['input'];
|
|
@@ -41066,14 +41382,8 @@ export declare enum EcosystemRequiredProduct {
|
|
|
41066
41382
|
}
|
|
41067
41383
|
export declare type EcosystemSubscription = {
|
|
41068
41384
|
__typename?: 'EcosystemSubscription';
|
|
41069
|
-
globalRealtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
41070
41385
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
41071
41386
|
};
|
|
41072
|
-
export declare type EcosystemSubscriptionGlobalRealtimeChannelArgs = {
|
|
41073
|
-
installationId: Scalars['ID']['input'];
|
|
41074
|
-
name: Scalars['String']['input'];
|
|
41075
|
-
token?: InputMaybe<Scalars['String']['input']>;
|
|
41076
|
-
};
|
|
41077
41387
|
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
41078
41388
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
41079
41389
|
installationId: Scalars['ID']['input'];
|
|
@@ -45896,6 +46206,7 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
45896
46206
|
};
|
|
45897
46207
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
45898
46208
|
Action = "ACTION",
|
|
46209
|
+
CustomSkill = "CUSTOM_SKILL",
|
|
45899
46210
|
McpServer = "MCP_SERVER",
|
|
45900
46211
|
McpTool = "MCP_TOOL",
|
|
45901
46212
|
PlatformSkill = "PLATFORM_SKILL",
|
|
@@ -45930,6 +46241,23 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
45930
46241
|
serverUrl: Scalars['String']['output'];
|
|
45931
46242
|
templateId: Scalars['String']['output'];
|
|
45932
46243
|
};
|
|
46244
|
+
export declare type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
46245
|
+
key: Scalars['String']['input'];
|
|
46246
|
+
value: Scalars['String']['input'];
|
|
46247
|
+
};
|
|
46248
|
+
export declare type GraphIntegrationMcpAdminManagementExtraInputOption = {
|
|
46249
|
+
__typename?: 'GraphIntegrationMcpAdminManagementExtraInputOption';
|
|
46250
|
+
label: Scalars['String']['output'];
|
|
46251
|
+
value: Scalars['String']['output'];
|
|
46252
|
+
};
|
|
46253
|
+
export declare enum GraphIntegrationMcpAdminManagementExtraInputType {
|
|
46254
|
+
Select = "SELECT",
|
|
46255
|
+
TextField = "TEXT_FIELD"
|
|
46256
|
+
}
|
|
46257
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
|
|
46258
|
+
Customer = "CUSTOMER",
|
|
46259
|
+
Global = "GLOBAL"
|
|
46260
|
+
}
|
|
45933
46261
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
45934
46262
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
45935
46263
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
@@ -45947,7 +46275,9 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerExtraInput = {
|
|
|
45947
46275
|
description?: Maybe<Scalars['String']['output']>;
|
|
45948
46276
|
displayName: Scalars['String']['output'];
|
|
45949
46277
|
key: Scalars['String']['output'];
|
|
46278
|
+
options?: Maybe<Array<GraphIntegrationMcpAdminManagementExtraInputOption>>;
|
|
45950
46279
|
required: Scalars['Boolean']['output'];
|
|
46280
|
+
type: GraphIntegrationMcpAdminManagementExtraInputType;
|
|
45951
46281
|
validationPattern?: Maybe<Scalars['String']['output']>;
|
|
45952
46282
|
};
|
|
45953
46283
|
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
@@ -45965,6 +46295,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
45965
46295
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
45966
46296
|
id: Scalars['ID']['output'];
|
|
45967
46297
|
productAri?: Maybe<Scalars['String']['output']>;
|
|
46298
|
+
registrationSource: GraphIntegrationMcpAdminManagementMcpRegistrationSource;
|
|
45968
46299
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
45969
46300
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
45970
46301
|
};
|
|
@@ -46021,11 +46352,12 @@ export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
|
46021
46352
|
cloudId: Scalars['ID']['input'];
|
|
46022
46353
|
displayName: Scalars['String']['input'];
|
|
46023
46354
|
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
46355
|
+
extraInputs?: InputMaybe<Array<GraphIntegrationMcpAdminManagementExtraInputEntry>>;
|
|
46024
46356
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
46025
46357
|
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
46026
46358
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
46027
46359
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
46028
|
-
url
|
|
46360
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
46029
46361
|
};
|
|
46030
46362
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
46031
46363
|
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
@@ -46217,6 +46549,8 @@ export declare type GraphIntegrationSkillItem = {
|
|
|
46217
46549
|
};
|
|
46218
46550
|
export declare type GraphIntegrationSkillMetadata = {
|
|
46219
46551
|
__typename?: 'GraphIntegrationSkillMetadata';
|
|
46552
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
46553
|
+
createdBy?: Maybe<User>;
|
|
46220
46554
|
tags: Array<Scalars['String']['output']>;
|
|
46221
46555
|
tools: Array<GraphIntegrationSkillTool>;
|
|
46222
46556
|
version: Scalars['String']['output'];
|
|
@@ -49154,6 +49488,8 @@ export declare type GraphStore = {
|
|
|
49154
49488
|
commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
|
|
49155
49489
|
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
49156
49490
|
commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
|
|
49491
|
+
compassComponentLinkLinksEntity?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection>;
|
|
49492
|
+
compassComponentLinkLinksEntityInverse?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection>;
|
|
49157
49493
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
49158
49494
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
49159
49495
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
@@ -51334,6 +51670,22 @@ export declare type GraphStoreCommitInRepoInverseArgs = {
|
|
|
51334
51670
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51335
51671
|
sort?: InputMaybe<GraphStoreCommitInRepoSortInput>;
|
|
51336
51672
|
};
|
|
51673
|
+
export declare type GraphStoreCompassComponentLinkLinksEntityArgs = {
|
|
51674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51677
|
+
id: Scalars['ID']['input'];
|
|
51678
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51679
|
+
sort?: InputMaybe<GraphStoreCompassComponentLinkLinksEntitySortInput>;
|
|
51680
|
+
};
|
|
51681
|
+
export declare type GraphStoreCompassComponentLinkLinksEntityInverseArgs = {
|
|
51682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51683
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51685
|
+
id: Scalars['ID']['input'];
|
|
51686
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51687
|
+
sort?: InputMaybe<GraphStoreCompassComponentLinkLinksEntitySortInput>;
|
|
51688
|
+
};
|
|
51337
51689
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
51338
51690
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51339
51691
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59285,7 +59637,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
59285
59637
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
59286
59638
|
id: Scalars['ID']['output'];
|
|
59287
59639
|
};
|
|
59288
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = 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;
|
|
59640
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59289
59641
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
59290
59642
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
59291
59643
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -59310,7 +59662,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
59310
59662
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
59311
59663
|
id: Scalars['ID']['output'];
|
|
59312
59664
|
};
|
|
59313
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59665
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59314
59666
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
59315
59667
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
59316
59668
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -60185,7 +60537,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
60185
60537
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
60186
60538
|
id: Scalars['ID']['output'];
|
|
60187
60539
|
};
|
|
60188
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = 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;
|
|
60540
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60189
60541
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
60190
60542
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
60191
60543
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -60633,6 +60985,9 @@ export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
|
|
|
60633
60985
|
export declare type GraphStoreCommitInRepoSortInput = {
|
|
60634
60986
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60635
60987
|
};
|
|
60988
|
+
export declare type GraphStoreCompassComponentLinkLinksEntitySortInput = {
|
|
60989
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60990
|
+
};
|
|
60636
60991
|
export declare type GraphStoreComponentAssociatedDocumentSortInput = {
|
|
60637
60992
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60638
60993
|
};
|
|
@@ -61343,7 +61698,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
61343
61698
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
61344
61699
|
id: Scalars['ID']['output'];
|
|
61345
61700
|
};
|
|
61346
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = 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;
|
|
61701
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61347
61702
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
61348
61703
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
61349
61704
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61365,13 +61720,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
61365
61720
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
61366
61721
|
id: Scalars['ID']['output'];
|
|
61367
61722
|
};
|
|
61368
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = 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;
|
|
61723
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61369
61724
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
61370
61725
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
61371
61726
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
61372
61727
|
id: Scalars['ID']['output'];
|
|
61373
61728
|
};
|
|
61374
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = 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;
|
|
61729
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61375
61730
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
61376
61731
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
61377
61732
|
value: Scalars['Boolean']['output'];
|
|
@@ -61516,7 +61871,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
61516
61871
|
V2 = "V2",
|
|
61517
61872
|
V3 = "V3"
|
|
61518
61873
|
}
|
|
61519
|
-
export declare type GraphStoreCypherQueryValueItemUnion = 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;
|
|
61874
|
+
export declare type GraphStoreCypherQueryValueItemUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61520
61875
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
61521
61876
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
61522
61877
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -62413,7 +62768,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
62413
62768
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
62414
62769
|
id: Scalars['ID']['output'];
|
|
62415
62770
|
};
|
|
62416
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = 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;
|
|
62771
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62417
62772
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
62418
62773
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
62419
62774
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -62427,7 +62782,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
62427
62782
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
62428
62783
|
id: Scalars['ID']['output'];
|
|
62429
62784
|
};
|
|
62430
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62785
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62431
62786
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
62432
62787
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
62433
62788
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -68882,6 +69237,34 @@ export declare type GraphStoreSimplifiedCommitInRepoInverseEdge = {
|
|
|
68882
69237
|
};
|
|
68883
69238
|
export declare type GraphStoreSimplifiedCommitInRepoInverseUnion = ExternalCommit;
|
|
68884
69239
|
export declare type GraphStoreSimplifiedCommitInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
69240
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection = HasPageInfo & {
|
|
69241
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityConnection';
|
|
69242
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge>>>;
|
|
69243
|
+
pageInfo: PageInfo;
|
|
69244
|
+
};
|
|
69245
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge = {
|
|
69246
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityEdge';
|
|
69247
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69248
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69249
|
+
id: Scalars['ID']['output'];
|
|
69250
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69251
|
+
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion>;
|
|
69252
|
+
};
|
|
69253
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection = HasPageInfo & {
|
|
69254
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseConnection';
|
|
69255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge>>>;
|
|
69256
|
+
pageInfo: PageInfo;
|
|
69257
|
+
};
|
|
69258
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge = {
|
|
69259
|
+
__typename?: 'GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEdge';
|
|
69260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69262
|
+
id: Scalars['ID']['output'];
|
|
69263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69264
|
+
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
69265
|
+
};
|
|
69266
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
69267
|
+
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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68885
69268
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
68886
69269
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
68887
69270
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -69388,8 +69771,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
69388
69771
|
lastUpdated: Scalars['DateTime']['output'];
|
|
69389
69772
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
69390
69773
|
};
|
|
69391
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69392
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = 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;
|
|
69774
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69775
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69393
69776
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
69394
69777
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
69395
69778
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -73977,7 +74360,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
73977
74360
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
73978
74361
|
};
|
|
73979
74362
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
73980
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = 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;
|
|
74363
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
73981
74364
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
73982
74365
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
73983
74366
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -80572,6 +80955,8 @@ export declare type GraphStoreV2 = {
|
|
|
80572
80955
|
compassComponentHasCompassComponentLinkInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkInverseConnection>;
|
|
80573
80956
|
compassComponentLinkIsJiraSpace?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceConnection>;
|
|
80574
80957
|
compassComponentLinkIsJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverseConnection>;
|
|
80958
|
+
compassComponentLinkLinksEntity?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection>;
|
|
80959
|
+
compassComponentLinkLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection>;
|
|
80575
80960
|
compassScorecardHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection>;
|
|
80576
80961
|
compassScorecardHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalInverseConnection>;
|
|
80577
80962
|
confluenceBlogpostHasConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluenceBlogpostHasConfluenceCommentConnection>;
|
|
@@ -82990,6 +83375,20 @@ export declare type GraphStoreV2CompassComponentLinkIsJiraSpaceInverseArgs = {
|
|
|
82990
83375
|
id: Scalars['ID']['input'];
|
|
82991
83376
|
sort?: InputMaybe<GraphStoreV2CompassComponentLinkIsJiraSpaceSortInput>;
|
|
82992
83377
|
};
|
|
83378
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntityArgs = {
|
|
83379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83380
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83381
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83382
|
+
id: Scalars['ID']['input'];
|
|
83383
|
+
sort?: InputMaybe<GraphStoreV2CompassComponentLinkLinksEntitySortInput>;
|
|
83384
|
+
};
|
|
83385
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntityInverseArgs = {
|
|
83386
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83387
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83388
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83389
|
+
id: Scalars['ID']['input'];
|
|
83390
|
+
sort?: InputMaybe<GraphStoreV2CompassComponentLinkLinksEntitySortInput>;
|
|
83391
|
+
};
|
|
82993
83392
|
export declare type GraphStoreV2CompassScorecardHasAtlassianGoalArgs = {
|
|
82994
83393
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82995
83394
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87257,6 +87656,9 @@ export declare type GraphStoreV2CompassComponentHasCompassComponentLinkSortInput
|
|
|
87257
87656
|
export declare type GraphStoreV2CompassComponentLinkIsJiraSpaceSortInput = {
|
|
87258
87657
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87259
87658
|
};
|
|
87659
|
+
export declare type GraphStoreV2CompassComponentLinkLinksEntitySortInput = {
|
|
87660
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87661
|
+
};
|
|
87260
87662
|
export declare type GraphStoreV2CompassScorecardHasAtlassianGoalSortInput = {
|
|
87261
87663
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
87262
87664
|
};
|
|
@@ -87839,7 +88241,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
87839
88241
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
87840
88242
|
id: Scalars['ID']['output'];
|
|
87841
88243
|
};
|
|
87842
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = 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;
|
|
88244
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
87843
88245
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
87844
88246
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
87845
88247
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -90715,7 +91117,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
90715
91117
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
90716
91118
|
};
|
|
90717
91119
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
90718
|
-
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = 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;
|
|
91120
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
90719
91121
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
90720
91122
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
90721
91123
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -94124,6 +94526,34 @@ export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverse
|
|
|
94124
94526
|
};
|
|
94125
94527
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceInverseUnion = CompassLinkNode;
|
|
94126
94528
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkIsJiraSpaceUnion = JiraProject;
|
|
94529
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection = HasPageInfo & {
|
|
94530
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityConnection';
|
|
94531
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge>>>;
|
|
94532
|
+
pageInfo: PageInfo;
|
|
94533
|
+
};
|
|
94534
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge = {
|
|
94535
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityEdge';
|
|
94536
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94537
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94538
|
+
id: Scalars['ID']['output'];
|
|
94539
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94540
|
+
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion>;
|
|
94541
|
+
};
|
|
94542
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection = HasPageInfo & {
|
|
94543
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseConnection';
|
|
94544
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge>>>;
|
|
94545
|
+
pageInfo: PageInfo;
|
|
94546
|
+
};
|
|
94547
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge = {
|
|
94548
|
+
__typename?: 'GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseEdge';
|
|
94549
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94550
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94551
|
+
id: Scalars['ID']['output'];
|
|
94552
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94553
|
+
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
94554
|
+
};
|
|
94555
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
94556
|
+
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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94127
94557
|
export declare type GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection = HasPageInfo & {
|
|
94128
94558
|
__typename?: 'GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection';
|
|
94129
94559
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalEdge>>>;
|
|
@@ -94570,8 +95000,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
94570
95000
|
lastUpdated: Scalars['DateTime']['output'];
|
|
94571
95001
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
94572
95002
|
};
|
|
94573
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94574
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = 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;
|
|
95003
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | 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 | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95004
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94575
95005
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
94576
95006
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
94577
95007
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -99447,7 +99877,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
99447
99877
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
99448
99878
|
};
|
|
99449
99879
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
99450
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = 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;
|
|
99880
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = 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 | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
99451
99881
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
99452
99882
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
99453
99883
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -101858,6 +102288,7 @@ export declare type GravityCreateViewFromTemplateInput = {
|
|
|
101858
102288
|
projectId: Scalars['ID']['input'];
|
|
101859
102289
|
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
101860
102290
|
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
102291
|
+
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
101861
102292
|
templateId: Scalars['ID']['input'];
|
|
101862
102293
|
};
|
|
101863
102294
|
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
@@ -101869,6 +102300,7 @@ export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
|
101869
102300
|
export declare type GravityCreateViewFromUserPromptInput = {
|
|
101870
102301
|
projectId: Scalars['ID']['input'];
|
|
101871
102302
|
prompt: Scalars['String']['input'];
|
|
102303
|
+
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
101872
102304
|
};
|
|
101873
102305
|
export declare type GravityCreateViewFromUserPromptPayload = Payload & {
|
|
101874
102306
|
__typename?: 'GravityCreateViewFromUserPromptPayload';
|
|
@@ -105608,6 +106040,7 @@ export declare type InfluentsNotificationMutationArchiveAllNotificationsArgs = {
|
|
|
105608
106040
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105609
106041
|
};
|
|
105610
106042
|
export declare type InfluentsNotificationMutationArchiveNotificationsArgs = {
|
|
106043
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105611
106044
|
ids: Array<Scalars['String']['input']>;
|
|
105612
106045
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105613
106046
|
};
|
|
@@ -105617,6 +106050,7 @@ export declare type InfluentsNotificationMutationArchiveNotificationsByGroupIdAr
|
|
|
105617
106050
|
groupId: Scalars['String']['input'];
|
|
105618
106051
|
};
|
|
105619
106052
|
export declare type InfluentsNotificationMutationClearUnseenCountArgs = {
|
|
106053
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105620
106054
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
105621
106055
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105622
106056
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105625,6 +106059,7 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
105625
106059
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105626
106060
|
beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
105627
106061
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106062
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105628
106063
|
excludeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105629
106064
|
includeActor?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105630
106065
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105634,20 +106069,24 @@ export declare type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
105634
106069
|
export declare type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
105635
106070
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105636
106071
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106072
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105637
106073
|
groupId: Scalars['String']['input'];
|
|
105638
106074
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105639
106075
|
};
|
|
105640
106076
|
export declare type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
105641
106077
|
beforeInclusive?: InputMaybe<Scalars['String']['input']>;
|
|
105642
106078
|
category?: InputMaybe<InfluentsNotificationCategory>;
|
|
106079
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105643
106080
|
groupId: Scalars['String']['input'];
|
|
105644
106081
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105645
106082
|
};
|
|
105646
106083
|
export declare type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
106084
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105647
106085
|
ids: Array<Scalars['String']['input']>;
|
|
105648
106086
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105649
106087
|
};
|
|
105650
106088
|
export declare type InfluentsNotificationMutationMarkNotificationsByIdsAsUnreadArgs = {
|
|
106089
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105651
106090
|
ids: Array<Scalars['String']['input']>;
|
|
105652
106091
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105653
106092
|
};
|
|
@@ -105672,12 +106111,14 @@ export declare type InfluentsNotificationQuery = {
|
|
|
105672
106111
|
unseenNotificationCount: Scalars['Int']['output'];
|
|
105673
106112
|
};
|
|
105674
106113
|
export declare type InfluentsNotificationQueryAvailableActorsArgs = {
|
|
106114
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105675
106115
|
filter?: InputMaybe<InfluentsNotificationActorFilter>;
|
|
105676
106116
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105677
106117
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105678
106118
|
};
|
|
105679
106119
|
export declare type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
105680
106120
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
106121
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105681
106122
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
105682
106123
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105683
106124
|
flat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -105685,12 +106126,14 @@ export declare type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
|
105685
106126
|
};
|
|
105686
106127
|
export declare type InfluentsNotificationQueryNotificationGroupArgs = {
|
|
105687
106128
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
106129
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105688
106130
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
105689
106131
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105690
106132
|
groupId: Scalars['String']['input'];
|
|
105691
106133
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105692
106134
|
};
|
|
105693
106135
|
export declare type InfluentsNotificationQueryUnseenNotificationCountArgs = {
|
|
106136
|
+
collabContextRoutingAri?: InputMaybe<Scalars['String']['input']>;
|
|
105694
106137
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
105695
106138
|
routingWorkspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
105696
106139
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105939,8 +106382,9 @@ export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
|
105939
106382
|
version?: Maybe<Scalars['String']['output']>;
|
|
105940
106383
|
};
|
|
105941
106384
|
export declare enum InstallationTarget {
|
|
105942
|
-
Site = "
|
|
105943
|
-
Unit = "
|
|
106385
|
+
Site = "site",
|
|
106386
|
+
Unit = "unit",
|
|
106387
|
+
User = "user"
|
|
105944
106388
|
}
|
|
105945
106389
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
105946
106390
|
types: Array<AppEnvironmentType>;
|
|
@@ -117860,6 +118304,7 @@ export declare type JiraJqlBuilder = {
|
|
|
117860
118304
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
117861
118305
|
functions: Array<JiraJqlFunction>;
|
|
117862
118306
|
hydrateJqlQuery?: Maybe<JiraJqlHydratedQueryResult>;
|
|
118307
|
+
hydrateJqlQueryFieldsOnly?: Maybe<JiraJqlHydratedQueryFieldsOnlyResult>;
|
|
117863
118308
|
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
117864
118309
|
issueTypes?: Maybe<JiraJqlIssueTypes>;
|
|
117865
118310
|
myFilterFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -117907,6 +118352,11 @@ export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
|
117907
118352
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
117908
118353
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
117909
118354
|
};
|
|
118355
|
+
export declare type JiraJqlBuilderHydrateJqlQueryFieldsOnlyArgs = {
|
|
118356
|
+
input?: InputMaybe<JiraHydrateJqlInput>;
|
|
118357
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118358
|
+
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
118359
|
+
};
|
|
117910
118360
|
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
117911
118361
|
id: Scalars['ID']['input'];
|
|
117912
118362
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
@@ -118130,6 +118580,12 @@ export declare type JiraJqlHydratedQuery = {
|
|
|
118130
118580
|
fields: Array<JiraJqlQueryHydratedFieldResult>;
|
|
118131
118581
|
jql?: Maybe<Scalars['String']['output']>;
|
|
118132
118582
|
};
|
|
118583
|
+
export declare type JiraJqlHydratedQueryFieldsOnly = {
|
|
118584
|
+
__typename?: 'JiraJqlHydratedQueryFieldsOnly';
|
|
118585
|
+
fields: Array<JiraJqlQueryHydratedFieldsOnlyResult>;
|
|
118586
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
118587
|
+
};
|
|
118588
|
+
export declare type JiraJqlHydratedQueryFieldsOnlyResult = JiraJqlHydratedQueryFieldsOnly | QueryError;
|
|
118133
118589
|
export declare type JiraJqlHydratedQueryResult = JiraJqlHydratedQuery | QueryError;
|
|
118134
118590
|
export declare type JiraJqlIssueFieldValue = JiraJqlFieldValue & {
|
|
118135
118591
|
__typename?: 'JiraJqlIssueFieldValue';
|
|
@@ -118289,7 +118745,14 @@ export declare type JiraJqlQueryHydratedField = {
|
|
|
118289
118745
|
jqlTerm: Scalars['String']['output'];
|
|
118290
118746
|
values: Array<Maybe<JiraJqlQueryHydratedValueResult>>;
|
|
118291
118747
|
};
|
|
118748
|
+
export declare type JiraJqlQueryHydratedFieldOnly = {
|
|
118749
|
+
__typename?: 'JiraJqlQueryHydratedFieldOnly';
|
|
118750
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
118751
|
+
field: JiraJqlField;
|
|
118752
|
+
jqlTerm: Scalars['String']['output'];
|
|
118753
|
+
};
|
|
118292
118754
|
export declare type JiraJqlQueryHydratedFieldResult = JiraJqlQueryHydratedError | JiraJqlQueryHydratedField;
|
|
118755
|
+
export declare type JiraJqlQueryHydratedFieldsOnlyResult = JiraJqlQueryHydratedError | JiraJqlQueryHydratedFieldOnly;
|
|
118293
118756
|
export declare type JiraJqlQueryHydratedValue = {
|
|
118294
118757
|
__typename?: 'JiraJqlQueryHydratedValue';
|
|
118295
118758
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -124284,6 +124747,7 @@ export declare type JiraQueryLinkedIssuesArgs = {
|
|
|
124284
124747
|
cloudId: Scalars['ID']['input'];
|
|
124285
124748
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124286
124749
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124750
|
+
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124287
124751
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124288
124752
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124289
124753
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -124294,6 +124758,7 @@ export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
|
124294
124758
|
cloudId: Scalars['ID']['input'];
|
|
124295
124759
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124296
124760
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124761
|
+
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124297
124762
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124298
124763
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124299
124764
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
@@ -134013,6 +134478,7 @@ export declare type KeyValueHierarchyMap = {
|
|
|
134013
134478
|
export declare type KitsuneChunk = Node & {
|
|
134014
134479
|
__typename?: 'KitsuneChunk';
|
|
134015
134480
|
content?: Maybe<Scalars['String']['output']>;
|
|
134481
|
+
feedbackId: Scalars['ID']['output'];
|
|
134016
134482
|
id: Scalars['ID']['output'];
|
|
134017
134483
|
};
|
|
134018
134484
|
export declare type KitsuneChunkConnection = KitsuneConnection & {
|
|
@@ -134170,6 +134636,10 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
134170
134636
|
type: KitsuneFeedbackType;
|
|
134171
134637
|
updatedAt: Scalars['DateTime']['output'];
|
|
134172
134638
|
};
|
|
134639
|
+
export declare type KitsuneFeedbackHighlights = {
|
|
134640
|
+
__typename?: 'KitsuneFeedbackHighlights';
|
|
134641
|
+
content: Array<KitsuneHighlightFragment>;
|
|
134642
|
+
};
|
|
134173
134643
|
export declare enum KitsuneFeedbackType {
|
|
134174
134644
|
Call = "CALL",
|
|
134175
134645
|
Conversation = "CONVERSATION",
|
|
@@ -134226,6 +134696,10 @@ export declare type KitsuneFilterValueInput = {
|
|
|
134226
134696
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
134227
134697
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
134228
134698
|
};
|
|
134699
|
+
export declare type KitsuneHighlightFragment = {
|
|
134700
|
+
__typename?: 'KitsuneHighlightFragment';
|
|
134701
|
+
text: Scalars['String']['output'];
|
|
134702
|
+
};
|
|
134229
134703
|
export declare type KitsuneInsight = Node & {
|
|
134230
134704
|
__typename?: 'KitsuneInsight';
|
|
134231
134705
|
content: Scalars['KitsuneADF']['output'];
|
|
@@ -134253,6 +134727,8 @@ export declare type KitsuneJob = {
|
|
|
134253
134727
|
jobId: Scalars['ID']['output'];
|
|
134254
134728
|
processedItems?: Maybe<Scalars['Int']['output']>;
|
|
134255
134729
|
status: KitsuneJobStatus;
|
|
134730
|
+
statusUrl?: Maybe<Array<Scalars['String']['output']>>;
|
|
134731
|
+
tasks?: Maybe<Array<KitsuneTask>>;
|
|
134256
134732
|
totalItems?: Maybe<Scalars['Int']['output']>;
|
|
134257
134733
|
type: KitsuneJobType;
|
|
134258
134734
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -134283,6 +134759,7 @@ export declare type KitsuneNumberValue = {
|
|
|
134283
134759
|
};
|
|
134284
134760
|
export declare type KitsuneOrganization = {
|
|
134285
134761
|
__typename?: 'KitsuneOrganization';
|
|
134762
|
+
customers?: Maybe<Array<KitsuneCustomer>>;
|
|
134286
134763
|
id: Scalars['ID']['output'];
|
|
134287
134764
|
name: Scalars['String']['output'];
|
|
134288
134765
|
};
|
|
@@ -134311,6 +134788,18 @@ export declare type KitsuneRankInput = {
|
|
|
134311
134788
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
134312
134789
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
134313
134790
|
};
|
|
134791
|
+
export declare type KitsuneSearchFeedbackConnection = KitsuneConnection & {
|
|
134792
|
+
__typename?: 'KitsuneSearchFeedbackConnection';
|
|
134793
|
+
edges: Array<KitsuneSearchFeedbackEdge>;
|
|
134794
|
+
pageInfo: PageInfo;
|
|
134795
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
134796
|
+
};
|
|
134797
|
+
export declare type KitsuneSearchFeedbackEdge = KitsuneEdge & {
|
|
134798
|
+
__typename?: 'KitsuneSearchFeedbackEdge';
|
|
134799
|
+
cursor: Scalars['String']['output'];
|
|
134800
|
+
highlights?: Maybe<KitsuneFeedbackHighlights>;
|
|
134801
|
+
node?: Maybe<KitsuneFeedback>;
|
|
134802
|
+
};
|
|
134314
134803
|
export declare type KitsuneSearchFeedbackInput = {
|
|
134315
134804
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
134316
134805
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -134595,6 +135084,24 @@ export declare enum KitsuneSummaryStatus {
|
|
|
134595
135084
|
Error = "ERROR",
|
|
134596
135085
|
Generating = "GENERATING"
|
|
134597
135086
|
}
|
|
135087
|
+
export declare type KitsuneTask = {
|
|
135088
|
+
__typename?: 'KitsuneTask';
|
|
135089
|
+
createdAt: Scalars['String']['output'];
|
|
135090
|
+
failures?: Maybe<Array<KitsuneTaskFailure>>;
|
|
135091
|
+
id: Scalars['ID']['output'];
|
|
135092
|
+
status: Scalars['String']['output'];
|
|
135093
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
135094
|
+
updatedAt: Scalars['String']['output'];
|
|
135095
|
+
};
|
|
135096
|
+
export declare type KitsuneTaskFailure = {
|
|
135097
|
+
__typename?: 'KitsuneTaskFailure';
|
|
135098
|
+
entity: Scalars['String']['output'];
|
|
135099
|
+
entityId: Scalars['String']['output'];
|
|
135100
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
135101
|
+
operatedOn: Scalars['String']['output'];
|
|
135102
|
+
operatedOnIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
135103
|
+
operation: Scalars['String']['output'];
|
|
135104
|
+
};
|
|
134598
135105
|
export declare type KitsuneTextValue = {
|
|
134599
135106
|
__typename?: 'KitsuneTextValue';
|
|
134600
135107
|
_id: Scalars['ID']['output'];
|
|
@@ -135539,6 +136046,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
135539
136046
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
135540
136047
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
135541
136048
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
136049
|
+
userSearchV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
135542
136050
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
135543
136051
|
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
135544
136052
|
};
|
|
@@ -135668,6 +136176,11 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
135668
136176
|
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
135669
136177
|
ids: Array<Scalars['ID']['input']>;
|
|
135670
136178
|
};
|
|
136179
|
+
export declare type KnowledgeDiscoveryQueryApiUserSearchV2Args = {
|
|
136180
|
+
accountIds: Array<Scalars['String']['input']>;
|
|
136181
|
+
requestingUserId: Scalars['String']['input'];
|
|
136182
|
+
tenantId: Scalars['String']['input'];
|
|
136183
|
+
};
|
|
135671
136184
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
135672
136185
|
cloudId: Scalars['String']['input'];
|
|
135673
136186
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
@@ -135805,6 +136318,21 @@ export declare type KnowledgeDiscoverySearchUser = {
|
|
|
135805
136318
|
title?: Maybe<Scalars['String']['output']>;
|
|
135806
136319
|
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
135807
136320
|
};
|
|
136321
|
+
export declare type KnowledgeDiscoverySearchUserCard = {
|
|
136322
|
+
__typename?: 'KnowledgeDiscoverySearchUserCard';
|
|
136323
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
136324
|
+
id: Scalars['String']['output'];
|
|
136325
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
136326
|
+
name: Scalars['String']['output'];
|
|
136327
|
+
thirdPartyIntegrations?: Maybe<Array<KnowledgeDiscoveryThirdPartyIntegration>>;
|
|
136328
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
136329
|
+
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
136330
|
+
};
|
|
136331
|
+
export declare type KnowledgeDiscoverySearchUsers = {
|
|
136332
|
+
__typename?: 'KnowledgeDiscoverySearchUsers';
|
|
136333
|
+
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUserCard>>>;
|
|
136334
|
+
};
|
|
136335
|
+
export declare type KnowledgeDiscoverySearchUsersResult = KnowledgeDiscoverySearchUsers | QueryError;
|
|
135808
136336
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
135809
136337
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
135810
136338
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -135824,6 +136352,12 @@ export declare type KnowledgeDiscoveryTeamIntent = KnowledgeDiscoveryIntent & {
|
|
|
135824
136352
|
transformedQuery: Scalars['String']['output'];
|
|
135825
136353
|
};
|
|
135826
136354
|
export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
|
|
136355
|
+
export declare type KnowledgeDiscoveryThirdPartyIntegration = {
|
|
136356
|
+
__typename?: 'KnowledgeDiscoveryThirdPartyIntegration';
|
|
136357
|
+
externalId: Scalars['String']['output'];
|
|
136358
|
+
integrationId: Scalars['String']['output'];
|
|
136359
|
+
product: Scalars['String']['output'];
|
|
136360
|
+
};
|
|
135827
136361
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
135828
136362
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
135829
136363
|
description: Scalars['String']['output'];
|
|
@@ -139242,6 +139776,11 @@ export declare enum MarketplaceStoreAppNetworkPermissionType {
|
|
|
139242
139776
|
Scripts = "SCRIPTS",
|
|
139243
139777
|
Styles = "STYLES"
|
|
139244
139778
|
}
|
|
139779
|
+
export declare enum MarketplaceStoreAppRequestStatus {
|
|
139780
|
+
Installed = "INSTALLED",
|
|
139781
|
+
Open = "OPEN",
|
|
139782
|
+
Rejected = "REJECTED"
|
|
139783
|
+
}
|
|
139245
139784
|
export declare type MarketplaceStoreAppReview = {
|
|
139246
139785
|
author?: Maybe<MarketplaceStoreReviewAuthor>;
|
|
139247
139786
|
date?: Maybe<Scalars['String']['output']>;
|
|
@@ -139757,6 +140296,14 @@ export declare type MarketplaceStoreImageMediaAsset = {
|
|
|
139757
140296
|
uri: Scalars['String']['output'];
|
|
139758
140297
|
width: Scalars['Int']['output'];
|
|
139759
140298
|
};
|
|
140299
|
+
export declare type MarketplaceStoreInstallAppByProductIdInput = {
|
|
140300
|
+
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
140301
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
140302
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
140303
|
+
productId: Scalars['ID']['input'];
|
|
140304
|
+
secondaryTargetProducts?: InputMaybe<Array<MarketplaceStoreInstallationTargetProduct>>;
|
|
140305
|
+
target: MarketplaceStoreInstallAppTargetInput;
|
|
140306
|
+
};
|
|
139760
140307
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
139761
140308
|
appKey: Scalars['String']['input'];
|
|
139762
140309
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -139768,6 +140315,7 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
139768
140315
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
139769
140316
|
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
139770
140317
|
id: Scalars['ID']['output'];
|
|
140318
|
+
isUpmInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
139771
140319
|
orderId?: Maybe<Scalars['ID']['output']>;
|
|
139772
140320
|
status: MarketplaceStoreInstallAppStatus;
|
|
139773
140321
|
txaAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -139933,6 +140481,8 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
139933
140481
|
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
139934
140482
|
deleteReviewResponse: MarketplaceStoreDeleteReviewResponse;
|
|
139935
140483
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
140484
|
+
installAppByProductId?: Maybe<MarketplaceStoreInstallAppResponse>;
|
|
140485
|
+
updateAppRequestStatus?: Maybe<MarketplaceStoreUpdateAppRequestStatusResponse>;
|
|
139936
140486
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
139937
140487
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
139938
140488
|
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
@@ -139953,6 +140503,12 @@ export declare type MarketplaceStoreMutationApiDeleteReviewResponseArgs = {
|
|
|
139953
140503
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
139954
140504
|
input: MarketplaceStoreInstallAppInput;
|
|
139955
140505
|
};
|
|
140506
|
+
export declare type MarketplaceStoreMutationApiInstallAppByProductIdArgs = {
|
|
140507
|
+
input: MarketplaceStoreInstallAppByProductIdInput;
|
|
140508
|
+
};
|
|
140509
|
+
export declare type MarketplaceStoreMutationApiUpdateAppRequestStatusArgs = {
|
|
140510
|
+
input: MarketplaceStoreUpdateAppRequestStatusInput;
|
|
140511
|
+
};
|
|
139956
140512
|
export declare type MarketplaceStoreMutationApiUpdateReviewDownvoteArgs = {
|
|
139957
140513
|
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
139958
140514
|
};
|
|
@@ -140272,6 +140828,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
140272
140828
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
140273
140829
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
140274
140830
|
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
140831
|
+
installedAppDetailsByProductId?: Maybe<MarketplaceStoreInstalledAppDetailsResponse>;
|
|
140275
140832
|
multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
|
|
140276
140833
|
multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
|
|
140277
140834
|
myReview?: Maybe<MarketplaceStoreCurrentUserReviewResponse>;
|
|
@@ -140361,12 +140918,17 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
|
140361
140918
|
};
|
|
140362
140919
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
140363
140920
|
id: Scalars['ID']['input'];
|
|
140921
|
+
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140364
140922
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
140923
|
+
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
140365
140924
|
txaAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
140366
140925
|
};
|
|
140367
140926
|
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
140368
140927
|
input: MarketplaceStoreInstallAppInput;
|
|
140369
140928
|
};
|
|
140929
|
+
export declare type MarketplaceStoreQueryApiInstalledAppDetailsByProductIdArgs = {
|
|
140930
|
+
input: MarketplaceStoreInstallAppByProductIdInput;
|
|
140931
|
+
};
|
|
140370
140932
|
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementForAppArgs = {
|
|
140371
140933
|
input: MarketplaceStoreMultiInstanceEntitlementForAppInput;
|
|
140372
140934
|
};
|
|
@@ -140560,6 +141122,25 @@ export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
|
140560
141122
|
name: Scalars['String']['output'];
|
|
140561
141123
|
value: Scalars['Boolean']['output'];
|
|
140562
141124
|
};
|
|
141125
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusError = {
|
|
141126
|
+
__typename?: 'MarketplaceStoreUpdateAppRequestStatusError';
|
|
141127
|
+
id: Scalars['ID']['output'];
|
|
141128
|
+
message: Scalars['String']['output'];
|
|
141129
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
141130
|
+
};
|
|
141131
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusInput = {
|
|
141132
|
+
appRequestStatus: MarketplaceStoreAppRequestStatus;
|
|
141133
|
+
cloudId: Scalars['String']['input'];
|
|
141134
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
141135
|
+
edition?: InputMaybe<Scalars['String']['input']>;
|
|
141136
|
+
productId: Scalars['ID']['input'];
|
|
141137
|
+
productName: Scalars['String']['input'];
|
|
141138
|
+
};
|
|
141139
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusResponse = MarketplaceStoreUpdateAppRequestStatusError | MarketplaceStoreUpdateAppRequestStatusSuccess;
|
|
141140
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusSuccess = {
|
|
141141
|
+
__typename?: 'MarketplaceStoreUpdateAppRequestStatusSuccess';
|
|
141142
|
+
success: Scalars['Boolean']['output'];
|
|
141143
|
+
};
|
|
140563
141144
|
export declare type MarketplaceStoreUpdateReviewFlagInput = {
|
|
140564
141145
|
appKey: Scalars['String']['input'];
|
|
140565
141146
|
reviewId: Scalars['ID']['input'];
|
|
@@ -140994,7 +141575,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
140994
141575
|
id: Scalars['ID']['output'];
|
|
140995
141576
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
140996
141577
|
linkedGoals?: Maybe<GraphStoreSimplifiedChangeProposalHasAtlasGoalConnection>;
|
|
140997
|
-
linkedWork?: Maybe<Array<MercuryLinkedWork
|
|
141578
|
+
linkedWork?: Maybe<Array<Maybe<MercuryLinkedWork>>>;
|
|
140998
141579
|
name: Scalars['String']['output'];
|
|
140999
141580
|
owner?: Maybe<User>;
|
|
141000
141581
|
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
@@ -141719,8 +142300,10 @@ export declare type MercuryCustomFieldInput = {
|
|
|
141719
142300
|
booleanField?: InputMaybe<MercuryBooleanCustomFieldInput>;
|
|
141720
142301
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
141721
142302
|
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
142303
|
+
multiUserField?: InputMaybe<MercuryMultiUserCustomFieldInput>;
|
|
141722
142304
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
141723
142305
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
142306
|
+
singleUserField?: InputMaybe<MercurySingleUserCustomFieldInput>;
|
|
141724
142307
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
141725
142308
|
};
|
|
141726
142309
|
export declare enum MercuryCustomFieldKind {
|
|
@@ -142259,12 +142842,14 @@ export declare type MercuryFocusArea = Node & {
|
|
|
142259
142842
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
142260
142843
|
focusAreaType: MercuryFocusAreaType;
|
|
142261
142844
|
funding?: Maybe<MercuryFunding>;
|
|
142845
|
+
fundsPermissions?: Maybe<Array<MercuryFundsPermission>>;
|
|
142262
142846
|
goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
|
|
142263
142847
|
health?: Maybe<MercuryFocusAreaHealth>;
|
|
142264
142848
|
icon: MercuryFocusAreaIcon;
|
|
142265
142849
|
id: Scalars['ID']['output'];
|
|
142266
142850
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
142267
142851
|
linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
|
|
142852
|
+
linkedRisks?: Maybe<Array<MercuryRisk>>;
|
|
142268
142853
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
142269
142854
|
name: Scalars['String']['output'];
|
|
142270
142855
|
owner?: Maybe<User>;
|
|
@@ -142359,6 +142944,7 @@ export declare type MercuryFocusAreaBenefitSummary = {
|
|
|
142359
142944
|
financialVersionBenefitPerYearMonthSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitPerYearMonthSummary>>>;
|
|
142360
142945
|
financialVersionBenefitSummaries?: Maybe<Array<Maybe<MercuryFinancialVersionBenefitSummary>>>;
|
|
142361
142946
|
focusAreaId: Scalars['ID']['output'];
|
|
142947
|
+
returnOnInvestment?: Maybe<Scalars['Float']['output']>;
|
|
142362
142948
|
};
|
|
142363
142949
|
export declare type MercuryFocusAreaBudget = Node & {
|
|
142364
142950
|
__typename?: 'MercuryFocusAreaBudget';
|
|
@@ -142950,6 +143536,14 @@ export declare type MercuryFundsMutationApiUpdateFocusAreaBudgetAmountArgs = {
|
|
|
142950
143536
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
142951
143537
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
142952
143538
|
};
|
|
143539
|
+
export declare enum MercuryFundsPermission {
|
|
143540
|
+
CreateCostItem = "CREATE_COST_ITEM",
|
|
143541
|
+
EditBaseline = "EDIT_BASELINE",
|
|
143542
|
+
EditBudget = "EDIT_BUDGET",
|
|
143543
|
+
EditFundItem = "EDIT_FUND_ITEM",
|
|
143544
|
+
ExportFunds = "EXPORT_FUNDS",
|
|
143545
|
+
ViewFund = "VIEW_FUND"
|
|
143546
|
+
}
|
|
142953
143547
|
export declare type MercuryFundsQueryApi = {
|
|
142954
143548
|
__typename?: 'MercuryFundsQueryApi';
|
|
142955
143549
|
activeCurrency: MercuryCurrency;
|
|
@@ -142979,6 +143573,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
142979
143573
|
focusAreaBudgetsByFocusAreaIds?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
142980
143574
|
focusAreaBudgetsSearch?: Maybe<MercuryFocusAreaBudgetConnection>;
|
|
142981
143575
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
143576
|
+
fundsPermissionsByFocusAreaId?: Maybe<Array<MercuryFundsPermission>>;
|
|
142982
143577
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
142983
143578
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
142984
143579
|
};
|
|
@@ -143093,6 +143688,9 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
|
143093
143688
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
143094
143689
|
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
143095
143690
|
};
|
|
143691
|
+
export declare type MercuryFundsQueryApiFundsPermissionsByFocusAreaIdArgs = {
|
|
143692
|
+
id: Scalars['ID']['input'];
|
|
143693
|
+
};
|
|
143096
143694
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
143097
143695
|
ids: Array<Scalars['ID']['input']>;
|
|
143098
143696
|
};
|
|
@@ -143620,6 +144218,32 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
|
|
|
143620
144218
|
export declare type MercuryMultiSelectCustomFieldInput = {
|
|
143621
144219
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
143622
144220
|
};
|
|
144221
|
+
export declare type MercuryMultiUserCustomField = MercuryCustomField & {
|
|
144222
|
+
__typename?: 'MercuryMultiUserCustomField';
|
|
144223
|
+
createdBy?: Maybe<User>;
|
|
144224
|
+
createdDate: Scalars['DateTime']['output'];
|
|
144225
|
+
definition?: Maybe<MercuryMultiUserCustomFieldDefinition>;
|
|
144226
|
+
selectedUsers?: Maybe<Array<User>>;
|
|
144227
|
+
updatedBy?: Maybe<User>;
|
|
144228
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
144229
|
+
};
|
|
144230
|
+
export declare type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
144231
|
+
__typename?: 'MercuryMultiUserCustomFieldDefinition';
|
|
144232
|
+
createdBy?: Maybe<User>;
|
|
144233
|
+
createdDate: Scalars['DateTime']['output'];
|
|
144234
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
144235
|
+
fieldKind: MercuryCustomFieldKind;
|
|
144236
|
+
id: Scalars['ID']['output'];
|
|
144237
|
+
name: Scalars['String']['output'];
|
|
144238
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
144239
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
144240
|
+
updatedBy?: Maybe<User>;
|
|
144241
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
144242
|
+
visibility: MercuryCustomFieldVisibility;
|
|
144243
|
+
};
|
|
144244
|
+
export declare type MercuryMultiUserCustomFieldInput = {
|
|
144245
|
+
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144246
|
+
};
|
|
143623
144247
|
export declare type MercuryMutationApi = {
|
|
143624
144248
|
__typename?: 'MercuryMutationApi';
|
|
143625
144249
|
addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
@@ -145013,6 +145637,32 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
145013
145637
|
export declare type MercurySingleSelectCustomFieldInput = {
|
|
145014
145638
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
145015
145639
|
};
|
|
145640
|
+
export declare type MercurySingleUserCustomField = MercuryCustomField & {
|
|
145641
|
+
__typename?: 'MercurySingleUserCustomField';
|
|
145642
|
+
createdBy?: Maybe<User>;
|
|
145643
|
+
createdDate: Scalars['DateTime']['output'];
|
|
145644
|
+
definition?: Maybe<MercurySingleUserCustomFieldDefinition>;
|
|
145645
|
+
selectedUser?: Maybe<User>;
|
|
145646
|
+
updatedBy?: Maybe<User>;
|
|
145647
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
145648
|
+
};
|
|
145649
|
+
export declare type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
145650
|
+
__typename?: 'MercurySingleUserCustomFieldDefinition';
|
|
145651
|
+
createdBy?: Maybe<User>;
|
|
145652
|
+
createdDate: Scalars['DateTime']['output'];
|
|
145653
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145654
|
+
fieldKind: MercuryCustomFieldKind;
|
|
145655
|
+
id: Scalars['ID']['output'];
|
|
145656
|
+
name: Scalars['String']['output'];
|
|
145657
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
145658
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
145659
|
+
updatedBy?: Maybe<User>;
|
|
145660
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
145661
|
+
visibility: MercuryCustomFieldVisibility;
|
|
145662
|
+
};
|
|
145663
|
+
export declare type MercurySingleUserCustomFieldInput = {
|
|
145664
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
145665
|
+
};
|
|
145016
145666
|
export declare type MercurySpendAggregation = {
|
|
145017
145667
|
__typename?: 'MercurySpendAggregation';
|
|
145018
145668
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -146484,6 +147134,7 @@ export declare type Mutation = {
|
|
|
146484
147134
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
146485
147135
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
146486
147136
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
147137
|
+
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
146487
147138
|
agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
|
|
146488
147139
|
agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
|
|
146489
147140
|
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
@@ -146930,6 +147581,13 @@ export declare type Mutation = {
|
|
|
146930
147581
|
devai_addContainerConfigSecret?: Maybe<DevAiAddContainerConfigSecretPayload>;
|
|
146931
147582
|
devai_addContainerConfigVariable?: Maybe<DevAiAddContainerConfigVariablePayload>;
|
|
146932
147583
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
147584
|
+
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
147585
|
+
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
147586
|
+
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
147587
|
+
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
147588
|
+
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
147589
|
+
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
147590
|
+
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
146933
147591
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
146934
147592
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
146935
147593
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
@@ -147954,6 +148612,9 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
147954
148612
|
agentId: Scalars['ID']['input'];
|
|
147955
148613
|
cloudId: Scalars['ID']['input'];
|
|
147956
148614
|
};
|
|
148615
|
+
export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
148616
|
+
input: AgentWorkspaceStartBulkImportInput;
|
|
148617
|
+
};
|
|
147957
148618
|
export declare type MutationAgentWorkspace_SubscribeSkillArgs = {
|
|
147958
148619
|
input: AgentWorkspaceSubscribeSkillInput;
|
|
147959
148620
|
};
|
|
@@ -149591,6 +150252,27 @@ export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
|
149591
150252
|
cloudId: Scalars['ID']['input'];
|
|
149592
150253
|
jobId: Scalars['ID']['input'];
|
|
149593
150254
|
};
|
|
150255
|
+
export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
150256
|
+
input: DevAiAutodevNextAddMembersInput;
|
|
150257
|
+
};
|
|
150258
|
+
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
150259
|
+
input: DevAiAutodevNextAddProjectsInput;
|
|
150260
|
+
};
|
|
150261
|
+
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
150262
|
+
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
150263
|
+
};
|
|
150264
|
+
export declare type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
150265
|
+
input: DevAiAutodevNextDeleteWorkstreamInput;
|
|
150266
|
+
};
|
|
150267
|
+
export declare type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
150268
|
+
input: DevAiAutodevNextRemoveMembersInput;
|
|
150269
|
+
};
|
|
150270
|
+
export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
150271
|
+
input: DevAiAutodevNextRemoveProjectsInput;
|
|
150272
|
+
};
|
|
150273
|
+
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
150274
|
+
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
150275
|
+
};
|
|
149594
150276
|
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
149595
150277
|
id: Scalars['ID']['input'];
|
|
149596
150278
|
};
|
|
@@ -154282,6 +154964,7 @@ export declare type PostOfficeContextInput = {
|
|
|
154282
154964
|
isSiteAdmin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
154283
154965
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
154284
154966
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
154967
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
154285
154968
|
productEdition?: InputMaybe<Scalars['String']['input']>;
|
|
154286
154969
|
scopes?: InputMaybe<PostOfficeActiveScopesInput>;
|
|
154287
154970
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154320,7 +155003,7 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
154320
155003
|
Explicit = "explicit",
|
|
154321
155004
|
Implicit = "implicit"
|
|
154322
155005
|
}
|
|
154323
|
-
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
155006
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData | PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData | PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData | PostOfficeMessageRovoNudgeLiveAndPersistedTestMessageData | PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData;
|
|
154324
155007
|
export declare type PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData = {
|
|
154325
155008
|
__typename?: 'PostOfficeMessageLiveNudgeDemoLiveNudgeDemoMessageData';
|
|
154326
155009
|
description: Scalars['String']['output'];
|
|
@@ -154330,6 +155013,11 @@ export declare type PostOfficeMessagePayload = {
|
|
|
154330
155013
|
__typename?: 'PostOfficeMessagePayload';
|
|
154331
155014
|
messages: Array<PostOfficeMessage>;
|
|
154332
155015
|
};
|
|
155016
|
+
export declare type PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData = {
|
|
155017
|
+
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardBacklogUpdateWorkSuggestionsData';
|
|
155018
|
+
conversationChannelId: Scalars['String']['output'];
|
|
155019
|
+
numberOfSuggestions: Scalars['Float']['output'];
|
|
155020
|
+
};
|
|
154333
155021
|
export declare type PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData = {
|
|
154334
155022
|
__typename?: 'PostOfficeMessageRovoNudgeJiraBoardCatchUpRovoNudgeData';
|
|
154335
155023
|
description: Scalars['String']['output'];
|
|
@@ -154846,6 +155534,7 @@ export declare type Query = {
|
|
|
154846
155534
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
154847
155535
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
154848
155536
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
155537
|
+
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
154849
155538
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
154850
155539
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
154851
155540
|
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
@@ -154983,6 +155672,7 @@ export declare type Query = {
|
|
|
154983
155672
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
154984
155673
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
154985
155674
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
155675
|
+
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
154986
155676
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
154987
155677
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
154988
155678
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -155010,6 +155700,7 @@ export declare type Query = {
|
|
|
155010
155700
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
155011
155701
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
155012
155702
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
155703
|
+
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
155013
155704
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
155014
155705
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
155015
155706
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
@@ -155218,6 +155909,7 @@ export declare type Query = {
|
|
|
155218
155909
|
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
155219
155910
|
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
155220
155911
|
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
155912
|
+
confluence_shareableLinkSpacesByCriteria?: Maybe<ConfluenceShareableLinkSpaceConnection>;
|
|
155221
155913
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
155222
155914
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
155223
155915
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
@@ -155353,6 +156045,8 @@ export declare type Query = {
|
|
|
155353
156045
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
155354
156046
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
155355
156047
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
156048
|
+
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
156049
|
+
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
155356
156050
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
155357
156051
|
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
155358
156052
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
@@ -155593,6 +156287,7 @@ export declare type Query = {
|
|
|
155593
156287
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
155594
156288
|
jsw?: Maybe<JswQuery>;
|
|
155595
156289
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
156290
|
+
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
155596
156291
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
155597
156292
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
155598
156293
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
@@ -155601,10 +156296,13 @@ export declare type Query = {
|
|
|
155601
156296
|
kitsune_insights?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
155602
156297
|
kitsune_jobs?: Maybe<Array<Maybe<KitsuneJob>>>;
|
|
155603
156298
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
156299
|
+
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
155604
156300
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
155605
156301
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
156302
|
+
kitsune_searchChunk?: Maybe<Array<KitsuneChunk>>;
|
|
155606
156303
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
155607
156304
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
156305
|
+
kitsune_searchFeedbackWithHighlights?: Maybe<KitsuneSearchFeedbackConnection>;
|
|
155608
156306
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
155609
156307
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
155610
156308
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
@@ -155872,6 +156570,9 @@ export declare type Query = {
|
|
|
155872
156570
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
155873
156571
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
155874
156572
|
spf_starredItems?: Maybe<SpfStarredItemConnection>;
|
|
156573
|
+
spf_view?: Maybe<SpfViewResult>;
|
|
156574
|
+
spf_views?: Maybe<SpfViewConnection>;
|
|
156575
|
+
spf_viewsByIds?: Maybe<Array<Maybe<SpfView>>>;
|
|
155875
156576
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
155876
156577
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
155877
156578
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -156585,6 +157286,11 @@ export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
|
156585
157286
|
cloudId: Scalars['ID']['input'];
|
|
156586
157287
|
projectKey: Scalars['String']['input'];
|
|
156587
157288
|
};
|
|
157289
|
+
export declare type QueryAgentWorkspace_BulkScheduleImportJobArgs = {
|
|
157290
|
+
cloudId: Scalars['ID']['input'];
|
|
157291
|
+
jobId: Scalars['ID']['input'];
|
|
157292
|
+
projectId: Scalars['ID']['input'];
|
|
157293
|
+
};
|
|
156588
157294
|
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
156589
157295
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156590
157296
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -157286,6 +157992,11 @@ export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
|
157286
157992
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157287
157993
|
type?: InputMaybe<AssetsVerticalVerticalType>;
|
|
157288
157994
|
};
|
|
157995
|
+
export declare type QueryAssetsVertical_VerticalTemplateArgs = {
|
|
157996
|
+
cloudId: Scalars['ID']['input'];
|
|
157997
|
+
type: AssetsVerticalVerticalType;
|
|
157998
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
157999
|
+
};
|
|
157289
158000
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
157290
158001
|
id: Scalars['ID']['input'];
|
|
157291
158002
|
};
|
|
@@ -157358,19 +158069,22 @@ export declare type QueryAvp_GetChartArgs = {
|
|
|
157358
158069
|
export declare type QueryAvp_GetChartByConfigIdArgs = {
|
|
157359
158070
|
chartConfigId: Scalars['ID']['input'];
|
|
157360
158071
|
cloudId: Scalars['ID']['input'];
|
|
157361
|
-
|
|
158072
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158073
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157362
158074
|
};
|
|
157363
158075
|
export declare type QueryAvp_GetChartTemplatePreviewArgs = {
|
|
157364
158076
|
cloudId: Scalars['ID']['input'];
|
|
157365
158077
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157366
158078
|
templateFileName: Scalars['String']['input'];
|
|
157367
|
-
|
|
158079
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158080
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157368
158081
|
};
|
|
157369
158082
|
export declare type QueryAvp_GetChartTemplatesArgs = {
|
|
157370
158083
|
cloudId: Scalars['ID']['input'];
|
|
157371
158084
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157372
158085
|
locations: Array<Scalars['String']['input']>;
|
|
157373
|
-
|
|
158086
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158087
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157374
158088
|
};
|
|
157375
158089
|
export declare type QueryAvp_GetDashboardArgs = {
|
|
157376
158090
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -157378,7 +158092,8 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
157378
158092
|
export declare type QueryAvp_GetDashboardIdBySlugArgs = {
|
|
157379
158093
|
cloudId: Scalars['ID']['input'];
|
|
157380
158094
|
slug: Scalars['String']['input'];
|
|
157381
|
-
|
|
158095
|
+
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
158096
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
157382
158097
|
};
|
|
157383
158098
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
157384
158099
|
input: AvpGetDashboardTemplatesInput;
|
|
@@ -157386,6 +158101,14 @@ export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
|
157386
158101
|
export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
157387
158102
|
ids: Array<Scalars['ID']['input']>;
|
|
157388
158103
|
};
|
|
158104
|
+
export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
158105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158106
|
+
cloudId: Scalars['ID']['input'];
|
|
158107
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
158108
|
+
first: Scalars['Int']['input'];
|
|
158109
|
+
status: AvpDashboardStatus;
|
|
158110
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158111
|
+
};
|
|
157389
158112
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
157390
158113
|
dashboardAri: Scalars['ID']['input'];
|
|
157391
158114
|
};
|
|
@@ -158265,6 +158988,15 @@ export declare type QueryConfluence_ShareableLinkSpaceConfigArgs = {
|
|
|
158265
158988
|
cloudId: Scalars['ID']['input'];
|
|
158266
158989
|
spaceId: Scalars['ID']['input'];
|
|
158267
158990
|
};
|
|
158991
|
+
export declare type QueryConfluence_ShareableLinkSpacesByCriteriaArgs = {
|
|
158992
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158993
|
+
cloudId: Scalars['ID']['input'];
|
|
158994
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158995
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158996
|
+
orderBy?: InputMaybe<ConfluenceShareableLinkSpacesByCriteriaOrder>;
|
|
158997
|
+
spaceNamePattern?: InputMaybe<Scalars['String']['input']>;
|
|
158998
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkSpaceStatusFilter>>>;
|
|
158999
|
+
};
|
|
158268
159000
|
export declare type QueryConfluence_SlideArgs = {
|
|
158269
159001
|
id: Scalars['ID']['input'];
|
|
158270
159002
|
};
|
|
@@ -158922,6 +159654,15 @@ export declare type QueryDevai_AutodevJobsForIssueArgs = {
|
|
|
158922
159654
|
issueAri: Scalars['ID']['input'];
|
|
158923
159655
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158924
159656
|
};
|
|
159657
|
+
export declare type QueryDevai_AutodevNextWorkstreamArgs = {
|
|
159658
|
+
cloudId: Scalars['ID']['input'];
|
|
159659
|
+
workstreamId: Scalars['ID']['input'];
|
|
159660
|
+
};
|
|
159661
|
+
export declare type QueryDevai_AutodevNextWorkstreamsArgs = {
|
|
159662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159663
|
+
cloudId: Scalars['ID']['input'];
|
|
159664
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159665
|
+
};
|
|
158925
159666
|
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
158926
159667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158927
159668
|
cloudId: Scalars['ID']['input'];
|
|
@@ -158949,6 +159690,7 @@ export declare type QueryDevai_ContainerConfigArgs = {
|
|
|
158949
159690
|
export declare type QueryDevai_FlowGetRepositoriesArgs = {
|
|
158950
159691
|
cloudId: Scalars['ID']['input'];
|
|
158951
159692
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
159693
|
+
searchAllConnectedRepos?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158952
159694
|
};
|
|
158953
159695
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
158954
159696
|
id: Scalars['ID']['input'];
|
|
@@ -159841,6 +160583,9 @@ export declare type QueryJsmConversation_SettingsArgs = {
|
|
|
159841
160583
|
export declare type QueryKitsune_ChunksArgs = {
|
|
159842
160584
|
ids: Array<Scalars['ID']['input']>;
|
|
159843
160585
|
};
|
|
160586
|
+
export declare type QueryKitsune_CustomerByAriArgs = {
|
|
160587
|
+
ari: Scalars['ID']['input'];
|
|
160588
|
+
};
|
|
159844
160589
|
export declare type QueryKitsune_CustomersArgs = {
|
|
159845
160590
|
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159846
160591
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -159868,6 +160613,9 @@ export declare type QueryKitsune_JobsArgs = {
|
|
|
159868
160613
|
export declare type QueryKitsune_NodeArgs = {
|
|
159869
160614
|
id: Scalars['ID']['input'];
|
|
159870
160615
|
};
|
|
160616
|
+
export declare type QueryKitsune_OrganizationByAriArgs = {
|
|
160617
|
+
ari: Scalars['ID']['input'];
|
|
160618
|
+
};
|
|
159871
160619
|
export declare type QueryKitsune_OrganizationsArgs = {
|
|
159872
160620
|
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159873
160621
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -159876,6 +160624,13 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
159876
160624
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
159877
160625
|
workspaceAri: Scalars['ID']['input'];
|
|
159878
160626
|
};
|
|
160627
|
+
export declare type QueryKitsune_SearchChunkArgs = {
|
|
160628
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
160629
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
160630
|
+
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
160631
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
160632
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160633
|
+
};
|
|
159879
160634
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
159880
160635
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159881
160636
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159884,6 +160639,17 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
159884
160639
|
workspaceAri: Scalars['ID']['input'];
|
|
159885
160640
|
};
|
|
159886
160641
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
160642
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
160643
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
160644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160645
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
160646
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
160647
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
160648
|
+
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160649
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
160650
|
+
workspaceAri: Scalars['ID']['input'];
|
|
160651
|
+
};
|
|
160652
|
+
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
159887
160653
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159888
160654
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
159889
160655
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159914,6 +160680,7 @@ export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
159914
160680
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159915
160681
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159916
160682
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
160683
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
159917
160684
|
workspaceAri: Scalars['ID']['input'];
|
|
159918
160685
|
};
|
|
159919
160686
|
export declare type QueryKitsune_ViewsArgs = {
|
|
@@ -160858,6 +161625,18 @@ export declare type QuerySpf_StarredItemsArgs = {
|
|
|
160858
161625
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160859
161626
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
160860
161627
|
};
|
|
161628
|
+
export declare type QuerySpf_ViewArgs = {
|
|
161629
|
+
id: Scalars['ID']['input'];
|
|
161630
|
+
};
|
|
161631
|
+
export declare type QuerySpf_ViewsArgs = {
|
|
161632
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161633
|
+
cloudId: Scalars['ID']['input'];
|
|
161634
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161635
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
161636
|
+
};
|
|
161637
|
+
export declare type QuerySpf_ViewsByIdsArgs = {
|
|
161638
|
+
ids: Array<Scalars['ID']['input']>;
|
|
161639
|
+
};
|
|
160861
161640
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
160862
161641
|
appId: Scalars['ID']['input'];
|
|
160863
161642
|
installationId: Scalars['ID']['input'];
|
|
@@ -161625,6 +162404,7 @@ export declare enum RadarEntityType {
|
|
|
161625
162404
|
Position = "position",
|
|
161626
162405
|
Proposal = "proposal",
|
|
161627
162406
|
ProposedMovement = "proposedMovement",
|
|
162407
|
+
Skill = "skill",
|
|
161628
162408
|
Team = "team",
|
|
161629
162409
|
View = "view",
|
|
161630
162410
|
Worker = "worker"
|
|
@@ -161701,6 +162481,7 @@ export declare type RadarFields = {
|
|
|
161701
162481
|
positionFields: Array<RadarFieldDefinition>;
|
|
161702
162482
|
proposalFields: Array<RadarFieldDefinition>;
|
|
161703
162483
|
proposedMovementFields: Array<RadarFieldDefinition>;
|
|
162484
|
+
skillFields: Array<RadarFieldDefinition>;
|
|
161704
162485
|
teamFields: Array<RadarFieldDefinition>;
|
|
161705
162486
|
viewFields: Array<RadarFieldDefinition>;
|
|
161706
162487
|
workerFields: Array<RadarFieldDefinition>;
|
|
@@ -162271,6 +163052,10 @@ export declare enum RateLimitingCurrency {
|
|
|
162271
163052
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
162272
163053
|
JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
|
|
162273
163054
|
JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
|
|
163055
|
+
KitsuneCsv = "KITSUNE_CSV",
|
|
163056
|
+
KitsuneCustomer = "KITSUNE_CUSTOMER",
|
|
163057
|
+
KitsuneFeedback = "KITSUNE_FEEDBACK",
|
|
163058
|
+
KitsuneInsight = "KITSUNE_INSIGHT",
|
|
162274
163059
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
162275
163060
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
162276
163061
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
@@ -164296,10 +165081,15 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
164296
165081
|
siteMetadata: SearchConfigurationSiteMetadata;
|
|
164297
165082
|
thirdPartyFilterOptions?: Maybe<SearchThirdPartyDynamicFilterOptions>;
|
|
164298
165083
|
thirdPartyProducts: Array<SearchThirdPartyMetadata>;
|
|
165084
|
+
thirdPartySlackChannels?: Maybe<SearchThirdPartySlackChannelOptions>;
|
|
164299
165085
|
};
|
|
164300
165086
|
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
164301
165087
|
datasourceId: Scalars['String']['input'];
|
|
164302
165088
|
};
|
|
165089
|
+
export declare type SearchGraphQlConfigurationResponseThirdPartySlackChannelsArgs = {
|
|
165090
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
165091
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
165092
|
+
};
|
|
164303
165093
|
export declare type SearchInput = {
|
|
164304
165094
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164305
165095
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
@@ -164834,6 +165624,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
164834
165624
|
title: Scalars['String']['output'];
|
|
164835
165625
|
type: SearchResultType;
|
|
164836
165626
|
url: Scalars['String']['output'];
|
|
165627
|
+
workspaceName?: Maybe<Scalars['String']['output']>;
|
|
164837
165628
|
};
|
|
164838
165629
|
export declare type SearchResultGraphTab = {
|
|
164839
165630
|
__typename?: 'SearchResultGraphTab';
|
|
@@ -165158,6 +165949,8 @@ export declare enum SearchResultType {
|
|
|
165158
165949
|
Whiteboard = "whiteboard"
|
|
165159
165950
|
}
|
|
165160
165951
|
export declare type SearchSalesforceFilters = {
|
|
165952
|
+
campaignStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165953
|
+
caseStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165161
165954
|
closeDate?: InputMaybe<Scalars['String']['input']>;
|
|
165162
165955
|
isClosed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165163
165956
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -165239,6 +166032,7 @@ export declare type SearchThirdPartyMetadata = {
|
|
|
165239
166032
|
workspaceUrl?: Maybe<Scalars['String']['output']>;
|
|
165240
166033
|
};
|
|
165241
166034
|
export declare type SearchThirdPartyProduct = {
|
|
166035
|
+
channels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
165242
166036
|
connectionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165243
166037
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165244
166038
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -165260,6 +166054,20 @@ export declare type SearchThirdPartyRangeFilter = {
|
|
|
165260
166054
|
gt?: InputMaybe<Scalars['String']['input']>;
|
|
165261
166055
|
lt?: InputMaybe<Scalars['String']['input']>;
|
|
165262
166056
|
};
|
|
166057
|
+
export declare type SearchThirdPartySlackChannel = {
|
|
166058
|
+
__typename?: 'SearchThirdPartySlackChannel';
|
|
166059
|
+
id: Scalars['String']['output'];
|
|
166060
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
166061
|
+
name: Scalars['String']['output'];
|
|
166062
|
+
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
166063
|
+
purpose?: Maybe<Scalars['String']['output']>;
|
|
166064
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
166065
|
+
};
|
|
166066
|
+
export declare type SearchThirdPartySlackChannelOptions = {
|
|
166067
|
+
__typename?: 'SearchThirdPartySlackChannelOptions';
|
|
166068
|
+
channels: Array<SearchThirdPartySlackChannel>;
|
|
166069
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
166070
|
+
};
|
|
165263
166071
|
export declare type SearchTimeseriesCtr = {
|
|
165264
166072
|
__typename?: 'SearchTimeseriesCTR';
|
|
165265
166073
|
nodes: Array<SearchTimeseriesCtrItem>;
|
|
@@ -186511,6 +187319,40 @@ export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
|
186511
187319
|
planScenario?: Maybe<SpfPlanScenario>;
|
|
186512
187320
|
success: Scalars['Boolean']['output'];
|
|
186513
187321
|
};
|
|
187322
|
+
export declare type SpfView = Node & {
|
|
187323
|
+
__typename?: 'SpfView';
|
|
187324
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
187325
|
+
createdBy?: Maybe<User>;
|
|
187326
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
187327
|
+
entityType: Scalars['String']['output'];
|
|
187328
|
+
id: Scalars['ID']['output'];
|
|
187329
|
+
name: Scalars['String']['output'];
|
|
187330
|
+
settings: SpfViewSettings;
|
|
187331
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
187332
|
+
updatedBy?: Maybe<User>;
|
|
187333
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
187334
|
+
};
|
|
187335
|
+
export declare type SpfViewConnection = {
|
|
187336
|
+
__typename?: 'SpfViewConnection';
|
|
187337
|
+
edges?: Maybe<Array<Maybe<SpfViewEdge>>>;
|
|
187338
|
+
pageInfo: PageInfo;
|
|
187339
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
187340
|
+
};
|
|
187341
|
+
export declare type SpfViewEdge = {
|
|
187342
|
+
__typename?: 'SpfViewEdge';
|
|
187343
|
+
cursor: Scalars['String']['output'];
|
|
187344
|
+
node?: Maybe<SpfViewResult>;
|
|
187345
|
+
};
|
|
187346
|
+
export declare type SpfViewResult = QueryError | SpfView;
|
|
187347
|
+
export declare type SpfViewSettingValue = {
|
|
187348
|
+
__typename?: 'SpfViewSettingValue';
|
|
187349
|
+
key: Scalars['String']['output'];
|
|
187350
|
+
value: Scalars['String']['output'];
|
|
187351
|
+
};
|
|
187352
|
+
export declare type SpfViewSettings = {
|
|
187353
|
+
__typename?: 'SpfViewSettings';
|
|
187354
|
+
values: Array<SpfViewSettingValue>;
|
|
187355
|
+
};
|
|
186514
187356
|
export declare type SplitIssueInput = {
|
|
186515
187357
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
186516
187358
|
originalIssue: OriginalSplitIssue;
|
|
@@ -188223,6 +189065,7 @@ export declare type Subscription = {
|
|
|
188223
189065
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
188224
189066
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
188225
189067
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
189068
|
+
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
188226
189069
|
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
188227
189070
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
188228
189071
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
@@ -188278,6 +189121,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
|
188278
189121
|
cloudId: Scalars['ID']['input'];
|
|
188279
189122
|
conversationId: Scalars['ID']['input'];
|
|
188280
189123
|
};
|
|
189124
|
+
export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
189125
|
+
cloudId: Scalars['ID']['input'];
|
|
189126
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
189127
|
+
};
|
|
188281
189128
|
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
188282
189129
|
scopeId: Scalars['ID']['input'];
|
|
188283
189130
|
};
|
|
@@ -189825,7 +190672,6 @@ export declare type TestingSubscription = {
|
|
|
189825
190672
|
__typename?: 'TestingSubscription';
|
|
189826
190673
|
onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
|
|
189827
190674
|
onTestingActivityItemUpdateEnrichJira?: Maybe<TestingActivityItem>;
|
|
189828
|
-
onTestingActivityItemUpdateTest?: Maybe<TestingActivityItem>;
|
|
189829
190675
|
};
|
|
189830
190676
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
189831
190677
|
issueId: Scalars['ID']['input'];
|
|
@@ -189833,9 +190679,6 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
|
189833
190679
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
|
|
189834
190680
|
issueId: Scalars['ID']['input'];
|
|
189835
190681
|
};
|
|
189836
|
-
export declare type TestingSubscriptionOnTestingActivityItemUpdateTestArgs = {
|
|
189837
|
-
issueId: Scalars['ID']['input'];
|
|
189838
|
-
};
|
|
189839
190682
|
export declare type Theme = {
|
|
189840
190683
|
__typename?: 'Theme';
|
|
189841
190684
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -189887,6 +190730,7 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
189887
190730
|
__typename?: 'ThirdPartyUser';
|
|
189888
190731
|
accountId: Scalars['ID']['output'];
|
|
189889
190732
|
accountStatus: AccountStatus;
|
|
190733
|
+
atlassianUser?: Maybe<User>;
|
|
189890
190734
|
canonicalAccountId: Scalars['ID']['output'];
|
|
189891
190735
|
createdAt: Scalars['DateTime']['output'];
|
|
189892
190736
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -191039,16 +191883,28 @@ export declare enum TownsquareGoalIconKey {
|
|
|
191039
191883
|
KeyResult = "KEY_RESULT",
|
|
191040
191884
|
Objective = "OBJECTIVE"
|
|
191041
191885
|
}
|
|
191886
|
+
export declare type TownsquareGoalManageAccessAddedInput = {
|
|
191887
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191888
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
191889
|
+
role: TownsquareGoalAccessRoleInput;
|
|
191890
|
+
};
|
|
191042
191891
|
export declare type TownsquareGoalManageAccessInput = {
|
|
191043
191892
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
191893
|
+
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
191044
191894
|
goalId: Scalars['ID']['input'];
|
|
191895
|
+
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
191045
191896
|
};
|
|
191046
191897
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
191047
191898
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
191899
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
191048
191900
|
errors?: Maybe<Array<MutationError>>;
|
|
191049
191901
|
goal?: Maybe<TownsquareGoal>;
|
|
191902
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
191050
191903
|
success: Scalars['Boolean']['output'];
|
|
191051
191904
|
};
|
|
191905
|
+
export declare type TownsquareGoalManageAccessRevokedInput = {
|
|
191906
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
191907
|
+
};
|
|
191052
191908
|
export declare type TownsquareGoalMetricUpdate = {
|
|
191053
191909
|
__typename?: 'TownsquareGoalMetricUpdate';
|
|
191054
191910
|
metric?: Maybe<TownsquareMetric>;
|
|
@@ -192561,16 +193417,29 @@ export declare type TownsquareProjectGrantAccessPayload = {
|
|
|
192561
193417
|
project?: Maybe<TownsquareProject>;
|
|
192562
193418
|
success: Scalars['Boolean']['output'];
|
|
192563
193419
|
};
|
|
193420
|
+
export declare type TownsquareProjectManageAccessAddedInput = {
|
|
193421
|
+
addAsContributor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193422
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193423
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
193424
|
+
role: TownsquareProjectAccessRoleInput;
|
|
193425
|
+
};
|
|
192564
193426
|
export declare type TownsquareProjectManageAccessInput = {
|
|
192565
193427
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
193428
|
+
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
192566
193429
|
projectId: Scalars['ID']['input'];
|
|
193430
|
+
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
192567
193431
|
};
|
|
192568
193432
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
192569
193433
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
193434
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
192570
193435
|
errors?: Maybe<Array<MutationError>>;
|
|
192571
193436
|
project?: Maybe<TownsquareProject>;
|
|
193437
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
192572
193438
|
success: Scalars['Boolean']['output'];
|
|
192573
193439
|
};
|
|
193440
|
+
export declare type TownsquareProjectManageAccessRevokedInput = {
|
|
193441
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
193442
|
+
};
|
|
192574
193443
|
export declare enum TownsquareProjectPhase {
|
|
192575
193444
|
Done = "done",
|
|
192576
193445
|
InProgress = "in_progress",
|
|
@@ -194765,6 +195634,11 @@ export declare type TrelloBoardRestrictions = {
|
|
|
194765
195634
|
private?: Maybe<Scalars['String']['output']>;
|
|
194766
195635
|
public?: Maybe<Scalars['String']['output']>;
|
|
194767
195636
|
};
|
|
195637
|
+
export declare type TrelloBoardSearchResult = {
|
|
195638
|
+
__typename?: 'TrelloBoardSearchResult';
|
|
195639
|
+
options?: Maybe<TrelloSearchOptions>;
|
|
195640
|
+
results?: Maybe<TrelloSearchBoardConnection>;
|
|
195641
|
+
};
|
|
194768
195642
|
export declare type TrelloBoardStarConnectionUpdated = {
|
|
194769
195643
|
__typename?: 'TrelloBoardStarConnectionUpdated';
|
|
194770
195644
|
edges?: Maybe<Array<TrelloBoardStarUpdatedEdge>>;
|
|
@@ -195740,6 +196614,21 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
195740
196614
|
card?: Maybe<TrelloActionCardEntity>;
|
|
195741
196615
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
195742
196616
|
};
|
|
196617
|
+
export declare type TrelloCreateListInput = {
|
|
196618
|
+
boardId: Scalars['ID']['input'];
|
|
196619
|
+
color?: InputMaybe<TrelloListColor>;
|
|
196620
|
+
creationMethod?: InputMaybe<TrelloListCreationMethod>;
|
|
196621
|
+
dataSource?: InputMaybe<TrelloListDataSourceInput>;
|
|
196622
|
+
name: Scalars['String']['input'];
|
|
196623
|
+
pos?: InputMaybe<TrelloListPosition>;
|
|
196624
|
+
type?: InputMaybe<TrelloListType>;
|
|
196625
|
+
};
|
|
196626
|
+
export declare type TrelloCreateListPayload = Payload & {
|
|
196627
|
+
__typename?: 'TrelloCreateListPayload';
|
|
196628
|
+
board?: Maybe<TrelloBoard>;
|
|
196629
|
+
errors?: Maybe<Array<MutationError>>;
|
|
196630
|
+
success: Scalars['Boolean']['output'];
|
|
196631
|
+
};
|
|
195743
196632
|
export declare type TrelloCreateMemberAiRuleInput = {
|
|
195744
196633
|
position: Scalars['Float']['input'];
|
|
195745
196634
|
rule: Scalars['String']['input'];
|
|
@@ -196460,6 +197349,18 @@ export declare enum TrelloListCardSortBy {
|
|
|
196460
197349
|
OldestFirst = "OLDEST_FIRST",
|
|
196461
197350
|
Votes = "VOTES"
|
|
196462
197351
|
}
|
|
197352
|
+
export declare enum TrelloListColor {
|
|
197353
|
+
Blue = "BLUE",
|
|
197354
|
+
Gray = "GRAY",
|
|
197355
|
+
Green = "GREEN",
|
|
197356
|
+
Lime = "LIME",
|
|
197357
|
+
Magenta = "MAGENTA",
|
|
197358
|
+
Orange = "ORANGE",
|
|
197359
|
+
Purple = "PURPLE",
|
|
197360
|
+
Red = "RED",
|
|
197361
|
+
Teal = "TEAL",
|
|
197362
|
+
Yellow = "YELLOW"
|
|
197363
|
+
}
|
|
196463
197364
|
export declare type TrelloListConnection = {
|
|
196464
197365
|
__typename?: 'TrelloListConnection';
|
|
196465
197366
|
edges?: Maybe<Array<TrelloListEdge>>;
|
|
@@ -196472,12 +197373,24 @@ export declare type TrelloListContainer = {
|
|
|
196472
197373
|
id: Scalars['ID']['output'];
|
|
196473
197374
|
objectId: Scalars['ID']['output'];
|
|
196474
197375
|
};
|
|
197376
|
+
export declare enum TrelloListCreationMethod {
|
|
197377
|
+
Ai = "AI",
|
|
197378
|
+
Assisted = "ASSISTED",
|
|
197379
|
+
Automatic = "AUTOMATIC",
|
|
197380
|
+
Demo = "DEMO",
|
|
197381
|
+
EmailSource = "EMAIL_SOURCE"
|
|
197382
|
+
}
|
|
196475
197383
|
export declare type TrelloListDataSource = {
|
|
196476
197384
|
__typename?: 'TrelloListDataSource';
|
|
196477
197385
|
filter: Scalars['Boolean']['output'];
|
|
196478
197386
|
handler: TrelloDataSourceHandler;
|
|
196479
197387
|
link: Scalars['URL']['output'];
|
|
196480
197388
|
};
|
|
197389
|
+
export declare type TrelloListDataSourceInput = {
|
|
197390
|
+
filter: Scalars['Boolean']['input'];
|
|
197391
|
+
handler: TrelloDataSourceHandler;
|
|
197392
|
+
link: Scalars['URL']['input'];
|
|
197393
|
+
};
|
|
196481
197394
|
export declare type TrelloListEdge = {
|
|
196482
197395
|
__typename?: 'TrelloListEdge';
|
|
196483
197396
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -196494,6 +197407,10 @@ export declare type TrelloListLimits = {
|
|
|
196494
197407
|
__typename?: 'TrelloListLimits';
|
|
196495
197408
|
cards?: Maybe<TrelloListCardLimits>;
|
|
196496
197409
|
};
|
|
197410
|
+
export declare type TrelloListPosition = {
|
|
197411
|
+
absolute?: InputMaybe<Scalars['Float']['input']>;
|
|
197412
|
+
relative?: InputMaybe<TrelloRelativePosition>;
|
|
197413
|
+
};
|
|
196497
197414
|
export declare enum TrelloListType {
|
|
196498
197415
|
Datasource = "DATASOURCE"
|
|
196499
197416
|
}
|
|
@@ -196550,6 +197467,7 @@ export declare type TrelloMember = Node & {
|
|
|
196550
197467
|
bio?: Maybe<Scalars['String']['output']>;
|
|
196551
197468
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
196552
197469
|
boardStars?: Maybe<TrelloMemberBoardStarConnection>;
|
|
197470
|
+
boards?: Maybe<TrelloMemberBoardConnection>;
|
|
196553
197471
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
196554
197472
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
196555
197473
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
@@ -196582,6 +197500,10 @@ export declare type TrelloMemberBoardStarsArgs = {
|
|
|
196582
197500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196583
197501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196584
197502
|
};
|
|
197503
|
+
export declare type TrelloMemberBoardsArgs = {
|
|
197504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197506
|
+
};
|
|
196585
197507
|
export declare type TrelloMemberNotificationsArgs = {
|
|
196586
197508
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196587
197509
|
filter?: InputMaybe<TrelloNotificationFilter>;
|
|
@@ -196617,6 +197539,17 @@ export declare type TrelloMemberAtlassianSiteEdge = {
|
|
|
196617
197539
|
cursor: Scalars['String']['output'];
|
|
196618
197540
|
node?: Maybe<TrelloAtlassianSite>;
|
|
196619
197541
|
};
|
|
197542
|
+
export declare type TrelloMemberBoardConnection = {
|
|
197543
|
+
__typename?: 'TrelloMemberBoardConnection';
|
|
197544
|
+
edges?: Maybe<Array<TrelloMemberBoardEdge>>;
|
|
197545
|
+
nodes?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
197546
|
+
pageInfo: PageInfo;
|
|
197547
|
+
};
|
|
197548
|
+
export declare type TrelloMemberBoardEdge = {
|
|
197549
|
+
__typename?: 'TrelloMemberBoardEdge';
|
|
197550
|
+
cursor: Scalars['String']['output'];
|
|
197551
|
+
node?: Maybe<TrelloBoard>;
|
|
197552
|
+
};
|
|
196620
197553
|
export declare type TrelloMemberBoardStarConnection = {
|
|
196621
197554
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
196622
197555
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
@@ -196884,6 +197817,7 @@ export declare type TrelloMutationApi = {
|
|
|
196884
197817
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
196885
197818
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
196886
197819
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
197820
|
+
createList?: Maybe<TrelloCreateListPayload>;
|
|
196887
197821
|
createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
|
|
196888
197822
|
createMemberFromAa?: Maybe<TrelloCreateMemberFromAaPayload>;
|
|
196889
197823
|
createOAuth2Client?: Maybe<TrelloCreateOAuth2ClientPayload>;
|
|
@@ -196929,6 +197863,7 @@ export declare type TrelloMutationApi = {
|
|
|
196929
197863
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
196930
197864
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
196931
197865
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
197866
|
+
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
196932
197867
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
196933
197868
|
showVotesOnBoard?: Maybe<TrelloShowVotesOnBoardPayload>;
|
|
196934
197869
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
@@ -196956,6 +197891,7 @@ export declare type TrelloMutationApi = {
|
|
|
196956
197891
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
196957
197892
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
196958
197893
|
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
197894
|
+
updateCardDueDate?: Maybe<TrelloUpdateCardDueDatePayload>;
|
|
196959
197895
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
196960
197896
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
196961
197897
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
@@ -197030,6 +197966,9 @@ export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
|
197030
197966
|
export declare type TrelloMutationApiCreateCustomFieldOptionArgs = {
|
|
197031
197967
|
input: TrelloCreateCustomFieldOptionInput;
|
|
197032
197968
|
};
|
|
197969
|
+
export declare type TrelloMutationApiCreateListArgs = {
|
|
197970
|
+
input: TrelloCreateListInput;
|
|
197971
|
+
};
|
|
197033
197972
|
export declare type TrelloMutationApiCreateMemberAiRuleArgs = {
|
|
197034
197973
|
input: TrelloCreateMemberAiRuleInput;
|
|
197035
197974
|
};
|
|
@@ -197159,6 +198098,9 @@ export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
|
197159
198098
|
export declare type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
197160
198099
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
197161
198100
|
};
|
|
198101
|
+
export declare type TrelloMutationApiSetPlannerBoardOverrideArgs = {
|
|
198102
|
+
input: TrelloSetPlannerBoardOverrideInput;
|
|
198103
|
+
};
|
|
197162
198104
|
export declare type TrelloMutationApiShowCardCoversOnCardFrontArgs = {
|
|
197163
198105
|
input: TrelloShowCardCoversOnCardFrontInput;
|
|
197164
198106
|
};
|
|
@@ -197240,6 +198182,9 @@ export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
|
197240
198182
|
export declare type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
197241
198183
|
input: TrelloUpdateCardDescriptionInput;
|
|
197242
198184
|
};
|
|
198185
|
+
export declare type TrelloMutationApiUpdateCardDueDateArgs = {
|
|
198186
|
+
input: TrelloUpdateCardDueDateInput;
|
|
198187
|
+
};
|
|
197243
198188
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
197244
198189
|
input: TrelloUpdateCardNameInput;
|
|
197245
198190
|
};
|
|
@@ -198178,6 +199123,7 @@ export declare type TrelloQueryApi = {
|
|
|
198178
199123
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
198179
199124
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
198180
199125
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
199126
|
+
searchBoards?: Maybe<TrelloBoardSearchResult>;
|
|
198181
199127
|
searchCards?: Maybe<TrelloCardSearchResult>;
|
|
198182
199128
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
198183
199129
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -198296,6 +199242,13 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
198296
199242
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
198297
199243
|
ids: Array<Scalars['ID']['input']>;
|
|
198298
199244
|
};
|
|
199245
|
+
export declare type TrelloQueryApiSearchBoardsArgs = {
|
|
199246
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199248
|
+
partial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199249
|
+
query: Scalars['String']['input'];
|
|
199250
|
+
workspaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
199251
|
+
};
|
|
198299
199252
|
export declare type TrelloQueryApiSearchCardsArgs = {
|
|
198300
199253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198301
199254
|
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -198370,6 +199323,10 @@ export declare type TrelloRejectProposedEventsPayload = Payload & {
|
|
|
198370
199323
|
proposedEvents?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
198371
199324
|
success: Scalars['Boolean']['output'];
|
|
198372
199325
|
};
|
|
199326
|
+
export declare enum TrelloRelativePosition {
|
|
199327
|
+
Bottom = "BOTTOM",
|
|
199328
|
+
Top = "TOP"
|
|
199329
|
+
}
|
|
198373
199330
|
export declare type TrelloRemoveBoardStarInput = {
|
|
198374
199331
|
boardStarId: Scalars['ID']['input'];
|
|
198375
199332
|
userId: Scalars['ID']['input'];
|
|
@@ -198520,6 +199477,17 @@ export declare type TrelloScaleProps = {
|
|
|
198520
199477
|
url?: Maybe<Scalars['URL']['output']>;
|
|
198521
199478
|
width?: Maybe<Scalars['Int']['output']>;
|
|
198522
199479
|
};
|
|
199480
|
+
export declare type TrelloSearchBoardConnection = {
|
|
199481
|
+
__typename?: 'TrelloSearchBoardConnection';
|
|
199482
|
+
edges?: Maybe<Array<TrelloSearchBoardEdge>>;
|
|
199483
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
199484
|
+
pageInfo: PageInfo;
|
|
199485
|
+
};
|
|
199486
|
+
export declare type TrelloSearchBoardEdge = {
|
|
199487
|
+
__typename?: 'TrelloSearchBoardEdge';
|
|
199488
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
199489
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
199490
|
+
};
|
|
198523
199491
|
export declare type TrelloSearchCardConnection = {
|
|
198524
199492
|
__typename?: 'TrelloSearchCardConnection';
|
|
198525
199493
|
edges?: Maybe<Array<TrelloSearchCardEdge>>;
|
|
@@ -198556,6 +199524,16 @@ export declare type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
|
|
|
198556
199524
|
errors?: Maybe<Array<MutationError>>;
|
|
198557
199525
|
success: Scalars['Boolean']['output'];
|
|
198558
199526
|
};
|
|
199527
|
+
export declare type TrelloSetPlannerBoardOverrideInput = {
|
|
199528
|
+
boardId: Scalars['ID']['input'];
|
|
199529
|
+
mode: TrelloPlannerBoardFilterMode;
|
|
199530
|
+
};
|
|
199531
|
+
export declare type TrelloSetPlannerBoardOverridePayload = Payload & {
|
|
199532
|
+
__typename?: 'TrelloSetPlannerBoardOverridePayload';
|
|
199533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199534
|
+
planner?: Maybe<TrelloPlanner>;
|
|
199535
|
+
success: Scalars['Boolean']['output'];
|
|
199536
|
+
};
|
|
198559
199537
|
export declare type TrelloShowCardCoversOnCardFrontInput = {
|
|
198560
199538
|
boardId: Scalars['ID']['input'];
|
|
198561
199539
|
};
|
|
@@ -199026,6 +200004,16 @@ export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
|
199026
200004
|
date?: Maybe<TrelloActionDateEntity>;
|
|
199027
200005
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
199028
200006
|
};
|
|
200007
|
+
export declare type TrelloUpdateCardDueDateInput = {
|
|
200008
|
+
cardId: Scalars['ID']['input'];
|
|
200009
|
+
dueAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
200010
|
+
};
|
|
200011
|
+
export declare type TrelloUpdateCardDueDatePayload = Payload & {
|
|
200012
|
+
__typename?: 'TrelloUpdateCardDueDatePayload';
|
|
200013
|
+
card?: Maybe<TrelloBaseCard>;
|
|
200014
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200015
|
+
success: Scalars['Boolean']['output'];
|
|
200016
|
+
};
|
|
199029
200017
|
export declare type TrelloUpdateCardNameInput = {
|
|
199030
200018
|
cardId: Scalars['ID']['input'];
|
|
199031
200019
|
name?: InputMaybe<Scalars['String']['input']>;
|