@forge/cli-shared 9.4.0-next.4 → 9.4.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +420 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +168 -50
- package/package.json +2 -2
|
@@ -4244,6 +4244,11 @@ export type AdminAuditLogUpdateBackgroundQueryInput = {
|
|
|
4244
4244
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4245
4245
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4246
4246
|
};
|
|
4247
|
+
export type AdminAuditLogUserProfilesInput = {
|
|
4248
|
+
container: AdminAuditLogContainer;
|
|
4249
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
4250
|
+
viewerId: Scalars['ID']['input'];
|
|
4251
|
+
};
|
|
4247
4252
|
export type AdminAuthPolicyConfig = {
|
|
4248
4253
|
__typename?: 'AdminAuthPolicyConfig';
|
|
4249
4254
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -7969,6 +7974,10 @@ export type AgentWorkspaceAvailabilityInputPayload = {
|
|
|
7969
7974
|
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
7970
7975
|
teamId: Scalars['ID']['input'];
|
|
7971
7976
|
};
|
|
7977
|
+
export declare enum AgentWorkspaceAvailabilityMode {
|
|
7978
|
+
Auto = "AUTO",
|
|
7979
|
+
Manual = "MANUAL"
|
|
7980
|
+
}
|
|
7972
7981
|
export type AgentWorkspaceAvailabilityPageInfo = {
|
|
7973
7982
|
__typename?: 'AgentWorkspaceAvailabilityPageInfo';
|
|
7974
7983
|
currentPage: Scalars['Int']['output'];
|
|
@@ -8461,6 +8470,7 @@ export type AgentWorkspacePendingTicketsByTeamInput = {
|
|
|
8461
8470
|
};
|
|
8462
8471
|
export type AgentWorkspaceProjectDefaultAvailability = {
|
|
8463
8472
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
8473
|
+
availabilityMode: AgentWorkspaceAvailabilityMode;
|
|
8464
8474
|
projectId: Scalars['ID']['output'];
|
|
8465
8475
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8466
8476
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -8926,6 +8936,7 @@ export type AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload = {
|
|
|
8926
8936
|
serviceFieldId: Scalars['String']['output'];
|
|
8927
8937
|
};
|
|
8928
8938
|
export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
8939
|
+
availabilityMode?: InputMaybe<AgentWorkspaceAvailabilityMode>;
|
|
8929
8940
|
cloudId: Scalars['ID']['input'];
|
|
8930
8941
|
projectId: Scalars['ID']['input'];
|
|
8931
8942
|
status: AgentWorkspaceAvailabilityStatus;
|
|
@@ -10166,6 +10177,7 @@ export type AiPlannerPlanCollaboratorConnection = {
|
|
|
10166
10177
|
__typename?: 'AiPlannerPlanCollaboratorConnection';
|
|
10167
10178
|
edges: Array<AiPlannerPlanCollaboratorEdge>;
|
|
10168
10179
|
pageInfo: PageInfo;
|
|
10180
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10169
10181
|
};
|
|
10170
10182
|
export type AiPlannerPlanCollaboratorEdge = {
|
|
10171
10183
|
__typename?: 'AiPlannerPlanCollaboratorEdge';
|
|
@@ -10176,6 +10188,7 @@ export type AiPlannerPlanConnection = {
|
|
|
10176
10188
|
__typename?: 'AiPlannerPlanConnection';
|
|
10177
10189
|
edges: Array<AiPlannerPlanEdge>;
|
|
10178
10190
|
pageInfo: PageInfo;
|
|
10191
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10179
10192
|
};
|
|
10180
10193
|
export type AiPlannerPlanConversation = {
|
|
10181
10194
|
__typename?: 'AiPlannerPlanConversation';
|
|
@@ -10189,6 +10202,7 @@ export type AiPlannerPlanConversationConnection = {
|
|
|
10189
10202
|
__typename?: 'AiPlannerPlanConversationConnection';
|
|
10190
10203
|
edges: Array<AiPlannerPlanConversationEdge>;
|
|
10191
10204
|
pageInfo: PageInfo;
|
|
10205
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10192
10206
|
};
|
|
10193
10207
|
export type AiPlannerPlanConversationEdge = {
|
|
10194
10208
|
__typename?: 'AiPlannerPlanConversationEdge';
|
|
@@ -10224,6 +10238,7 @@ export type AiPlannerPlanTaskConnection = {
|
|
|
10224
10238
|
__typename?: 'AiPlannerPlanTaskConnection';
|
|
10225
10239
|
edges: Array<AiPlannerPlanTaskEdge>;
|
|
10226
10240
|
pageInfo: PageInfo;
|
|
10241
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10227
10242
|
};
|
|
10228
10243
|
export type AiPlannerPlanTaskEdge = {
|
|
10229
10244
|
__typename?: 'AiPlannerPlanTaskEdge';
|
|
@@ -10709,6 +10724,9 @@ export type AppEnvironmentAppVersionRolloutsArgs = {
|
|
|
10709
10724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10710
10725
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10711
10726
|
};
|
|
10727
|
+
export type AppEnvironmentDeploymentsArgs = {
|
|
10728
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10729
|
+
};
|
|
10712
10730
|
export type AppEnvironmentVersionsArgs = {
|
|
10713
10731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10714
10732
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -15315,6 +15333,13 @@ export type AssetsVerticalAssetTypesTrackingQueryErrorExtension = QueryErrorExte
|
|
|
15315
15333
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15316
15334
|
};
|
|
15317
15335
|
export type AssetsVerticalAssetTypesTrackingResult = AssetsVerticalAssetTypesTracking | QueryError;
|
|
15336
|
+
export declare enum AssetsVerticalAssetTypesTrackingSortField {
|
|
15337
|
+
ObjectTypeName = "OBJECT_TYPE_NAME"
|
|
15338
|
+
}
|
|
15339
|
+
export type AssetsVerticalAssetTypesTrackingSortInput = {
|
|
15340
|
+
direction?: SortDirection;
|
|
15341
|
+
field: AssetsVerticalAssetTypesTrackingSortField;
|
|
15342
|
+
};
|
|
15318
15343
|
export type AssetsVerticalAssetTypesTrackingsPayload = Payload & {
|
|
15319
15344
|
__typename?: 'AssetsVerticalAssetTypesTrackingsPayload';
|
|
15320
15345
|
assetTypesTrackings?: Maybe<Array<AssetsVerticalAssetTypesTracking>>;
|
|
@@ -15700,6 +15725,13 @@ export type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErrorExtens
|
|
|
15700
15725
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15701
15726
|
};
|
|
15702
15727
|
export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
15728
|
+
export declare enum AssetsVerticalDepreciationRulesSortField {
|
|
15729
|
+
Name = "NAME"
|
|
15730
|
+
}
|
|
15731
|
+
export type AssetsVerticalDepreciationRulesSortInput = {
|
|
15732
|
+
direction?: SortDirection;
|
|
15733
|
+
field: AssetsVerticalDepreciationRulesSortField;
|
|
15734
|
+
};
|
|
15703
15735
|
export type AssetsVerticalDisableVerticalInstantiationInput = {
|
|
15704
15736
|
cloudId: Scalars['ID']['input'];
|
|
15705
15737
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16357,6 +16389,8 @@ export type AssetsVerticalVerticalInstantiationDepreciationRulesArgs = {
|
|
|
16357
16389
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16358
16390
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16359
16391
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16392
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16393
|
+
sort?: InputMaybe<AssetsVerticalDepreciationRulesSortInput>;
|
|
16360
16394
|
};
|
|
16361
16395
|
export type AssetsVerticalVerticalInstantiationCategory = {
|
|
16362
16396
|
__typename?: 'AssetsVerticalVerticalInstantiationCategory';
|
|
@@ -16375,6 +16409,9 @@ export type AssetsVerticalVerticalInstantiationCategoryAssetTypesTrackingsArgs =
|
|
|
16375
16409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16376
16410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16377
16411
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16412
|
+
parentObjectTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16413
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16414
|
+
sort?: InputMaybe<AssetsVerticalAssetTypesTrackingSortInput>;
|
|
16378
16415
|
};
|
|
16379
16416
|
export type AssetsVerticalVerticalInstantiationCategoryItemsArgs = {
|
|
16380
16417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21325,6 +21362,40 @@ export type CommerceExpAccountModification = {
|
|
|
21325
21362
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
21326
21363
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
21327
21364
|
};
|
|
21365
|
+
export type CommerceExpAccruedChargeBreakdown = {
|
|
21366
|
+
__typename?: 'CommerceExpAccruedChargeBreakdown';
|
|
21367
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21368
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
21369
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21370
|
+
events: Array<CommerceExpAccruedChargeEvent>;
|
|
21371
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21372
|
+
periodEnd?: Maybe<Scalars['Float']['output']>;
|
|
21373
|
+
periodStart?: Maybe<Scalars['Float']['output']>;
|
|
21374
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
21375
|
+
};
|
|
21376
|
+
export type CommerceExpAccruedChargeComponent = {
|
|
21377
|
+
__typename?: 'CommerceExpAccruedChargeComponent';
|
|
21378
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21379
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21380
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21381
|
+
type: CommerceExpAccruedChargeComponentType;
|
|
21382
|
+
};
|
|
21383
|
+
export declare enum CommerceExpAccruedChargeComponentType {
|
|
21384
|
+
AdditionalCharge = "ADDITIONAL_CHARGE",
|
|
21385
|
+
Credit = "CREDIT"
|
|
21386
|
+
}
|
|
21387
|
+
export type CommerceExpAccruedChargeEvent = {
|
|
21388
|
+
__typename?: 'CommerceExpAccruedChargeEvent';
|
|
21389
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21390
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
21391
|
+
components: Array<CommerceExpAccruedChargeComponent>;
|
|
21392
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21393
|
+
id: Scalars['ID']['output'];
|
|
21394
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21395
|
+
periodEnd?: Maybe<Scalars['Float']['output']>;
|
|
21396
|
+
periodStart?: Maybe<Scalars['Float']['output']>;
|
|
21397
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
21398
|
+
};
|
|
21328
21399
|
export type CommerceExpAchInfo = {
|
|
21329
21400
|
__typename?: 'CommerceExpAchInfo';
|
|
21330
21401
|
accountHolder: Scalars['String']['output'];
|
|
@@ -21401,7 +21472,8 @@ export type CommerceExpAggregationPeriodBoundaryUsage = {
|
|
|
21401
21472
|
};
|
|
21402
21473
|
export declare enum CommerceExpAllowanceCycle {
|
|
21403
21474
|
Annual = "ANNUAL",
|
|
21404
|
-
Monthly = "MONTHLY"
|
|
21475
|
+
Monthly = "MONTHLY",
|
|
21476
|
+
Quarterly = "QUARTERLY"
|
|
21405
21477
|
}
|
|
21406
21478
|
export type CommerceExpAllowanceDetails = {
|
|
21407
21479
|
__typename?: 'CommerceExpAllowanceDetails';
|
|
@@ -23699,6 +23771,7 @@ export type CommerceExpLineItemEndsAt = {
|
|
|
23699
23771
|
};
|
|
23700
23772
|
export type CommerceExpLineItemResponse = {
|
|
23701
23773
|
__typename?: 'CommerceExpLineItemResponse';
|
|
23774
|
+
accruedChargeBreakdown?: Maybe<CommerceExpAccruedChargeBreakdown>;
|
|
23702
23775
|
accumulateAccruedCharges?: Maybe<Scalars['Float']['output']>;
|
|
23703
23776
|
adjustments?: Maybe<Array<Maybe<CommerceExpAdjustmentDetail>>>;
|
|
23704
23777
|
billableUsage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24278,7 +24351,8 @@ export declare enum CommerceExpPaymentMethodType {
|
|
|
24278
24351
|
Ach = "ACH",
|
|
24279
24352
|
Card = "CARD",
|
|
24280
24353
|
Deferred = "DEFERRED",
|
|
24281
|
-
Paypal = "PAYPAL"
|
|
24354
|
+
Paypal = "PAYPAL",
|
|
24355
|
+
Wallet = "WALLET"
|
|
24282
24356
|
}
|
|
24283
24357
|
export type CommerceExpPaymentStatus = {
|
|
24284
24358
|
__typename?: 'CommerceExpPaymentStatus';
|
|
@@ -34802,6 +34876,17 @@ export type ConfluencePatchCalendarPayload = Payload & {
|
|
|
34802
34876
|
errors?: Maybe<Array<MutationError>>;
|
|
34803
34877
|
success: Scalars['Boolean']['output'];
|
|
34804
34878
|
};
|
|
34879
|
+
export type ConfluencePatchFolderInput = {
|
|
34880
|
+
expectedVersion: Scalars['Int']['input'];
|
|
34881
|
+
id: Scalars['ID']['input'];
|
|
34882
|
+
summary?: InputMaybe<ConfluenceContentBodyInput>;
|
|
34883
|
+
};
|
|
34884
|
+
export type ConfluencePatchFolderPayload = Payload & {
|
|
34885
|
+
__typename?: 'ConfluencePatchFolderPayload';
|
|
34886
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34887
|
+
folder?: Maybe<ConfluenceFolder>;
|
|
34888
|
+
success: Scalars['Boolean']['output'];
|
|
34889
|
+
};
|
|
34805
34890
|
export type ConfluencePatchSpaceSettingsInput = {
|
|
34806
34891
|
contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
|
|
34807
34892
|
id: Scalars['ID']['input'];
|
|
@@ -36390,6 +36475,11 @@ export type ConfluenceSlideLinks = {
|
|
|
36390
36475
|
base?: Maybe<Scalars['String']['output']>;
|
|
36391
36476
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
36392
36477
|
};
|
|
36478
|
+
export declare enum ConfluenceSmartFolderSyncOutcome {
|
|
36479
|
+
Ran = "RAN",
|
|
36480
|
+
SkippedPaused = "SKIPPED_PAUSED",
|
|
36481
|
+
SkippedTtl = "SKIPPED_TTL"
|
|
36482
|
+
}
|
|
36393
36483
|
export type ConfluenceSmartSpaceOverview = {
|
|
36394
36484
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
36395
36485
|
faq?: Maybe<ConfluenceSmartSpaceOverviewFaq>;
|
|
@@ -36833,9 +36923,17 @@ export type ConfluenceSyncSmartFolderInput = {
|
|
|
36833
36923
|
export type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
36834
36924
|
__typename?: 'ConfluenceSyncSmartFolderPayload';
|
|
36835
36925
|
errors?: Maybe<Array<MutationError>>;
|
|
36926
|
+
outcome?: Maybe<ConfluenceSmartFolderSyncOutcome>;
|
|
36836
36927
|
success: Scalars['Boolean']['output'];
|
|
36928
|
+
syncResult?: Maybe<ConfluenceSyncSmartFolderResult>;
|
|
36837
36929
|
taskAri?: Maybe<Scalars['ID']['output']>;
|
|
36838
36930
|
};
|
|
36931
|
+
export type ConfluenceSyncSmartFolderResult = {
|
|
36932
|
+
__typename?: 'ConfluenceSyncSmartFolderResult';
|
|
36933
|
+
addedCount: Scalars['Int']['output'];
|
|
36934
|
+
changedCount: Scalars['Int']['output'];
|
|
36935
|
+
removedCount: Scalars['Int']['output'];
|
|
36936
|
+
};
|
|
36839
36937
|
export declare enum ConfluenceSystemOperation {
|
|
36840
36938
|
CompanyHubAdmin = "COMPANY_HUB_ADMIN",
|
|
36841
36939
|
CompanyHubViewer = "COMPANY_HUB_VIEWER",
|
|
@@ -40376,6 +40474,8 @@ export type CplsTimeCell = {
|
|
|
40376
40474
|
startDate: Scalars['Date']['output'];
|
|
40377
40475
|
};
|
|
40378
40476
|
export declare enum CplsTimeScaleType {
|
|
40477
|
+
Fortnightly = "FORTNIGHTLY",
|
|
40478
|
+
Monthly = "MONTHLY",
|
|
40379
40479
|
Weekly = "WEEKLY"
|
|
40380
40480
|
}
|
|
40381
40481
|
export type CplsUpdateCustomContributionTargetInput = {
|
|
@@ -40410,6 +40510,7 @@ export type CplsUpdateViewSettingsPayload = Payload & {
|
|
|
40410
40510
|
};
|
|
40411
40511
|
export type CplsUpdateWorkResourcingEstimate = {
|
|
40412
40512
|
cloudId: Scalars['ID']['input'];
|
|
40513
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40413
40514
|
workDataId: Scalars['ID']['input'];
|
|
40414
40515
|
workResourcingEstimateHours: Scalars['Float']['input'];
|
|
40415
40516
|
};
|
|
@@ -43323,6 +43424,7 @@ export type CustomerServiceNotes = {
|
|
|
43323
43424
|
export type CustomerServiceNotesQueryResult = CustomerServiceNotes | QueryError;
|
|
43324
43425
|
export type CustomerServiceOmniInteraction = {
|
|
43325
43426
|
__typename?: 'CustomerServiceOmniInteraction';
|
|
43427
|
+
helpseeker?: Maybe<User>;
|
|
43326
43428
|
helpseekerAtlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
43327
43429
|
id: Scalars['ID']['output'];
|
|
43328
43430
|
identifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -43349,6 +43451,7 @@ export type CustomerServiceOmniInteractionMatchedIdentifier = {
|
|
|
43349
43451
|
export type CustomerServiceOmniInteractionQueryResult = CustomerServiceOmniInteraction | QueryError;
|
|
43350
43452
|
export type CustomerServiceOmniInteractionRelatedHelpseeker = {
|
|
43351
43453
|
__typename?: 'CustomerServiceOmniInteractionRelatedHelpseeker';
|
|
43454
|
+
helpseeker?: Maybe<User>;
|
|
43352
43455
|
helpseekerAtlassianAccountId: Scalars['ID']['output'];
|
|
43353
43456
|
matchedIdentifiers: Array<CustomerServiceOmniInteractionMatchedIdentifier>;
|
|
43354
43457
|
};
|
|
@@ -44007,6 +44110,7 @@ export declare enum DataSecurityPolicyAction {
|
|
|
44007
44110
|
AppAccess = "APP_ACCESS",
|
|
44008
44111
|
AppAccessConfigured = "APP_ACCESS_CONFIGURED",
|
|
44009
44112
|
AttachmentDownload = "ATTACHMENT_DOWNLOAD",
|
|
44113
|
+
McpAccess = "MCP_ACCESS",
|
|
44010
44114
|
PageExport = "PAGE_EXPORT",
|
|
44011
44115
|
PublicLinks = "PUBLIC_LINKS"
|
|
44012
44116
|
}
|
|
@@ -44845,6 +44949,15 @@ export declare enum DevAiAutodevNextDayOfWeek {
|
|
|
44845
44949
|
Tuesday = "TUESDAY",
|
|
44846
44950
|
Wednesday = "WEDNESDAY"
|
|
44847
44951
|
}
|
|
44952
|
+
export type DevAiAutodevNextDeleteSuggestedClassificationRepositoryInput = {
|
|
44953
|
+
cloudId: Scalars['ID']['input'];
|
|
44954
|
+
suggestedClassificationRepositoryId: Scalars['ID']['input'];
|
|
44955
|
+
};
|
|
44956
|
+
export type DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload = Payload & {
|
|
44957
|
+
__typename?: 'DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload';
|
|
44958
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44959
|
+
success: Scalars['Boolean']['output'];
|
|
44960
|
+
};
|
|
44848
44961
|
export type DevAiAutodevNextDeleteWorkstreamInput = {
|
|
44849
44962
|
cloudId: Scalars['ID']['input'];
|
|
44850
44963
|
workstreamId: Scalars['ID']['input'];
|
|
@@ -44981,6 +45094,16 @@ export type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
|
44981
45094
|
errors?: Maybe<Array<MutationError>>;
|
|
44982
45095
|
success: Scalars['Boolean']['output'];
|
|
44983
45096
|
};
|
|
45097
|
+
export type DevAiAutodevNextResetWorkItemClassificationInput = {
|
|
45098
|
+
cloudId: Scalars['ID']['input'];
|
|
45099
|
+
workItemId: Scalars['ID']['input'];
|
|
45100
|
+
};
|
|
45101
|
+
export type DevAiAutodevNextResetWorkItemClassificationPayload = Payload & {
|
|
45102
|
+
__typename?: 'DevAiAutodevNextResetWorkItemClassificationPayload';
|
|
45103
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45104
|
+
success: Scalars['Boolean']['output'];
|
|
45105
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
45106
|
+
};
|
|
44984
45107
|
export type DevAiAutodevNextScanSchedule = {
|
|
44985
45108
|
__typename?: 'DevAiAutodevNextScanSchedule';
|
|
44986
45109
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
@@ -54902,11 +55025,6 @@ export type GraphIntegrationConsentInput = {
|
|
|
54902
55025
|
formUrlReferer: Scalars['URL']['input'];
|
|
54903
55026
|
source: Scalars['String']['input'];
|
|
54904
55027
|
};
|
|
54905
|
-
export type GraphIntegrationContainerRelationship = {
|
|
54906
|
-
__typename?: 'GraphIntegrationContainerRelationship';
|
|
54907
|
-
relationship: Scalars['String']['output'];
|
|
54908
|
-
type: Scalars['String']['output'];
|
|
54909
|
-
};
|
|
54910
55028
|
export type GraphIntegrationCreateConnectionPayload = Payload & {
|
|
54911
55029
|
__typename?: 'GraphIntegrationCreateConnectionPayload';
|
|
54912
55030
|
connectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -55078,11 +55196,9 @@ export type GraphIntegrationDataProvider = {
|
|
|
55078
55196
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
55079
55197
|
homeUrl?: Maybe<Scalars['String']['output']>;
|
|
55080
55198
|
id: Scalars['String']['output'];
|
|
55081
|
-
installationAri?: Maybe<Scalars['String']['output']>;
|
|
55082
55199
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
55083
55200
|
name?: Maybe<Scalars['String']['output']>;
|
|
55084
55201
|
namespace: GraphIntegrationProviderNamespace;
|
|
55085
|
-
projectContainerRelationships: Array<GraphIntegrationContainerRelationship>;
|
|
55086
55202
|
providerType: GraphIntegrationProviderType;
|
|
55087
55203
|
};
|
|
55088
55204
|
export type GraphIntegrationDeleteConnectionPayload = Payload & {
|
|
@@ -55102,15 +55218,14 @@ export type GraphIntegrationDeleteSkillInput = {
|
|
|
55102
55218
|
};
|
|
55103
55219
|
export type GraphIntegrationDetailedEntityType = {
|
|
55104
55220
|
__typename?: 'GraphIntegrationDetailedEntityType';
|
|
55105
|
-
|
|
55106
|
-
container?: Maybe<GraphIntegrationDetailedEntityTypeContainer>;
|
|
55107
|
-
name: GraphIntegrationProviderType;
|
|
55108
|
-
};
|
|
55109
|
-
export type GraphIntegrationDetailedEntityTypeContainer = {
|
|
55110
|
-
__typename?: 'GraphIntegrationDetailedEntityTypeContainer';
|
|
55111
|
-
ati: Scalars['String']['output'];
|
|
55112
|
-
name: GraphIntegrationProviderType;
|
|
55221
|
+
name: GraphIntegrationEntityType;
|
|
55113
55222
|
};
|
|
55223
|
+
export declare enum GraphIntegrationDirectoryAuthType {
|
|
55224
|
+
ApiToken = "API_TOKEN",
|
|
55225
|
+
ClientCredentials = "CLIENT_CREDENTIALS",
|
|
55226
|
+
None = "NONE",
|
|
55227
|
+
Oauth = "OAUTH"
|
|
55228
|
+
}
|
|
55114
55229
|
export type GraphIntegrationDirectoryFilterDimension = {
|
|
55115
55230
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
55116
55231
|
displayName: Scalars['String']['output'];
|
|
@@ -55151,6 +55266,44 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
55151
55266
|
PlatformSkill = "PLATFORM_SKILL",
|
|
55152
55267
|
Skill = "SKILL"
|
|
55153
55268
|
}
|
|
55269
|
+
export declare enum GraphIntegrationEntityType {
|
|
55270
|
+
Branch = "BRANCH",
|
|
55271
|
+
BuildInfo = "BUILD_INFO",
|
|
55272
|
+
CalendarEvent = "CALENDAR_EVENT",
|
|
55273
|
+
Campaign = "CAMPAIGN",
|
|
55274
|
+
Case = "CASE",
|
|
55275
|
+
Comment = "COMMENT",
|
|
55276
|
+
Commit = "COMMIT",
|
|
55277
|
+
Conversation = "CONVERSATION",
|
|
55278
|
+
CustomerContact = "CUSTOMER_CONTACT",
|
|
55279
|
+
CustomerOrganization = "CUSTOMER_ORGANIZATION",
|
|
55280
|
+
Dashboard = "DASHBOARD",
|
|
55281
|
+
DataTable = "DATA_TABLE",
|
|
55282
|
+
Deal = "DEAL",
|
|
55283
|
+
DeploymentInfo = "DEPLOYMENT_INFO",
|
|
55284
|
+
Design = "DESIGN",
|
|
55285
|
+
DevopsComponent = "DEVOPS_COMPONENT",
|
|
55286
|
+
Document = "DOCUMENT",
|
|
55287
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
55288
|
+
Incident = "INCIDENT",
|
|
55289
|
+
Lead = "LEAD",
|
|
55290
|
+
Message = "MESSAGE",
|
|
55291
|
+
Organisation = "ORGANISATION",
|
|
55292
|
+
Position = "POSITION",
|
|
55293
|
+
PostIncidentReview = "POST_INCIDENT_REVIEW",
|
|
55294
|
+
Project = "PROJECT",
|
|
55295
|
+
PullRequest = "PULL_REQUEST",
|
|
55296
|
+
RemoteLink = "REMOTE_LINK",
|
|
55297
|
+
Repository = "REPOSITORY",
|
|
55298
|
+
ServicenowBusinessApp = "SERVICENOW_BUSINESS_APP",
|
|
55299
|
+
SoftwareService = "SOFTWARE_SERVICE",
|
|
55300
|
+
Space = "SPACE",
|
|
55301
|
+
User = "USER",
|
|
55302
|
+
Video = "VIDEO",
|
|
55303
|
+
Vulnerability = "VULNERABILITY",
|
|
55304
|
+
Worker = "WORKER",
|
|
55305
|
+
WorkItem = "WORK_ITEM"
|
|
55306
|
+
}
|
|
55154
55307
|
export type GraphIntegrationExternalProviderAction = {
|
|
55155
55308
|
__typename?: 'GraphIntegrationExternalProviderAction';
|
|
55156
55309
|
id: Scalars['String']['output'];
|
|
@@ -55224,6 +55377,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
|
55224
55377
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
55225
55378
|
isInstalled: Scalars['Boolean']['output'];
|
|
55226
55379
|
serverUrl: Scalars['String']['output'];
|
|
55380
|
+
supportedAuthTypes: Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
55227
55381
|
templateId: Scalars['String']['output'];
|
|
55228
55382
|
};
|
|
55229
55383
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
@@ -55428,6 +55582,7 @@ export type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload
|
|
|
55428
55582
|
};
|
|
55429
55583
|
export type GraphIntegrationMcpServer = {
|
|
55430
55584
|
__typename?: 'GraphIntegrationMcpServer';
|
|
55585
|
+
authType: GraphIntegrationDirectoryAuthType;
|
|
55431
55586
|
displayName: Scalars['String']['output'];
|
|
55432
55587
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
55433
55588
|
id: Scalars['ID']['output'];
|
|
@@ -55576,16 +55731,28 @@ export declare enum GraphIntegrationProviderNamespace {
|
|
|
55576
55731
|
}
|
|
55577
55732
|
export declare enum GraphIntegrationProviderType {
|
|
55578
55733
|
Builds = "BUILDS",
|
|
55734
|
+
Calendars = "CALENDARS",
|
|
55735
|
+
Comments = "COMMENTS",
|
|
55736
|
+
Conversations = "CONVERSATIONS",
|
|
55737
|
+
Crms = "CRMS",
|
|
55738
|
+
Dashboards = "DASHBOARDS",
|
|
55739
|
+
DataTables = "DATA_TABLES",
|
|
55579
55740
|
Deployments = "DEPLOYMENTS",
|
|
55580
55741
|
Designs = "DESIGNS",
|
|
55581
55742
|
DevelopmentInfo = "DEVELOPMENT_INFO",
|
|
55582
55743
|
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
55583
55744
|
Documentation = "DOCUMENTATION",
|
|
55584
55745
|
FeatureFlags = "FEATURE_FLAGS",
|
|
55746
|
+
GraphProvider = "GRAPH_PROVIDER",
|
|
55747
|
+
Hris = "HRIS",
|
|
55585
55748
|
Operations = "OPERATIONS",
|
|
55749
|
+
Projects = "PROJECTS",
|
|
55586
55750
|
RemoteLinks = "REMOTE_LINKS",
|
|
55587
|
-
|
|
55588
|
-
|
|
55751
|
+
Security = "SECURITY",
|
|
55752
|
+
SoftwareServices = "SOFTWARE_SERVICES",
|
|
55753
|
+
Spaces = "SPACES",
|
|
55754
|
+
Videos = "VIDEOS",
|
|
55755
|
+
WorkItems = "WORK_ITEMS"
|
|
55589
55756
|
}
|
|
55590
55757
|
export type GraphIntegrationRbacCreateRecordInput = {
|
|
55591
55758
|
cloudId: Scalars['ID']['input'];
|
|
@@ -55851,6 +56018,15 @@ export type GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings = {
|
|
|
55851
56018
|
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings';
|
|
55852
56019
|
settings: Array<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
55853
56020
|
};
|
|
56021
|
+
export declare enum GraphIntegrationTwgProductAccessMode {
|
|
56022
|
+
DefaultAllow = "DEFAULT_ALLOW",
|
|
56023
|
+
DefaultDeny = "DEFAULT_DENY"
|
|
56024
|
+
}
|
|
56025
|
+
export type GraphIntegrationTwgProductAdminSettings = {
|
|
56026
|
+
__typename?: 'GraphIntegrationTwgProductAdminSettings';
|
|
56027
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56028
|
+
productAri: Scalars['ID']['output'];
|
|
56029
|
+
};
|
|
55854
56030
|
export type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
55855
56031
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
55856
56032
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -55876,6 +56052,17 @@ export type GraphIntegrationUpdateSkillInput = {
|
|
|
55876
56052
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
55877
56053
|
visibility?: InputMaybe<GraphIntegrationSkillVisibilityInput>;
|
|
55878
56054
|
};
|
|
56055
|
+
export type GraphIntegrationUpdateTwgProductAdminSettingsInput = {
|
|
56056
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56057
|
+
contextAri: Scalars['ID']['input'];
|
|
56058
|
+
productAri: Scalars['ID']['input'];
|
|
56059
|
+
};
|
|
56060
|
+
export type GraphIntegrationUpdateTwgProductAdminSettingsPayload = Payload & {
|
|
56061
|
+
__typename?: 'GraphIntegrationUpdateTwgProductAdminSettingsPayload';
|
|
56062
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56063
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56064
|
+
success: Scalars['Boolean']['output'];
|
|
56065
|
+
};
|
|
55879
56066
|
export type GraphIssueAssociatedDesignPayload = Payload & {
|
|
55880
56067
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
55881
56068
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -120162,6 +120349,7 @@ export type HelpCenterPageRovoConfig = {
|
|
|
120162
120349
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
120163
120350
|
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
120164
120351
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
120352
|
+
widgetContainerAri?: Maybe<Scalars['String']['output']>;
|
|
120165
120353
|
};
|
|
120166
120354
|
export declare enum HelpCenterPageType {
|
|
120167
120355
|
Custom = "CUSTOM",
|
|
@@ -123796,6 +123984,9 @@ export type JiraAgentsInSpace = {
|
|
|
123796
123984
|
agents?: Maybe<JiraAgentInSpaceConnection>;
|
|
123797
123985
|
sourceStatuses: Array<JiraAgentInSpaceSourceStatus>;
|
|
123798
123986
|
};
|
|
123987
|
+
export type JiraAgentsInSpaceFilter = {
|
|
123988
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
123989
|
+
};
|
|
123799
123990
|
export type JiraAgentsInSpaceIdentifier = {
|
|
123800
123991
|
cloudId: Scalars['ID']['input'];
|
|
123801
123992
|
projectKey: Scalars['String']['input'];
|
|
@@ -123986,6 +124177,7 @@ export type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
|
123986
124177
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
123987
124178
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
123988
124179
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
124180
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
123989
124181
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
123990
124182
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
123991
124183
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -126596,9 +126788,47 @@ export type JiraBulkMergeValidationResponse = {
|
|
|
126596
126788
|
success: Scalars['Boolean']['output'];
|
|
126597
126789
|
};
|
|
126598
126790
|
export type JiraBulkMergeValidationResult = JiraBulkMergeValidationResponse | QueryError;
|
|
126791
|
+
export type JiraBulkMoveClassificationEntryInput = {
|
|
126792
|
+
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
126793
|
+
targetClassificationId: Scalars['ID']['input'];
|
|
126794
|
+
};
|
|
126795
|
+
export type JiraBulkMoveClassificationMappingInput = {
|
|
126796
|
+
classifications: Array<JiraBulkMoveClassificationEntryInput>;
|
|
126797
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126798
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126799
|
+
};
|
|
126800
|
+
export type JiraBulkMoveInput = {
|
|
126801
|
+
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
126802
|
+
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
126803
|
+
inferStatusDefaults: Scalars['Boolean']['input'];
|
|
126804
|
+
inferSubtaskTypeDefault: Scalars['Boolean']['input'];
|
|
126805
|
+
inputId: Scalars['String']['input'];
|
|
126806
|
+
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
126807
|
+
targetClassification?: InputMaybe<Array<JiraBulkMoveClassificationMappingInput>>;
|
|
126808
|
+
targetIssueTypeId: Scalars['ID']['input'];
|
|
126809
|
+
targetMandatoryFields?: InputMaybe<Array<JiraBulkMoveMandatoryFieldsMappingInput>>;
|
|
126810
|
+
targetParentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
126811
|
+
targetProjectId: Scalars['ID']['input'];
|
|
126812
|
+
targetStatus?: InputMaybe<Array<JiraBulkMoveStatusMappingInput>>;
|
|
126813
|
+
};
|
|
126814
|
+
export type JiraBulkMoveMandatoryFieldsMappingInput = {
|
|
126815
|
+
fields: JiraIssueFieldsInput;
|
|
126816
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126817
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126818
|
+
};
|
|
126819
|
+
export type JiraBulkMoveStatusEntryInput = {
|
|
126820
|
+
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
126821
|
+
targetStatusId: Scalars['ID']['input'];
|
|
126822
|
+
};
|
|
126823
|
+
export type JiraBulkMoveStatusMappingInput = {
|
|
126824
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126825
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126826
|
+
statuses: Array<JiraBulkMoveStatusEntryInput>;
|
|
126827
|
+
};
|
|
126599
126828
|
export type JiraBulkOperationInput = {
|
|
126600
126829
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
126601
126830
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
126831
|
+
bulkMoveInput?: InputMaybe<JiraSubmitBulkMoveOperationInput>;
|
|
126602
126832
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
126603
126833
|
bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
|
|
126604
126834
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -126606,6 +126836,7 @@ export type JiraBulkOperationInput = {
|
|
|
126606
126836
|
export declare enum JiraBulkOperationType {
|
|
126607
126837
|
BulkDelete = "BULK_DELETE",
|
|
126608
126838
|
BulkEdit = "BULK_EDIT",
|
|
126839
|
+
BulkMove = "BULK_MOVE",
|
|
126609
126840
|
BulkTransition = "BULK_TRANSITION",
|
|
126610
126841
|
BulkUnwatch = "BULK_UNWATCH",
|
|
126611
126842
|
BulkWatch = "BULK_WATCH"
|
|
@@ -126649,6 +126880,7 @@ export type JiraBulkStartAgentSessionsInput = {
|
|
|
126649
126880
|
};
|
|
126650
126881
|
export type JiraBulkStartAgentSessionsPayload = Payload & {
|
|
126651
126882
|
__typename?: 'JiraBulkStartAgentSessionsPayload';
|
|
126883
|
+
alreadyStartedCount: Scalars['Int']['output'];
|
|
126652
126884
|
errors?: Maybe<Array<MutationError>>;
|
|
126653
126885
|
failedCount: Scalars['Int']['output'];
|
|
126654
126886
|
rateLimitedCount: Scalars['Int']['output'];
|
|
@@ -148576,6 +148808,7 @@ export type JiraStakeholderUpdatedValue = {
|
|
|
148576
148808
|
message?: Maybe<Scalars['String']['output']>;
|
|
148577
148809
|
};
|
|
148578
148810
|
export declare enum JiraStartAgentSessionResult {
|
|
148811
|
+
AlreadyStarted = "ALREADY_STARTED",
|
|
148579
148812
|
Failed = "FAILED",
|
|
148580
148813
|
RateLimited = "RATE_LIMITED",
|
|
148581
148814
|
Skipped = "SKIPPED",
|
|
@@ -148747,6 +148980,9 @@ export type JiraStreamHubResourceIdentifier = {
|
|
|
148747
148980
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
148748
148981
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
148749
148982
|
};
|
|
148983
|
+
export type JiraSubmitBulkMoveOperationInput = {
|
|
148984
|
+
bulkMoveInputs: Array<JiraBulkMoveInput>;
|
|
148985
|
+
};
|
|
148750
148986
|
export type JiraSubmitBulkOperationInput = {
|
|
148751
148987
|
bulkOperationInput: JiraBulkOperationInput;
|
|
148752
148988
|
bulkOperationType: JiraBulkOperationType;
|
|
@@ -152607,6 +152843,10 @@ export type JpdViewCreatedEvent = {
|
|
|
152607
152843
|
viewId: Scalars['Int']['output'];
|
|
152608
152844
|
viewUuid: Scalars['ID']['output'];
|
|
152609
152845
|
};
|
|
152846
|
+
export type JpdViewDeleted = {
|
|
152847
|
+
__typename?: 'JpdViewDeleted';
|
|
152848
|
+
success: Scalars['Boolean']['output'];
|
|
152849
|
+
};
|
|
152610
152850
|
export type JpdViewDeletedEvent = {
|
|
152611
152851
|
__typename?: 'JpdViewDeletedEvent';
|
|
152612
152852
|
deletedByUserId: Scalars['ID']['output'];
|
|
@@ -153408,6 +153648,10 @@ export type JsmAdaptiveLanguageQueryApi = {
|
|
|
153408
153648
|
export type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
|
|
153409
153649
|
projectAri: Scalars['ID']['input'];
|
|
153410
153650
|
};
|
|
153651
|
+
export declare enum JsmChannelsAuthMode {
|
|
153652
|
+
Application = "APPLICATION",
|
|
153653
|
+
Delegated = "DELEGATED"
|
|
153654
|
+
}
|
|
153411
153655
|
export type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
153412
153656
|
__typename?: 'JsmChannelsConditionNode';
|
|
153413
153657
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -153452,6 +153696,7 @@ export type JsmChannelsEnabledRovoServiceToolsConfiguration = {
|
|
|
153452
153696
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
153453
153697
|
};
|
|
153454
153698
|
export type JsmChannelsEstablishConnectionInput = {
|
|
153699
|
+
authMode?: InputMaybe<JsmChannelsAuthMode>;
|
|
153455
153700
|
clientId: Scalars['String']['input'];
|
|
153456
153701
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
153457
153702
|
connectionType: JsmChannelsConnectionType;
|
|
@@ -156157,7 +156402,7 @@ export type KitsuneFieldEdge = KitsuneEdge & {
|
|
|
156157
156402
|
export type KitsuneFieldOptionUpdateInput = {
|
|
156158
156403
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156159
156404
|
id: Scalars['ID']['input'];
|
|
156160
|
-
name
|
|
156405
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
156161
156406
|
};
|
|
156162
156407
|
export type KitsuneFieldOptionsInput = {
|
|
156163
156408
|
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -156628,6 +156873,7 @@ export type KitsuneSourceInputWeb = {
|
|
|
156628
156873
|
};
|
|
156629
156874
|
export type KitsuneSpace = Node & {
|
|
156630
156875
|
__typename?: 'KitsuneSpace';
|
|
156876
|
+
accessLevel: KitsuneSpaceAccessLevel;
|
|
156631
156877
|
description?: Maybe<Scalars['String']['output']>;
|
|
156632
156878
|
feedbacks: KitsuneFeedbackConnection;
|
|
156633
156879
|
fields: KitsuneFieldConnection;
|
|
@@ -156659,6 +156905,10 @@ export type KitsuneSpaceViewTreeArgs = {
|
|
|
156659
156905
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156660
156906
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
156661
156907
|
};
|
|
156908
|
+
export declare enum KitsuneSpaceAccessLevel {
|
|
156909
|
+
Open = "OPEN",
|
|
156910
|
+
Private = "PRIVATE"
|
|
156911
|
+
}
|
|
156662
156912
|
export type KitsuneSpaceConnection = KitsuneConnection & {
|
|
156663
156913
|
__typename?: 'KitsuneSpaceConnection';
|
|
156664
156914
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -164634,6 +164884,12 @@ export type MercuryAskConnection = {
|
|
|
164634
164884
|
pageInfo: PageInfo;
|
|
164635
164885
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
164636
164886
|
};
|
|
164887
|
+
export type MercuryAskCustomFieldActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
164888
|
+
__typename?: 'MercuryAskCustomFieldActivityHistoryMetadata';
|
|
164889
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
164890
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
164891
|
+
searchKey: Scalars['String']['output'];
|
|
164892
|
+
};
|
|
164637
164893
|
export type MercuryAskCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
164638
164894
|
__typename?: 'MercuryAskCustomFieldDefinitionScope';
|
|
164639
164895
|
entityType: Scalars['String']['output'];
|
|
@@ -164651,6 +164907,14 @@ export declare enum MercuryAskEventType {
|
|
|
164651
164907
|
}
|
|
164652
164908
|
export declare enum MercuryAskField {
|
|
164653
164909
|
ConnectedWork = "CONNECTED_WORK",
|
|
164910
|
+
CustomCheckbox = "CUSTOM_CHECKBOX",
|
|
164911
|
+
CustomDate = "CUSTOM_DATE",
|
|
164912
|
+
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
164913
|
+
CustomMultiUser = "CUSTOM_MULTI_USER",
|
|
164914
|
+
CustomNumber = "CUSTOM_NUMBER",
|
|
164915
|
+
CustomSingleSelect = "CUSTOM_SINGLE_SELECT",
|
|
164916
|
+
CustomSingleUser = "CUSTOM_SINGLE_USER",
|
|
164917
|
+
CustomText = "CUSTOM_TEXT",
|
|
164654
164918
|
Description = "DESCRIPTION",
|
|
164655
164919
|
ImpactedWork = "IMPACTED_WORK",
|
|
164656
164920
|
Justification = "JUSTIFICATION",
|
|
@@ -164774,6 +165038,7 @@ export type MercuryAskTransition = {
|
|
|
164774
165038
|
export type MercuryAskUpdatedField = {
|
|
164775
165039
|
__typename?: 'MercuryAskUpdatedField';
|
|
164776
165040
|
field: MercuryAskField;
|
|
165041
|
+
metadata?: Maybe<Array<MercuryActivityHistoryMetadata>>;
|
|
164777
165042
|
newData?: Maybe<MercuryAskActivityHistoryData>;
|
|
164778
165043
|
newValue?: Maybe<Scalars['String']['output']>;
|
|
164779
165044
|
oldData?: Maybe<MercuryAskActivityHistoryData>;
|
|
@@ -167295,8 +167560,10 @@ export type MercuryFocusAreaInsight = MercuryInsight & {
|
|
|
167295
167560
|
id: Scalars['ID']['output'];
|
|
167296
167561
|
insightData?: Maybe<MercuryFocusArea>;
|
|
167297
167562
|
insightReason: Scalars['String']['output'];
|
|
167563
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
167298
167564
|
summary?: Maybe<Scalars['String']['output']>;
|
|
167299
167565
|
title?: Maybe<Scalars['String']['output']>;
|
|
167566
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
167300
167567
|
};
|
|
167301
167568
|
export type MercuryFocusAreaInsightsFilter = {
|
|
167302
167569
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
@@ -168040,13 +168307,17 @@ export type MercuryGoalAggregatedStatusCount = {
|
|
|
168040
168307
|
export type MercuryGoalInsight = MercuryInsight & {
|
|
168041
168308
|
__typename?: 'MercuryGoalInsight';
|
|
168042
168309
|
ari: Scalars['ID']['output'];
|
|
168310
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168311
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168043
168312
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168044
168313
|
focusAreaId: Scalars['ID']['output'];
|
|
168045
168314
|
id: Scalars['ID']['output'];
|
|
168046
168315
|
insightData?: Maybe<TownsquareGoal>;
|
|
168047
168316
|
insightReason: Scalars['String']['output'];
|
|
168317
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168048
168318
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168049
168319
|
title?: Maybe<Scalars['String']['output']>;
|
|
168320
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168050
168321
|
};
|
|
168051
168322
|
export declare enum MercuryGoalStatus {
|
|
168052
168323
|
Archived = "ARCHIVED",
|
|
@@ -168140,8 +168411,10 @@ export declare enum MercuryImportJobStatus {
|
|
|
168140
168411
|
export type MercuryInsight = {
|
|
168141
168412
|
id: Scalars['ID']['output'];
|
|
168142
168413
|
insightReason: Scalars['String']['output'];
|
|
168414
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168143
168415
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168144
168416
|
title?: Maybe<Scalars['String']['output']>;
|
|
168417
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168145
168418
|
};
|
|
168146
168419
|
export type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
|
|
168147
168420
|
export type MercuryInsightObjectConnection = {
|
|
@@ -168301,13 +168574,17 @@ export declare enum MercuryInviteStatus {
|
|
|
168301
168574
|
export type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
168302
168575
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
168303
168576
|
ari: Scalars['ID']['output'];
|
|
168577
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168578
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168304
168579
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168305
168580
|
focusAreaId: Scalars['ID']['output'];
|
|
168306
168581
|
id: Scalars['ID']['output'];
|
|
168307
168582
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
168308
168583
|
insightReason: Scalars['String']['output'];
|
|
168584
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168309
168585
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168310
168586
|
title?: Maybe<Scalars['String']['output']>;
|
|
168587
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168311
168588
|
};
|
|
168312
168589
|
export type MercuryJiraAlignProjectType = {
|
|
168313
168590
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
@@ -168333,13 +168610,17 @@ export type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesA
|
|
|
168333
168610
|
export type MercuryJiraIssueInsight = MercuryInsight & {
|
|
168334
168611
|
__typename?: 'MercuryJiraIssueInsight';
|
|
168335
168612
|
ari: Scalars['ID']['output'];
|
|
168613
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168614
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168336
168615
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168337
168616
|
focusAreaId: Scalars['ID']['output'];
|
|
168338
168617
|
id: Scalars['ID']['output'];
|
|
168339
168618
|
insightData?: Maybe<JiraIssue>;
|
|
168340
168619
|
insightReason: Scalars['String']['output'];
|
|
168620
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168341
168621
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168342
168622
|
title?: Maybe<Scalars['String']['output']>;
|
|
168623
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168343
168624
|
};
|
|
168344
168625
|
export type MercuryJiraProviderMappingContext = {
|
|
168345
168626
|
__typename?: 'MercuryJiraProviderMappingContext';
|
|
@@ -169234,6 +169515,11 @@ export type MercuryOrganizationCustomFieldDefinitionScope = MercuryCustomFieldDe
|
|
|
169234
169515
|
__typename?: 'MercuryOrganizationCustomFieldDefinitionScope';
|
|
169235
169516
|
entityType: Scalars['String']['output'];
|
|
169236
169517
|
};
|
|
169518
|
+
export type MercuryOrganizationCustomFieldValuesByOrganization = {
|
|
169519
|
+
__typename?: 'MercuryOrganizationCustomFieldValuesByOrganization';
|
|
169520
|
+
customFields: Array<MercuryCustomField>;
|
|
169521
|
+
organizationId: Scalars['ID']['output'];
|
|
169522
|
+
};
|
|
169237
169523
|
export type MercuryOrganizationEdge = {
|
|
169238
169524
|
__typename?: 'MercuryOrganizationEdge';
|
|
169239
169525
|
cursor: Scalars['String']['output'];
|
|
@@ -169412,6 +169698,11 @@ export declare enum MercuryOrganizationPermission {
|
|
|
169412
169698
|
Export = "EXPORT",
|
|
169413
169699
|
ViewFund = "VIEW_FUND"
|
|
169414
169700
|
}
|
|
169701
|
+
export declare enum MercuryOrganizationPlanAuthorityPosition {
|
|
169702
|
+
AbovePlanningAuthority = "ABOVE_PLANNING_AUTHORITY",
|
|
169703
|
+
AtPlanningAuthority = "AT_PLANNING_AUTHORITY",
|
|
169704
|
+
BelowPlanningAuthority = "BELOW_PLANNING_AUTHORITY"
|
|
169705
|
+
}
|
|
169415
169706
|
export type MercuryOrganizationPlans = {
|
|
169416
169707
|
__typename?: 'MercuryOrganizationPlans';
|
|
169417
169708
|
organizationId: Scalars['ID']['output'];
|
|
@@ -169923,6 +170214,7 @@ export type MercuryOrganizationsQueryApi = {
|
|
|
169923
170214
|
organizationViewsSearch?: Maybe<MercuryOrganizationViewConnection>;
|
|
169924
170215
|
organizations?: Maybe<Array<MercuryOrganization>>;
|
|
169925
170216
|
organizationsByExternalIds?: Maybe<Array<Maybe<MercuryOrganization>>>;
|
|
170217
|
+
organizationsCustomFields?: Maybe<Array<MercuryOrganizationCustomFieldValuesByOrganization>>;
|
|
169926
170218
|
organizationsForUser?: Maybe<MercuryOrganizationConnection>;
|
|
169927
170219
|
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
169928
170220
|
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
@@ -170008,6 +170300,11 @@ export type MercuryOrganizationsQueryApiOrganizationsByExternalIdsArgs = {
|
|
|
170008
170300
|
cloudId: Scalars['ID']['input'];
|
|
170009
170301
|
ids: Array<Scalars['String']['input']>;
|
|
170010
170302
|
};
|
|
170303
|
+
export type MercuryOrganizationsQueryApiOrganizationsCustomFieldsArgs = {
|
|
170304
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
170305
|
+
customFieldDefinitionIds: Array<Scalars['ID']['input']>;
|
|
170306
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
170307
|
+
};
|
|
170011
170308
|
export type MercuryOrganizationsQueryApiOrganizationsForUserArgs = {
|
|
170012
170309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170013
170310
|
cloudId: Scalars['ID']['input'];
|
|
@@ -170103,6 +170400,7 @@ export type MercuryPlan = Node & {
|
|
|
170103
170400
|
isSystemManaged: Scalars['Boolean']['output'];
|
|
170104
170401
|
memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
|
|
170105
170402
|
organizationId: Scalars['ID']['output'];
|
|
170403
|
+
organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
|
|
170106
170404
|
startDate: Scalars['Date']['output'];
|
|
170107
170405
|
type: MercuryPlanType;
|
|
170108
170406
|
};
|
|
@@ -170111,6 +170409,9 @@ export type MercuryPlanFocusAreaLinksArgs = {
|
|
|
170111
170409
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170112
170410
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
170113
170411
|
};
|
|
170412
|
+
export type MercuryPlanOrganizationPlanAuthorityArgs = {
|
|
170413
|
+
viewingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
170414
|
+
};
|
|
170114
170415
|
export type MercuryPlanAuthoritySetting = {
|
|
170115
170416
|
__typename?: 'MercuryPlanAuthoritySetting';
|
|
170116
170417
|
focusAreaType?: Maybe<MercuryFocusAreaType>;
|
|
@@ -170192,6 +170493,10 @@ export type MercuryPlanMemberCountAllocationToFocusAreaInput = {
|
|
|
170192
170493
|
focusAreaId: Scalars['ID']['input'];
|
|
170193
170494
|
memberCountAllocations: Array<MercuryPlanMemberCountAllocationInput>;
|
|
170194
170495
|
};
|
|
170496
|
+
export type MercuryPlanOrganizationAuthority = {
|
|
170497
|
+
__typename?: 'MercuryPlanOrganizationAuthority';
|
|
170498
|
+
organizationPlanAuthorityPosition?: Maybe<MercuryOrganizationPlanAuthorityPosition>;
|
|
170499
|
+
};
|
|
170195
170500
|
export declare enum MercuryPlanType {
|
|
170196
170501
|
Baseline = "BASELINE",
|
|
170197
170502
|
Draft = "DRAFT"
|
|
@@ -172327,13 +172632,17 @@ export type MercuryThreadedCommentEdge = {
|
|
|
172327
172632
|
export type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
172328
172633
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
172329
172634
|
ari: Scalars['ID']['output'];
|
|
172635
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
172636
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
172330
172637
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
172331
172638
|
focusAreaId: Scalars['ID']['output'];
|
|
172332
172639
|
id: Scalars['ID']['output'];
|
|
172333
172640
|
insightData?: Maybe<TownsquareProject>;
|
|
172334
172641
|
insightReason: Scalars['String']['output'];
|
|
172642
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
172335
172643
|
summary?: Maybe<Scalars['String']['output']>;
|
|
172336
172644
|
title?: Maybe<Scalars['String']['output']>;
|
|
172645
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
172337
172646
|
};
|
|
172338
172647
|
export type MercuryTransitionChangeProposalPayload = Payload & {
|
|
172339
172648
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
@@ -173928,6 +174237,7 @@ export type Mutation = {
|
|
|
173928
174237
|
aiops_regenerateIncidentSuggestion?: Maybe<AiOpsRegenerateIncidentSuggestionPayload>;
|
|
173929
174238
|
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
173930
174239
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
174240
|
+
aiplanner_restorePlan?: Maybe<Scalars['String']['output']>;
|
|
173931
174241
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
173932
174242
|
appStorage?: Maybe<AppStorageMutation>;
|
|
173933
174243
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -174210,6 +174520,7 @@ export type Mutation = {
|
|
|
174210
174520
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
174211
174521
|
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
174212
174522
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
174523
|
+
confluence_patchFolder?: Maybe<ConfluencePatchFolderPayload>;
|
|
174213
174524
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
174214
174525
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
174215
174526
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
@@ -174475,11 +174786,13 @@ export type Mutation = {
|
|
|
174475
174786
|
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
174476
174787
|
devai_autodevNextCreateSuggestedClassificationRepository?: Maybe<DevAiAutodevNextCreateSuggestedClassificationRepositoryPayload>;
|
|
174477
174788
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
174789
|
+
devai_autodevNextDeleteSuggestedClassificationRepository?: Maybe<DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload>;
|
|
174478
174790
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
174479
174791
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
174480
174792
|
devai_autodevNextRemoveExcludedRepositories?: Maybe<DevAiAutodevNextRemoveExcludedRepositoriesPayload>;
|
|
174481
174793
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
174482
174794
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
174795
|
+
devai_autodevNextResetWorkItemClassification?: Maybe<DevAiAutodevNextResetWorkItemClassificationPayload>;
|
|
174483
174796
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
174484
174797
|
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
174485
174798
|
devai_autodevNextUnassignWorkItem?: Maybe<DevAiAutodevNextUnassignWorkItemPayload>;
|
|
@@ -174633,6 +174946,7 @@ export type Mutation = {
|
|
|
174633
174946
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
174634
174947
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
174635
174948
|
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
174949
|
+
graphIntegration_updateTwgProductAdminSettings?: Maybe<GraphIntegrationUpdateTwgProductAdminSettingsPayload>;
|
|
174636
174950
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
174637
174951
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
174638
174952
|
graphStoreV2_createAtlassianHomeTagIsAliasOfAtlassianHomeTag?: Maybe<GraphStoreV2CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagPayload>;
|
|
@@ -174795,6 +175109,7 @@ export type Mutation = {
|
|
|
174795
175109
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
174796
175110
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
174797
175111
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
175112
|
+
gravity_deleteView?: Maybe<JpdViewDeleted>;
|
|
174798
175113
|
gravity_discardDraft?: Maybe<GravityDraftPayload>;
|
|
174799
175114
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
174800
175115
|
gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
|
|
@@ -175247,6 +175562,7 @@ export type Mutation = {
|
|
|
175247
175562
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
175248
175563
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
175249
175564
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
175565
|
+
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
175250
175566
|
psm_updateSensorEnablement?: Maybe<PsmUpdateSensorEnablementPayload>;
|
|
175251
175567
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
175252
175568
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
@@ -176086,6 +176402,10 @@ export type MutationAiops_TriggerInvestigationArgs = {
|
|
|
176086
176402
|
cloudId: Scalars['ID']['input'];
|
|
176087
176403
|
input: AiOpsTriggerInvestigationInput;
|
|
176088
176404
|
};
|
|
176405
|
+
export type MutationAiplanner_RestorePlanArgs = {
|
|
176406
|
+
cloudId: Scalars['String']['input'];
|
|
176407
|
+
planId: Scalars['String']['input'];
|
|
176408
|
+
};
|
|
176089
176409
|
export type MutationAppStorage_AdminArgs = {
|
|
176090
176410
|
appId: Scalars['ID']['input'];
|
|
176091
176411
|
};
|
|
@@ -177156,6 +177476,10 @@ export type MutationConfluence_PatchCalendarArgs = {
|
|
|
177156
177476
|
cloudId: Scalars['ID']['input'];
|
|
177157
177477
|
input: ConfluencePatchCalendarInput;
|
|
177158
177478
|
};
|
|
177479
|
+
export type MutationConfluence_PatchFolderArgs = {
|
|
177480
|
+
cloudId: Scalars['ID']['input'];
|
|
177481
|
+
input: ConfluencePatchFolderInput;
|
|
177482
|
+
};
|
|
177159
177483
|
export type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
177160
177484
|
cloudId: Scalars['ID']['input'];
|
|
177161
177485
|
input: ConfluencePatchSpaceSettingsInput;
|
|
@@ -178148,6 +178472,9 @@ export type MutationDevai_AutodevNextCreateSuggestedClassificationRepositoryArgs
|
|
|
178148
178472
|
export type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
178149
178473
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
178150
178474
|
};
|
|
178475
|
+
export type MutationDevai_AutodevNextDeleteSuggestedClassificationRepositoryArgs = {
|
|
178476
|
+
input: DevAiAutodevNextDeleteSuggestedClassificationRepositoryInput;
|
|
178477
|
+
};
|
|
178151
178478
|
export type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
178152
178479
|
input: DevAiAutodevNextDeleteWorkstreamInput;
|
|
178153
178480
|
};
|
|
@@ -178163,6 +178490,9 @@ export type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
|
178163
178490
|
export type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
178164
178491
|
input: DevAiAutodevNextRemoveProjectsInput;
|
|
178165
178492
|
};
|
|
178493
|
+
export type MutationDevai_AutodevNextResetWorkItemClassificationArgs = {
|
|
178494
|
+
input: DevAiAutodevNextResetWorkItemClassificationInput;
|
|
178495
|
+
};
|
|
178166
178496
|
export type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
178167
178497
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
178168
178498
|
};
|
|
@@ -178640,6 +178970,9 @@ export type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
|
178640
178970
|
export type MutationGraphIntegration_UpdateSkillArgs = {
|
|
178641
178971
|
input: GraphIntegrationUpdateSkillInput;
|
|
178642
178972
|
};
|
|
178973
|
+
export type MutationGraphIntegration_UpdateTwgProductAdminSettingsArgs = {
|
|
178974
|
+
input: GraphIntegrationUpdateTwgProductAdminSettingsInput;
|
|
178975
|
+
};
|
|
178643
178976
|
export type MutationGraphStoreV2_CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagArgs = {
|
|
178644
178977
|
input?: InputMaybe<GraphStoreV2CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagInput>;
|
|
178645
178978
|
};
|
|
@@ -179130,6 +179463,10 @@ export type MutationGravity_DeleteReactionArgs = {
|
|
|
179130
179463
|
cloudId: Scalars['ID']['input'];
|
|
179131
179464
|
input: GravityDeleteReactionInput;
|
|
179132
179465
|
};
|
|
179466
|
+
export type MutationGravity_DeleteViewArgs = {
|
|
179467
|
+
cloudId: Scalars['ID']['input'];
|
|
179468
|
+
viewId: Scalars['ID']['input'];
|
|
179469
|
+
};
|
|
179133
179470
|
export type MutationGravity_DiscardDraftArgs = {
|
|
179134
179471
|
cloudId: Scalars['ID']['input'];
|
|
179135
179472
|
input: GravityDiscardDraftInput;
|
|
@@ -180627,6 +180964,9 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
180627
180964
|
export type MutationPsm_RegisterDeviceArgs = {
|
|
180628
180965
|
input: PsmRegisterDeviceInput;
|
|
180629
180966
|
};
|
|
180967
|
+
export type MutationPsm_TriggerRemediationArgs = {
|
|
180968
|
+
input: PsmTriggerRemediationInput;
|
|
180969
|
+
};
|
|
180630
180970
|
export type MutationPsm_UpdateSensorEnablementArgs = {
|
|
180631
180971
|
cloudId: Scalars['ID']['input'];
|
|
180632
180972
|
input: PsmUpdateSensorEnablementInput;
|
|
@@ -184377,6 +184717,12 @@ export declare enum PsmRemediationTrigger {
|
|
|
184377
184717
|
Auto = "AUTO",
|
|
184378
184718
|
EndUser = "END_USER"
|
|
184379
184719
|
}
|
|
184720
|
+
export type PsmRemediationTriggerSummary = {
|
|
184721
|
+
__typename?: 'PsmRemediationTriggerSummary';
|
|
184722
|
+
closed?: Maybe<Array<Scalars['String']['output']>>;
|
|
184723
|
+
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
184724
|
+
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
184725
|
+
};
|
|
184380
184726
|
export type PsmSensorCategoriesInput = {
|
|
184381
184727
|
spaceId: Scalars['ID']['input'];
|
|
184382
184728
|
};
|
|
@@ -184517,6 +184863,18 @@ export type PsmTopIssue = {
|
|
|
184517
184863
|
name: Scalars['String']['output'];
|
|
184518
184864
|
severity: PsmSeverity;
|
|
184519
184865
|
};
|
|
184866
|
+
export type PsmTriggerRemediationInput = {
|
|
184867
|
+
cloudId: Scalars['ID']['input'];
|
|
184868
|
+
faultIds: Array<Scalars['String']['input']>;
|
|
184869
|
+
remediationId: Scalars['String']['input'];
|
|
184870
|
+
spaceId: Scalars['ID']['input'];
|
|
184871
|
+
};
|
|
184872
|
+
export type PsmTriggerRemediationPayload = Payload & {
|
|
184873
|
+
__typename?: 'PsmTriggerRemediationPayload';
|
|
184874
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184875
|
+
success: Scalars['Boolean']['output'];
|
|
184876
|
+
summary?: Maybe<PsmRemediationTriggerSummary>;
|
|
184877
|
+
};
|
|
184520
184878
|
export type PsmTriggeredSensor = {
|
|
184521
184879
|
__typename?: 'PsmTriggeredSensor';
|
|
184522
184880
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -184866,6 +185224,7 @@ export type Query = {
|
|
|
184866
185224
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
184867
185225
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
184868
185226
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
185227
|
+
admin_auditLogUserProfiles?: Maybe<AdminUserConnection>;
|
|
184869
185228
|
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
184870
185229
|
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
184871
185230
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
@@ -185831,6 +186190,7 @@ export type Query = {
|
|
|
185831
186190
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
185832
186191
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
185833
186192
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
186193
|
+
graphIntegration_twgProductAdminSettings?: Maybe<GraphIntegrationTwgProductAdminSettings>;
|
|
185834
186194
|
graphStore?: Maybe<GraphStore>;
|
|
185835
186195
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
185836
186196
|
graphStoreV2_assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
@@ -188768,6 +189128,13 @@ export type QueryAdmin_AuditLogEventsArgs = {
|
|
|
188768
189128
|
export type QueryAdmin_AuditLogProductMappingArgs = {
|
|
188769
189129
|
container: AdminAuditLogContainer;
|
|
188770
189130
|
};
|
|
189131
|
+
export type QueryAdmin_AuditLogUserProfilesArgs = {
|
|
189132
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189133
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
189134
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189135
|
+
input: AdminAuditLogUserProfilesInput;
|
|
189136
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
189137
|
+
};
|
|
188771
189138
|
export type QueryAdmin_AuditLogUsersArgs = {
|
|
188772
189139
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188773
189140
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190357,6 +190724,9 @@ export type QueryAssetsVertical_AssetTypesTrackingsArgs = {
|
|
|
190357
190724
|
cloudId: Scalars['ID']['input'];
|
|
190358
190725
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190359
190726
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190727
|
+
parentObjectTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190728
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
190729
|
+
sort?: InputMaybe<AssetsVerticalAssetTypesTrackingSortInput>;
|
|
190360
190730
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
190361
190731
|
};
|
|
190362
190732
|
export type QueryAssetsVertical_AsyncTaskArgs = {
|
|
@@ -190407,6 +190777,8 @@ export type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
190407
190777
|
cloudId: Scalars['ID']['input'];
|
|
190408
190778
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190409
190779
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190780
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
190781
|
+
sort?: InputMaybe<AssetsVerticalDepreciationRulesSortInput>;
|
|
190410
190782
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
190411
190783
|
};
|
|
190412
190784
|
export type QueryAssetsVertical_HardwareCountByStatusArgs = {
|
|
@@ -193265,6 +193637,7 @@ export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
|
193265
193637
|
};
|
|
193266
193638
|
export type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
193267
193639
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193640
|
+
authTypes?: InputMaybe<Array<GraphIntegrationDirectoryAuthType>>;
|
|
193268
193641
|
cloudId: Scalars['ID']['input'];
|
|
193269
193642
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
193270
193643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -193373,6 +193746,10 @@ export type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
|
193373
193746
|
export type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettingsArgs = {
|
|
193374
193747
|
cloudId: Scalars['ID']['input'];
|
|
193375
193748
|
};
|
|
193749
|
+
export type QueryGraphIntegration_TwgProductAdminSettingsArgs = {
|
|
193750
|
+
contextAri: Scalars['ID']['input'];
|
|
193751
|
+
productAri: Scalars['ID']['input'];
|
|
193752
|
+
};
|
|
193376
193753
|
export type QueryGraphStoreV2_AssetTypeHasChildAssetTypeArgs = {
|
|
193377
193754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193378
193755
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -209569,6 +209946,7 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
209569
209946
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
209570
209947
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
209571
209948
|
cloudId: Scalars['ID']['input'];
|
|
209949
|
+
filter?: InputMaybe<JiraAgentsInSpaceFilter>;
|
|
209572
209950
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209573
209951
|
input: JiraAgentsInSpaceInput;
|
|
209574
209952
|
};
|
|
@@ -226218,6 +226596,8 @@ export type TownsquareDraftUpdate = {
|
|
|
226218
226596
|
};
|
|
226219
226597
|
export type TownsquareEditGoalInput = {
|
|
226220
226598
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
226599
|
+
descriptionMeasurement?: InputMaybe<Scalars['String']['input']>;
|
|
226600
|
+
descriptionWhy?: InputMaybe<Scalars['String']['input']>;
|
|
226221
226601
|
id: Scalars['String']['input'];
|
|
226222
226602
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
226223
226603
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -226305,6 +226685,8 @@ export type TownsquareGoal = Node & {
|
|
|
226305
226685
|
creationDate: Scalars['DateTime']['output'];
|
|
226306
226686
|
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
226307
226687
|
description?: Maybe<Scalars['String']['output']>;
|
|
226688
|
+
descriptionMeasurement?: Maybe<Scalars['String']['output']>;
|
|
226689
|
+
descriptionWhy?: Maybe<Scalars['String']['output']>;
|
|
226308
226690
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
226309
226691
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
226310
226692
|
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
@@ -226500,6 +226882,7 @@ export type TownsquareGoalAppCapabilities = {
|
|
|
226500
226882
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
226501
226883
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
226502
226884
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
226885
|
+
canManagePeriodicMetricTargets?: Maybe<Scalars['Boolean']['output']>;
|
|
226503
226886
|
canRemoveAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
226504
226887
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
226505
226888
|
};
|
|
@@ -227295,6 +227678,8 @@ export type TownsquareGoalsEditGoalTypePairInput = {
|
|
|
227295
227678
|
export type TownsquareGoalsEditInput = {
|
|
227296
227679
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
227297
227680
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
227681
|
+
descriptionMeasurement?: InputMaybe<Scalars['String']['input']>;
|
|
227682
|
+
descriptionWhy?: InputMaybe<Scalars['String']['input']>;
|
|
227298
227683
|
goalId: Scalars['ID']['input'];
|
|
227299
227684
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
227300
227685
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -234153,6 +234538,7 @@ export type TrelloMutationApi = {
|
|
|
234153
234538
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
234154
234539
|
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
234155
234540
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
234541
|
+
revertEditBoardWithAi?: Maybe<TrelloRevertEditBoardWithAiPayload>;
|
|
234156
234542
|
revokeMemberOAuth2AccessGrants?: Maybe<TrelloRevokeMemberOAuth2AccessGrantsPayload>;
|
|
234157
234543
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
234158
234544
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
@@ -234475,6 +234861,9 @@ export type TrelloMutationApiResetCardCoverArgs = {
|
|
|
234475
234861
|
export type TrelloMutationApiRetryAiOnBoardArgs = {
|
|
234476
234862
|
input: TrelloRetryAiOnBoardInput;
|
|
234477
234863
|
};
|
|
234864
|
+
export type TrelloMutationApiRevertEditBoardWithAiArgs = {
|
|
234865
|
+
input: TrelloRevertEditBoardWithAiInput;
|
|
234866
|
+
};
|
|
234478
234867
|
export type TrelloMutationApiRevokeMemberOAuth2AccessGrantsArgs = {
|
|
234479
234868
|
input: TrelloRevokeMemberOAuth2AccessGrantsInput;
|
|
234480
234869
|
};
|
|
@@ -236046,6 +236435,17 @@ export type TrelloRetryAiOnBoardPayload = Payload & {
|
|
|
236046
236435
|
errors?: Maybe<Array<MutationError>>;
|
|
236047
236436
|
success: Scalars['Boolean']['output'];
|
|
236048
236437
|
};
|
|
236438
|
+
export type TrelloRevertEditBoardWithAiInput = {
|
|
236439
|
+
boardId: Scalars['ID']['input'];
|
|
236440
|
+
referenceTaskId: Scalars['ID']['input'];
|
|
236441
|
+
sessionId: Scalars['ID']['input'];
|
|
236442
|
+
};
|
|
236443
|
+
export type TrelloRevertEditBoardWithAiPayload = Payload & {
|
|
236444
|
+
__typename?: 'TrelloRevertEditBoardWithAiPayload';
|
|
236445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236446
|
+
success: Scalars['Boolean']['output'];
|
|
236447
|
+
task?: Maybe<TrelloAgentTask>;
|
|
236448
|
+
};
|
|
236049
236449
|
export type TrelloRevokeMemberOAuth2AccessGrantsInput = {
|
|
236050
236450
|
enterpriseId: Scalars['ID']['input'];
|
|
236051
236451
|
memberId: Scalars['ID']['input'];
|