@forge/cli-shared 8.23.0-next.9 → 8.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +70 -0
- package/out/graphql/graphql-types.d.ts +245 -92
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +79 -40
- package/out/graphql/minimal-graphql-runner.d.ts +3 -3
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +7 -7
- package/out/shared/forge-cli-attribution.d.ts +11 -1
- package/out/shared/forge-cli-attribution.d.ts.map +1 -1
- package/out/shared/forge-cli-attribution.js +113 -2
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +4 -2
|
@@ -482,18 +482,6 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
482
482
|
Resolved = "RESOLVED",
|
|
483
483
|
Snoozed = "SNOOZED"
|
|
484
484
|
}
|
|
485
|
-
export declare type AiOpsReviewRootCauseInput = {
|
|
486
|
-
investigationId: Scalars['ID']['input'];
|
|
487
|
-
rootCauseSuggestionId: Scalars['ID']['input'];
|
|
488
|
-
status: AiOpsLikelyRootCauseReviewStatus;
|
|
489
|
-
};
|
|
490
|
-
export declare type AiOpsReviewRootCausePayload = {
|
|
491
|
-
__typename?: 'AIOpsReviewRootCausePayload';
|
|
492
|
-
errors?: Maybe<Array<MutationError>>;
|
|
493
|
-
investigation?: Maybe<AiOpsInvestigation>;
|
|
494
|
-
rootCause?: Maybe<AiOpsLikelyRootCause>;
|
|
495
|
-
success: Scalars['Boolean']['output'];
|
|
496
|
-
};
|
|
497
485
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
498
486
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
499
487
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
@@ -2463,6 +2451,12 @@ export declare type AvpUnstarDashboardPayload = Payload & {
|
|
|
2463
2451
|
errors?: Maybe<Array<MutationError>>;
|
|
2464
2452
|
success: Scalars['Boolean']['output'];
|
|
2465
2453
|
};
|
|
2454
|
+
export declare type AvpUpdateChartByConfigIdInput = {
|
|
2455
|
+
chart: AvpChartInput;
|
|
2456
|
+
chartConfigId: Scalars['ID']['input'];
|
|
2457
|
+
cloudId: Scalars['ID']['input'];
|
|
2458
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2459
|
+
};
|
|
2466
2460
|
export declare type AvpUpdateChartInput = {
|
|
2467
2461
|
chart: AvpChartInput;
|
|
2468
2462
|
chartAri: Scalars['ID']['input'];
|
|
@@ -2589,6 +2583,11 @@ export declare type AvpVizConfigInput = {
|
|
|
2589
2583
|
accessors?: InputMaybe<Scalars['JSON']['input']>;
|
|
2590
2584
|
data: Array<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
2591
2585
|
};
|
|
2586
|
+
export declare type AvpWorkspaceExperience = {
|
|
2587
|
+
__typename?: 'AVPWorkspaceExperience';
|
|
2588
|
+
id: Scalars['ID']['output'];
|
|
2589
|
+
isOptedInToAAPlatformDashboards?: Maybe<Scalars['Boolean']['output']>;
|
|
2590
|
+
};
|
|
2592
2591
|
export declare enum AcceptableResponse {
|
|
2593
2592
|
False = "FALSE",
|
|
2594
2593
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -5339,6 +5338,7 @@ export declare type AgentStudioAgent = {
|
|
|
5339
5338
|
description?: Maybe<Scalars['String']['output']>;
|
|
5340
5339
|
etag?: Maybe<Scalars['String']['output']>;
|
|
5341
5340
|
id: Scalars['ID']['output'];
|
|
5341
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5342
5342
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5343
5343
|
isPublished: Scalars['Boolean']['output'];
|
|
5344
5344
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -5478,6 +5478,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
5478
5478
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
5479
5479
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5480
5480
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
5481
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
5481
5482
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
5482
5483
|
isPublished: Scalars['Boolean']['output'];
|
|
5483
5484
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5767,6 +5768,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5767
5768
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5768
5769
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
5769
5770
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
5771
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5770
5772
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5771
5773
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5772
5774
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
@@ -6389,6 +6391,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
6389
6391
|
description?: Maybe<Scalars['String']['output']>;
|
|
6390
6392
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6391
6393
|
id: Scalars['ID']['output'];
|
|
6394
|
+
isFollowUpQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
6392
6395
|
isModelUpgradeAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
6393
6396
|
isPublished: Scalars['Boolean']['output'];
|
|
6394
6397
|
jiraAssignability?: Maybe<JiraAgentAssignability>;
|
|
@@ -6715,6 +6718,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6715
6718
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
6716
6719
|
executionConfig?: InputMaybe<AgentStudioExecutionConfigInput>;
|
|
6717
6720
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
6721
|
+
isFollowUpQuestionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6718
6722
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6719
6723
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6720
6724
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7204,13 +7208,14 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
7204
7208
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
7205
7209
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
7206
7210
|
};
|
|
7207
|
-
export declare type
|
|
7211
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesInput = {
|
|
7212
|
+
cloudId: Scalars['ID']['input'];
|
|
7208
7213
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7209
7214
|
fieldId: Scalars['String']['input'];
|
|
7210
|
-
|
|
7215
|
+
projectKey: Scalars['String']['input'];
|
|
7211
7216
|
};
|
|
7212
|
-
export declare type
|
|
7213
|
-
__typename?: '
|
|
7217
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableEntriesPayload = {
|
|
7218
|
+
__typename?: 'AgentWorkspaceCreateDraftedRoutingTableEntriesPayload';
|
|
7214
7219
|
pageInfo: AgentWorkspacePageInfo;
|
|
7215
7220
|
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7216
7221
|
rowsInserted: Scalars['Int']['output'];
|
|
@@ -7291,16 +7296,8 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7291
7296
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7292
7297
|
success: Scalars['Boolean']['output'];
|
|
7293
7298
|
};
|
|
7294
|
-
export declare type
|
|
7295
|
-
|
|
7296
|
-
serviceFieldId: Scalars['ID']['input'];
|
|
7297
|
-
};
|
|
7298
|
-
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7299
|
-
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7300
|
-
rowsDeleted: Scalars['Int']['output'];
|
|
7301
|
-
};
|
|
7302
|
-
export declare type AgentWorkspaceDraftedRoutingTable = {
|
|
7303
|
-
__typename?: 'AgentWorkspaceDraftedRoutingTable';
|
|
7299
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntries = {
|
|
7300
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableEntries';
|
|
7304
7301
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7305
7302
|
};
|
|
7306
7303
|
export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
@@ -7397,6 +7394,10 @@ export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
|
7397
7394
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7398
7395
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7399
7396
|
};
|
|
7397
|
+
export declare type AgentWorkspaceLiveRoutingTable = {
|
|
7398
|
+
__typename?: 'AgentWorkspaceLiveRoutingTable';
|
|
7399
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7400
|
+
};
|
|
7400
7401
|
export declare type AgentWorkspaceMutationError = {
|
|
7401
7402
|
__typename?: 'AgentWorkspaceMutationError';
|
|
7402
7403
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -7516,16 +7517,6 @@ export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
|
7516
7517
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7517
7518
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7518
7519
|
};
|
|
7519
|
-
export declare type AgentWorkspaceRoutingSetupState = {
|
|
7520
|
-
__typename?: 'AgentWorkspaceRoutingSetupState';
|
|
7521
|
-
hasCommittedTable: Scalars['Boolean']['output'];
|
|
7522
|
-
hasDraft: Scalars['Boolean']['output'];
|
|
7523
|
-
hasField: Scalars['Boolean']['output'];
|
|
7524
|
-
};
|
|
7525
|
-
export declare type AgentWorkspaceRoutingTableEntries = {
|
|
7526
|
-
__typename?: 'AgentWorkspaceRoutingTableEntries';
|
|
7527
|
-
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7528
|
-
};
|
|
7529
7520
|
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7530
7521
|
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7531
7522
|
description: Scalars['String']['output'];
|
|
@@ -7923,9 +7914,9 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7923
7914
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7924
7915
|
};
|
|
7925
7916
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7917
|
+
cloudId: Scalars['ID']['input'];
|
|
7926
7918
|
fieldId: Scalars['String']['input'];
|
|
7927
|
-
|
|
7928
|
-
projectAri: Scalars['ID']['input'];
|
|
7919
|
+
projectKey: Scalars['String']['input'];
|
|
7929
7920
|
};
|
|
7930
7921
|
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7931
7922
|
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
@@ -8096,8 +8087,9 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
8096
8087
|
success: Scalars['Boolean']['output'];
|
|
8097
8088
|
};
|
|
8098
8089
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8090
|
+
cloudId: Scalars['ID']['input'];
|
|
8099
8091
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8100
|
-
|
|
8092
|
+
projectKey: Scalars['String']['input'];
|
|
8101
8093
|
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
8102
8094
|
serviceFieldId: Scalars['ID']['input'];
|
|
8103
8095
|
serviceId: Scalars['ID']['input'];
|
|
@@ -8260,7 +8252,6 @@ export declare type AiManagedObject = {
|
|
|
8260
8252
|
__typename?: 'AiManagedObject';
|
|
8261
8253
|
ari: Scalars['String']['output'];
|
|
8262
8254
|
config?: Maybe<AiManagedObjectConfig>;
|
|
8263
|
-
configVersions: AiManagedObjectConfigConnection;
|
|
8264
8255
|
createdAt: Scalars['Long']['output'];
|
|
8265
8256
|
createdBy: Scalars['String']['output'];
|
|
8266
8257
|
deletedAt?: Maybe<Scalars['Long']['output']>;
|
|
@@ -8275,10 +8266,6 @@ export declare type AiManagedObject = {
|
|
|
8275
8266
|
status: AiManagedObjectStatus;
|
|
8276
8267
|
type: AiManagedObjectType;
|
|
8277
8268
|
};
|
|
8278
|
-
export declare type AiManagedObjectConfigVersionsArgs = {
|
|
8279
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
8280
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8281
|
-
};
|
|
8282
8269
|
export declare type AiManagedObjectConfig = {
|
|
8283
8270
|
__typename?: 'AiManagedObjectConfig';
|
|
8284
8271
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
@@ -8293,12 +8280,6 @@ export declare type AiManagedObjectConfig = {
|
|
|
8293
8280
|
sources?: Maybe<Array<AiManagedObjectSource>>;
|
|
8294
8281
|
version: Scalars['Int']['output'];
|
|
8295
8282
|
};
|
|
8296
|
-
export declare type AiManagedObjectConfigConnection = {
|
|
8297
|
-
__typename?: 'AiManagedObjectConfigConnection';
|
|
8298
|
-
edges: Array<AiManagedObjectConfigEdge>;
|
|
8299
|
-
pageInfo: PageInfo;
|
|
8300
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
8301
|
-
};
|
|
8302
8283
|
export declare type AiManagedObjectConfigCreateInput = {
|
|
8303
8284
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
8304
8285
|
desiredUpdateInterval?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -8306,11 +8287,6 @@ export declare type AiManagedObjectConfigCreateInput = {
|
|
|
8306
8287
|
prompt: Scalars['String']['input'];
|
|
8307
8288
|
sources?: InputMaybe<Array<AiManagedObjectSourceInput>>;
|
|
8308
8289
|
};
|
|
8309
|
-
export declare type AiManagedObjectConfigEdge = {
|
|
8310
|
-
__typename?: 'AiManagedObjectConfigEdge';
|
|
8311
|
-
cursor: Scalars['String']['output'];
|
|
8312
|
-
node: AiManagedObjectConfig;
|
|
8313
|
-
};
|
|
8314
8290
|
export declare type AiManagedObjectConnection = {
|
|
8315
8291
|
__typename?: 'AiManagedObjectConnection';
|
|
8316
8292
|
edges: Array<AiManagedObjectEdge>;
|
|
@@ -15342,6 +15318,7 @@ export declare type CcpAllowancePoolAllocationsResponse = {
|
|
|
15342
15318
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
15343
15319
|
balance?: Maybe<Scalars['Float']['output']>;
|
|
15344
15320
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
15321
|
+
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
15345
15322
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
15346
15323
|
id?: Maybe<Scalars['String']['output']>;
|
|
15347
15324
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -15837,6 +15814,17 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
15837
15814
|
endTime?: Maybe<Scalars['Float']['output']>;
|
|
15838
15815
|
startTime?: Maybe<Scalars['Float']['output']>;
|
|
15839
15816
|
};
|
|
15817
|
+
export declare type CcpEnforcementDetails = {
|
|
15818
|
+
__typename?: 'CcpEnforcementDetails';
|
|
15819
|
+
allowed?: Maybe<Scalars['Boolean']['output']>;
|
|
15820
|
+
reason?: Maybe<CcpEnforcementReasonCode>;
|
|
15821
|
+
};
|
|
15822
|
+
export declare enum CcpEnforcementReasonCode {
|
|
15823
|
+
BaseAllowanceExhausted = "BASE_ALLOWANCE_EXHAUSTED",
|
|
15824
|
+
EnforcementExempted = "ENFORCEMENT_EXEMPTED",
|
|
15825
|
+
MeterNotOnboarded = "METER_NOT_ONBOARDED",
|
|
15826
|
+
OverageCapExceeded = "OVERAGE_CAP_EXCEEDED"
|
|
15827
|
+
}
|
|
15840
15828
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
15841
15829
|
__typename?: 'CcpEntitlement';
|
|
15842
15830
|
allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
|
|
@@ -15937,6 +15925,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
15937
15925
|
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
15938
15926
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
15939
15927
|
placeOrderLite?: Maybe<CcpPlaceOrderLiteExperienceCapability>;
|
|
15928
|
+
setUsageLimit?: Maybe<CcpSetUsageLimitExperienceCapability>;
|
|
15940
15929
|
unbundleApps?: Maybe<CcpUnbundleAppsExperienceCapability>;
|
|
15941
15930
|
};
|
|
15942
15931
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
@@ -17429,6 +17418,11 @@ export declare type CcpSearchTimestampBoundsInput = {
|
|
|
17429
17418
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
17430
17419
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
17431
17420
|
};
|
|
17421
|
+
export declare type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
17422
|
+
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
17423
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
17424
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
17425
|
+
};
|
|
17432
17426
|
export declare type CcpShipToParty = Node & {
|
|
17433
17427
|
__typename?: 'CcpShipToParty';
|
|
17434
17428
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -29778,6 +29772,18 @@ export declare type ConfluenceDisableGlobalPageBlueprintPayload = Payload & {
|
|
|
29778
29772
|
errors?: Maybe<Array<MutationError>>;
|
|
29779
29773
|
success: Scalars['Boolean']['output'];
|
|
29780
29774
|
};
|
|
29775
|
+
export declare type ConfluenceDisableSystemRoleInput = {
|
|
29776
|
+
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29777
|
+
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29778
|
+
newRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
29779
|
+
roleId: Scalars['ID']['input'];
|
|
29780
|
+
};
|
|
29781
|
+
export declare type ConfluenceDisableSystemRolePayload = Payload & {
|
|
29782
|
+
__typename?: 'ConfluenceDisableSystemRolePayload';
|
|
29783
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29784
|
+
success: Scalars['Boolean']['output'];
|
|
29785
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
29786
|
+
};
|
|
29781
29787
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
29782
29788
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
29783
29789
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -32818,6 +32824,14 @@ export declare type ConfluenceRestoreContentVersionPayload = {
|
|
|
32818
32824
|
success: Scalars['Boolean']['output'];
|
|
32819
32825
|
version: Version;
|
|
32820
32826
|
};
|
|
32827
|
+
export declare type ConfluenceRestoreSystemRoleInput = {
|
|
32828
|
+
roleId: Scalars['ID']['input'];
|
|
32829
|
+
};
|
|
32830
|
+
export declare type ConfluenceRestoreSystemRolePayload = Payload & {
|
|
32831
|
+
__typename?: 'ConfluenceRestoreSystemRolePayload';
|
|
32832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32833
|
+
success: Scalars['Boolean']['output'];
|
|
32834
|
+
};
|
|
32821
32835
|
export declare type ConfluenceRestrictingContent = {
|
|
32822
32836
|
__typename?: 'ConfluenceRestrictingContent';
|
|
32823
32837
|
id: Scalars['ID']['output'];
|
|
@@ -32998,6 +33012,15 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
32998
33012
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
32999
33013
|
success: Scalars['Boolean']['output'];
|
|
33000
33014
|
};
|
|
33015
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationInput = {
|
|
33016
|
+
roleId?: InputMaybe<Scalars['String']['input']>;
|
|
33017
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33018
|
+
};
|
|
33019
|
+
export declare type ConfluenceSetSystemOperationRoleConfigurationPayload = Payload & {
|
|
33020
|
+
__typename?: 'ConfluenceSetSystemOperationRoleConfigurationPayload';
|
|
33021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33022
|
+
success: Scalars['Boolean']['output'];
|
|
33023
|
+
};
|
|
33001
33024
|
export declare type ConfluenceShareConfiguration = {
|
|
33002
33025
|
__typename?: 'ConfluenceShareConfiguration';
|
|
33003
33026
|
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
@@ -33603,6 +33626,22 @@ export declare type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
|
33603
33626
|
errors?: Maybe<Array<MutationError>>;
|
|
33604
33627
|
success: Scalars['Boolean']['output'];
|
|
33605
33628
|
};
|
|
33629
|
+
export declare enum ConfluenceSystemOperation {
|
|
33630
|
+
CompanyHubAdmin = "COMPANY_HUB_ADMIN",
|
|
33631
|
+
CompanyHubViewer = "COMPANY_HUB_VIEWER",
|
|
33632
|
+
DefaultGuestAssignment = "DEFAULT_GUEST_ASSIGNMENT",
|
|
33633
|
+
EcosystemAppWrite = "ECOSYSTEM_APP_WRITE",
|
|
33634
|
+
FallbackRole = "FALLBACK_ROLE",
|
|
33635
|
+
RecoverSpace = "RECOVER_SPACE",
|
|
33636
|
+
SpaceOwner = "SPACE_OWNER"
|
|
33637
|
+
}
|
|
33638
|
+
export declare type ConfluenceSystemOperationRoleConfiguration = {
|
|
33639
|
+
__typename?: 'ConfluenceSystemOperationRoleConfiguration';
|
|
33640
|
+
defaultRoleId: Scalars['String']['output'];
|
|
33641
|
+
description: Scalars['String']['output'];
|
|
33642
|
+
roleId?: Maybe<Scalars['String']['output']>;
|
|
33643
|
+
systemOperation: ConfluenceSystemOperation;
|
|
33644
|
+
};
|
|
33606
33645
|
export declare type ConfluenceSystemTemplate = {
|
|
33607
33646
|
__typename?: 'ConfluenceSystemTemplate';
|
|
33608
33647
|
id: Scalars['ID']['output'];
|
|
@@ -40810,6 +40849,22 @@ export declare type DevAiAutodevNextAssociatedWorkstream = {
|
|
|
40810
40849
|
name?: Maybe<Scalars['String']['output']>;
|
|
40811
40850
|
status: Scalars['ID']['output'];
|
|
40812
40851
|
};
|
|
40852
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
40853
|
+
cloudId: Scalars['ID']['input'];
|
|
40854
|
+
state: DevAiAutodevNextCompleteWorkItemRefinementState;
|
|
40855
|
+
workItemBody?: InputMaybe<Scalars['String']['input']>;
|
|
40856
|
+
workItemId: Scalars['ID']['input'];
|
|
40857
|
+
};
|
|
40858
|
+
export declare type DevAiAutodevNextCompleteWorkItemRefinementPayload = Payload & {
|
|
40859
|
+
__typename?: 'DevAiAutodevNextCompleteWorkItemRefinementPayload';
|
|
40860
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40861
|
+
success: Scalars['Boolean']['output'];
|
|
40862
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
40863
|
+
};
|
|
40864
|
+
export declare enum DevAiAutodevNextCompleteWorkItemRefinementState {
|
|
40865
|
+
OutOfScope = "OUT_OF_SCOPE",
|
|
40866
|
+
Ready = "READY"
|
|
40867
|
+
}
|
|
40813
40868
|
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
40814
40869
|
cloudId: Scalars['ID']['input'];
|
|
40815
40870
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
@@ -40972,6 +41027,18 @@ export declare type DevAiAutodevNextSendWorkstreamNudgesPayload = Payload & {
|
|
|
40972
41027
|
errors?: Maybe<Array<MutationError>>;
|
|
40973
41028
|
success: Scalars['Boolean']['output'];
|
|
40974
41029
|
};
|
|
41030
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanInput = {
|
|
41031
|
+
cloudId: Scalars['ID']['input'];
|
|
41032
|
+
workstreamId: Scalars['ID']['input'];
|
|
41033
|
+
};
|
|
41034
|
+
export declare type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
41035
|
+
__typename?: 'DevAiAutodevNextTriggerWorkstreamScanPayload';
|
|
41036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41037
|
+
findWorkMode?: Maybe<Scalars['ID']['output']>;
|
|
41038
|
+
scansTriggered?: Maybe<Scalars['Int']['output']>;
|
|
41039
|
+
skippedReason?: Maybe<Scalars['ID']['output']>;
|
|
41040
|
+
success: Scalars['Boolean']['output'];
|
|
41041
|
+
};
|
|
40975
41042
|
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
40976
41043
|
cloudId: Scalars['ID']['input'];
|
|
40977
41044
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -108363,12 +108430,14 @@ export declare type HelpCenterBrandingColors = {
|
|
|
108363
108430
|
bannerTextColor?: Maybe<Scalars['String']['output']>;
|
|
108364
108431
|
hasTopBarBeenSplit: Scalars['Boolean']['output'];
|
|
108365
108432
|
primary?: Maybe<Scalars['String']['output']>;
|
|
108433
|
+
secondaryColor?: Maybe<Scalars['String']['output']>;
|
|
108366
108434
|
topBarColor?: Maybe<Scalars['String']['output']>;
|
|
108367
108435
|
topBarTextColor?: Maybe<Scalars['String']['output']>;
|
|
108368
108436
|
};
|
|
108369
108437
|
export declare type HelpCenterBrandingColorsInput = {
|
|
108370
108438
|
bannerTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
108371
108439
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
108440
|
+
secondaryColor?: InputMaybe<Scalars['String']['input']>;
|
|
108372
108441
|
topBarColor?: InputMaybe<Scalars['String']['input']>;
|
|
108373
108442
|
topBarTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
108374
108443
|
};
|
|
@@ -116485,6 +116554,17 @@ export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
|
116485
116554
|
issueV2?: Maybe<JiraScenarioIssueLike>;
|
|
116486
116555
|
success: Scalars['Boolean']['output'];
|
|
116487
116556
|
};
|
|
116557
|
+
export declare type JiraCreateCategoryOptionInput = {
|
|
116558
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
116559
|
+
name: Scalars['String']['input'];
|
|
116560
|
+
projectId: Scalars['ID']['input'];
|
|
116561
|
+
};
|
|
116562
|
+
export declare type JiraCreateCategoryOptionPayload = Payload & {
|
|
116563
|
+
__typename?: 'JiraCreateCategoryOptionPayload';
|
|
116564
|
+
createdCategoryOption?: Maybe<JiraOption>;
|
|
116565
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116566
|
+
success: Scalars['Boolean']['output'];
|
|
116567
|
+
};
|
|
116488
116568
|
export declare type JiraCreateCustomBackgroundInput = {
|
|
116489
116569
|
altText: Scalars['String']['input'];
|
|
116490
116570
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127785,6 +127865,7 @@ export declare type JiraProject = Node & {
|
|
|
127785
127865
|
category?: Maybe<JiraProjectCategory>;
|
|
127786
127866
|
classificationTags: Array<Scalars['String']['output']>;
|
|
127787
127867
|
cloudId: Scalars['ID']['output'];
|
|
127868
|
+
components?: Maybe<JiraComponentConnection>;
|
|
127788
127869
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
127789
127870
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
127790
127871
|
csmConversationType?: Maybe<JiraIssueType>;
|
|
@@ -127918,6 +127999,13 @@ export declare type JiraProjectBoardsArgs = {
|
|
|
127918
127999
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127919
128000
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127920
128001
|
};
|
|
128002
|
+
export declare type JiraProjectComponentsArgs = {
|
|
128003
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128004
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128006
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128007
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
128008
|
+
};
|
|
127921
128009
|
export declare type JiraProjectConditionalFormattingRulesArgs = {
|
|
127922
128010
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127923
128011
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130638,6 +130726,7 @@ export declare enum JiraRecommendationCategory {
|
|
|
130638
130726
|
export declare type JiraRecommendedAction = {
|
|
130639
130727
|
__typename?: 'JiraRecommendedAction';
|
|
130640
130728
|
entity?: Maybe<JiraRecommendedActionEntity>;
|
|
130729
|
+
relatedEntity?: Maybe<JiraRecommendedActionEntity>;
|
|
130641
130730
|
};
|
|
130642
130731
|
export declare type JiraRecommendedActionCategory = {
|
|
130643
130732
|
__typename?: 'JiraRecommendedActionCategory';
|
|
@@ -130664,6 +130753,7 @@ export declare enum JiraRecommendedActionCategoryType {
|
|
|
130664
130753
|
CommentAssigned = "COMMENT_ASSIGNED",
|
|
130665
130754
|
CommentMention = "COMMENT_MENTION",
|
|
130666
130755
|
CommentReply = "COMMENT_REPLY",
|
|
130756
|
+
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
130667
130757
|
IssueApproval = "ISSUE_APPROVAL",
|
|
130668
130758
|
IssueDueSoon = "ISSUE_DUE_SOON",
|
|
130669
130759
|
NotSet = "NOT_SET",
|
|
@@ -130686,7 +130776,7 @@ export declare type JiraRecommendedActionEdge = {
|
|
|
130686
130776
|
cursor: Scalars['String']['output'];
|
|
130687
130777
|
node?: Maybe<JiraRecommendedAction>;
|
|
130688
130778
|
};
|
|
130689
|
-
export declare type JiraRecommendedActionEntity = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
130779
|
+
export declare type JiraRecommendedActionEntity = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
130690
130780
|
export declare type JiraRedaction = {
|
|
130691
130781
|
__typename?: 'JiraRedaction';
|
|
130692
130782
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -140059,6 +140149,11 @@ export declare type JsmConversation = {
|
|
|
140059
140149
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
140060
140150
|
summary?: Maybe<Scalars['String']['output']>;
|
|
140061
140151
|
};
|
|
140152
|
+
export declare enum JsmConversationActivationState {
|
|
140153
|
+
Disabled = "DISABLED",
|
|
140154
|
+
Enabled = "ENABLED",
|
|
140155
|
+
NotConfigured = "NOT_CONFIGURED"
|
|
140156
|
+
}
|
|
140062
140157
|
export declare type JsmConversationActiveSla = {
|
|
140063
140158
|
__typename?: 'JsmConversationActiveSla';
|
|
140064
140159
|
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -140144,6 +140239,7 @@ export declare enum JsmConversationMessageSource {
|
|
|
140144
140239
|
}
|
|
140145
140240
|
export declare type JsmConversationSettings = {
|
|
140146
140241
|
__typename?: 'JsmConversationSettings';
|
|
140242
|
+
activationState?: Maybe<JsmConversationActivationState>;
|
|
140147
140243
|
assignedTeam?: Maybe<TeamV2>;
|
|
140148
140244
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140149
140245
|
defaultRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -140154,6 +140250,7 @@ export declare type JsmConversationSettings = {
|
|
|
140154
140250
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
140155
140251
|
};
|
|
140156
140252
|
export declare type JsmConversationSettingsInput = {
|
|
140253
|
+
activationState?: InputMaybe<JsmConversationActivationState>;
|
|
140157
140254
|
availabilityCriteria?: InputMaybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
140158
140255
|
defaultRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
140159
140256
|
issueLabel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -143049,6 +143146,7 @@ export declare type LiveChatParticipantLeft = {
|
|
|
143049
143146
|
export declare type LiveChatSendUserMessageInput = {
|
|
143050
143147
|
chatAri: Scalars['ID']['input'];
|
|
143051
143148
|
content: Scalars['String']['input'];
|
|
143149
|
+
messageId?: InputMaybe<Scalars['ID']['input']>;
|
|
143052
143150
|
};
|
|
143053
143151
|
export declare type LiveChatStarted = {
|
|
143054
143152
|
__typename?: 'LiveChatStarted';
|
|
@@ -152824,6 +152922,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
152824
152922
|
providers?: Maybe<MercuryProviderConnection>;
|
|
152825
152923
|
searchWorkByBenefitItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152826
152924
|
searchWorkByChangeProposal?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152925
|
+
searchWorkByCostItem?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152827
152926
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152828
152927
|
searchWorkByRisk?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
152829
152928
|
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
@@ -152876,6 +152975,13 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangePropos
|
|
|
152876
152975
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152877
152976
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
152878
152977
|
};
|
|
152978
|
+
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByCostItemArgs = {
|
|
152979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
152980
|
+
cloudId: Scalars['ID']['input'];
|
|
152981
|
+
costItemId: Scalars['ID']['input'];
|
|
152982
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
152983
|
+
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
152984
|
+
};
|
|
152879
152985
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
152880
152986
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
152881
152987
|
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155370,7 +155476,6 @@ export declare type MercuryWorkspaceContext = {
|
|
|
155370
155476
|
};
|
|
155371
155477
|
export declare type MercuryWorkspaceSettings = {
|
|
155372
155478
|
__typename?: 'MercuryWorkspaceSettings';
|
|
155373
|
-
focusAreaRankingEnabled: Scalars['Boolean']['output'];
|
|
155374
155479
|
laborCostEnabled: Scalars['Boolean']['output'];
|
|
155375
155480
|
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155376
155481
|
};
|
|
@@ -155672,13 +155777,12 @@ export declare type Mutation = {
|
|
|
155672
155777
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
155673
155778
|
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
155674
155779
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
155675
|
-
|
|
155780
|
+
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
155676
155781
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
155677
155782
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155678
155783
|
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteCoverShiftPayload>;
|
|
155679
155784
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
155680
155785
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155681
|
-
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
155682
155786
|
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditCoverShiftPayload>;
|
|
155683
155787
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
155684
155788
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -155704,8 +155808,6 @@ export declare type Mutation = {
|
|
|
155704
155808
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
155705
155809
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
155706
155810
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
155707
|
-
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155708
|
-
aiops_reviewRootCause?: Maybe<AiOpsReviewRootCausePayload>;
|
|
155709
155811
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
155710
155812
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
155711
155813
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -155831,6 +155933,7 @@ export declare type Mutation = {
|
|
|
155831
155933
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
155832
155934
|
avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
|
|
155833
155935
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
155936
|
+
avp_updateChartByConfigId?: Maybe<AvpUpdateChartPayload>;
|
|
155834
155937
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
155835
155938
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
155836
155939
|
avp_updateDashboardIdentityAccess?: Maybe<AvpUpdateDashboardIdentityAccessPayload>;
|
|
@@ -155937,6 +156040,7 @@ export declare type Mutation = {
|
|
|
155937
156040
|
confluence_deleteSubCalendarPrivateUrl?: Maybe<ConfluenceDeleteSubCalendarPrivateUrlPayload>;
|
|
155938
156041
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
155939
156042
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
156043
|
+
confluence_disableSystemRole?: Maybe<ConfluenceDisableSystemRolePayload>;
|
|
155940
156044
|
confluence_enableGlobalAnonymousEnforcement?: Maybe<ConfluenceEnableGlobalAnonymousEnforcementPayload>;
|
|
155941
156045
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
155942
156046
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
@@ -155981,11 +156085,13 @@ export declare type Mutation = {
|
|
|
155981
156085
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
155982
156086
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
155983
156087
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
156088
|
+
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
155984
156089
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
155985
156090
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
155986
156091
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
155987
156092
|
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
155988
156093
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
156094
|
+
confluence_setSystemOperationRoleConfiguration?: Maybe<ConfluenceSetSystemOperationRoleConfigurationPayload>;
|
|
155989
156095
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
155990
156096
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
155991
156097
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
@@ -156191,12 +156297,14 @@ export declare type Mutation = {
|
|
|
156191
156297
|
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
156192
156298
|
devai_autodevNextAddMembers?: Maybe<DevAiAutodevNextAddMembersPayload>;
|
|
156193
156299
|
devai_autodevNextAddProjects?: Maybe<DevAiAutodevNextAddProjectsPayload>;
|
|
156300
|
+
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
156194
156301
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
156195
156302
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
156196
156303
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
156197
156304
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
156198
156305
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
156199
156306
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
156307
|
+
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
156200
156308
|
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
156201
156309
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
156202
156310
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
@@ -156262,6 +156370,7 @@ export declare type Mutation = {
|
|
|
156262
156370
|
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
156263
156371
|
goals_createGoalTypePair?: Maybe<TownsquareCreateGoalTypePairPayload>;
|
|
156264
156372
|
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
156373
|
+
goals_createMetricValue?: Maybe<TownsquareGoalsCreateMetricValuePayload>;
|
|
156265
156374
|
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
156266
156375
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
156267
156376
|
goals_deleteComment?: Maybe<TownsquareGoalsDeleteCommentPayload>;
|
|
@@ -156370,6 +156479,7 @@ export declare type Mutation = {
|
|
|
156370
156479
|
jira_createBoardViewIssue?: Maybe<JiraBoardViewIssueCreatePayload>;
|
|
156371
156480
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
156372
156481
|
jira_createBoardViewsForWorkflows?: Maybe<JiraCreateBoardViewsForWorkflowsPayload>;
|
|
156482
|
+
jira_createCategoryOption?: Maybe<JiraCreateCategoryOptionPayload>;
|
|
156373
156483
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
156374
156484
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
156375
156485
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
@@ -157279,8 +157389,8 @@ export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
|
157279
157389
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
157280
157390
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
157281
157391
|
};
|
|
157282
|
-
export declare type
|
|
157283
|
-
input:
|
|
157392
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
157393
|
+
input: AgentWorkspaceCreateDraftedRoutingTableEntriesInput;
|
|
157284
157394
|
};
|
|
157285
157395
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
157286
157396
|
input: AgentWorkspaceCreateScheduleInput;
|
|
@@ -157297,9 +157407,6 @@ export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
|
157297
157407
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
157298
157408
|
input: AgentWorkspaceDeleteShiftInput;
|
|
157299
157409
|
};
|
|
157300
|
-
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
157301
|
-
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
157302
|
-
};
|
|
157303
157410
|
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
157304
157411
|
input: AgentWorkspaceEditCoverShiftInput;
|
|
157305
157412
|
};
|
|
@@ -157380,13 +157487,6 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
157380
157487
|
id: Scalars['ID']['input'];
|
|
157381
157488
|
input: AiManagedObjectUpdateInput;
|
|
157382
157489
|
};
|
|
157383
|
-
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
157384
|
-
input: AiOpsCreateInvestigationInput;
|
|
157385
|
-
};
|
|
157386
|
-
export declare type MutationAiops_ReviewRootCauseArgs = {
|
|
157387
|
-
cloudId: Scalars['ID']['input'];
|
|
157388
|
-
input: AiOpsReviewRootCauseInput;
|
|
157389
|
-
};
|
|
157390
157490
|
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
157391
157491
|
cloudId: Scalars['ID']['input'];
|
|
157392
157492
|
input: AiOpsTriggerInvestigationInput;
|
|
@@ -157892,6 +157992,9 @@ export declare type MutationAvp_UnstarDashboardArgs = {
|
|
|
157892
157992
|
export declare type MutationAvp_UpdateChartArgs = {
|
|
157893
157993
|
input: AvpUpdateChartInput;
|
|
157894
157994
|
};
|
|
157995
|
+
export declare type MutationAvp_UpdateChartByConfigIdArgs = {
|
|
157996
|
+
input: AvpUpdateChartByConfigIdInput;
|
|
157997
|
+
};
|
|
157895
157998
|
export declare type MutationAvp_UpdateDashboardArgs = {
|
|
157896
157999
|
input: AvpUpdateDashboardInput;
|
|
157897
158000
|
};
|
|
@@ -158246,6 +158349,10 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
158246
158349
|
cloudId: Scalars['ID']['input'];
|
|
158247
158350
|
input: ConfluenceDeleteTopicInput;
|
|
158248
158351
|
};
|
|
158352
|
+
export declare type MutationConfluence_DisableSystemRoleArgs = {
|
|
158353
|
+
cloudId: Scalars['ID']['input'];
|
|
158354
|
+
input: ConfluenceDisableSystemRoleInput;
|
|
158355
|
+
};
|
|
158249
158356
|
export declare type MutationConfluence_EnableGlobalAnonymousEnforcementArgs = {
|
|
158250
158357
|
cloudId: Scalars['ID']['input'];
|
|
158251
158358
|
};
|
|
@@ -158425,6 +158532,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
|
|
|
158425
158532
|
cloudId: Scalars['ID']['input'];
|
|
158426
158533
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
158427
158534
|
};
|
|
158535
|
+
export declare type MutationConfluence_RestoreSystemRoleArgs = {
|
|
158536
|
+
cloudId: Scalars['ID']['input'];
|
|
158537
|
+
input: ConfluenceRestoreSystemRoleInput;
|
|
158538
|
+
};
|
|
158428
158539
|
export declare type MutationConfluence_SendToDesktopArgs = {
|
|
158429
158540
|
cloudId: Scalars['ID']['input'];
|
|
158430
158541
|
input: ConfluenceSendToDesktopRequestInput;
|
|
@@ -158447,6 +158558,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
158447
158558
|
cloudId: Scalars['ID']['input'];
|
|
158448
158559
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
158449
158560
|
};
|
|
158561
|
+
export declare type MutationConfluence_SetSystemOperationRoleConfigurationArgs = {
|
|
158562
|
+
cloudId: Scalars['ID']['input'];
|
|
158563
|
+
input: ConfluenceSetSystemOperationRoleConfigurationInput;
|
|
158564
|
+
};
|
|
158450
158565
|
export declare type MutationConfluence_ShareContentArgs = {
|
|
158451
158566
|
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
158452
158567
|
cloudId: Scalars['ID']['input'];
|
|
@@ -159180,6 +159295,9 @@ export declare type MutationDevai_AutodevNextAddMembersArgs = {
|
|
|
159180
159295
|
export declare type MutationDevai_AutodevNextAddProjectsArgs = {
|
|
159181
159296
|
input: DevAiAutodevNextAddProjectsInput;
|
|
159182
159297
|
};
|
|
159298
|
+
export declare type MutationDevai_AutodevNextCompleteWorkItemRefinementArgs = {
|
|
159299
|
+
input: DevAiAutodevNextCompleteWorkItemRefinementInput;
|
|
159300
|
+
};
|
|
159183
159301
|
export declare type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
159184
159302
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
159185
159303
|
};
|
|
@@ -159198,6 +159316,9 @@ export declare type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
|
159198
159316
|
export declare type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
159199
159317
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
159200
159318
|
};
|
|
159319
|
+
export declare type MutationDevai_AutodevNextTriggerWorkstreamScanArgs = {
|
|
159320
|
+
input: DevAiAutodevNextTriggerWorkstreamScanInput;
|
|
159321
|
+
};
|
|
159201
159322
|
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
159202
159323
|
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
159203
159324
|
};
|
|
@@ -159409,6 +159530,9 @@ export declare type MutationGoals_CreateGoalTypePairArgs = {
|
|
|
159409
159530
|
export declare type MutationGoals_CreateLearningArgs = {
|
|
159410
159531
|
input: TownsquareGoalsCreateLearningInput;
|
|
159411
159532
|
};
|
|
159533
|
+
export declare type MutationGoals_CreateMetricValueArgs = {
|
|
159534
|
+
input: TownsquareGoalsCreateMetricValueInput;
|
|
159535
|
+
};
|
|
159412
159536
|
export declare type MutationGoals_CreateRiskArgs = {
|
|
159413
159537
|
input: TownsquareGoalsCreateRiskInput;
|
|
159414
159538
|
};
|
|
@@ -159729,6 +159853,9 @@ export declare type MutationJira_CreateBoardViewStatusColumnArgs = {
|
|
|
159729
159853
|
export declare type MutationJira_CreateBoardViewsForWorkflowsArgs = {
|
|
159730
159854
|
input: JiraCreateBoardViewsForWorkflowsInput;
|
|
159731
159855
|
};
|
|
159856
|
+
export declare type MutationJira_CreateCategoryOptionArgs = {
|
|
159857
|
+
input: JiraCreateCategoryOptionInput;
|
|
159858
|
+
};
|
|
159732
159859
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
159733
159860
|
input: JiraCreateCustomBackgroundInput;
|
|
159734
159861
|
};
|
|
@@ -164740,17 +164867,16 @@ export declare type Query = {
|
|
|
164740
164867
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164741
164868
|
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
164742
164869
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
164743
|
-
|
|
164870
|
+
agentWorkspace_draftedRoutingTableEntries?: Maybe<AgentWorkspaceDraftedRoutingTableEntries>;
|
|
164744
164871
|
agentWorkspace_draftedRoutingTableStatus?: Maybe<AgentWorkspaceDraftedRoutingTableStatus>;
|
|
164745
164872
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
164746
164873
|
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
164874
|
+
agentWorkspace_liveRoutingTable?: Maybe<AgentWorkspaceLiveRoutingTable>;
|
|
164747
164875
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164748
164876
|
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<AgentWorkspaceRecommendedAgentsForCoverageGapPayload>;
|
|
164749
164877
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
164750
164878
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
164751
164879
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
164752
|
-
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
164753
|
-
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
164754
164880
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
164755
164881
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
164756
164882
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
@@ -164777,12 +164903,10 @@ export declare type Query = {
|
|
|
164777
164903
|
aiManagedObject_aiManagedObject?: Maybe<AiManagedObject>;
|
|
164778
164904
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
164779
164905
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
164780
|
-
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
164781
164906
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
164782
164907
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164783
164908
|
aiops_investigationById?: Maybe<AiOpsInvestigation>;
|
|
164784
164909
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164785
|
-
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164786
164910
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
164787
164911
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
164788
164912
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -164939,6 +165063,7 @@ export declare type Query = {
|
|
|
164939
165063
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
164940
165064
|
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
164941
165065
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
165066
|
+
avp_getWorkspaceExperience?: Maybe<AvpWorkspaceExperience>;
|
|
164942
165067
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
164943
165068
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
164944
165069
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
@@ -165182,6 +165307,7 @@ export declare type Query = {
|
|
|
165182
165307
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
165183
165308
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
165184
165309
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
165310
|
+
confluence_systemOperationRoleConfigurations?: Maybe<Array<Maybe<ConfluenceSystemOperationRoleConfiguration>>>;
|
|
165185
165311
|
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
165186
165312
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
165187
165313
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
@@ -166731,8 +166857,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
166731
166857
|
cloudId: Scalars['ID']['input'];
|
|
166732
166858
|
projectKey: Scalars['String']['input'];
|
|
166733
166859
|
};
|
|
166734
|
-
export declare type
|
|
166735
|
-
|
|
166860
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
166861
|
+
cloudId: Scalars['ID']['input'];
|
|
166862
|
+
projectKey: Scalars['String']['input'];
|
|
166736
166863
|
};
|
|
166737
166864
|
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
166738
166865
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166745,6 +166872,10 @@ export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
|
166745
166872
|
cloudId: Scalars['ID']['input'];
|
|
166746
166873
|
issueKey: Scalars['String']['input'];
|
|
166747
166874
|
};
|
|
166875
|
+
export declare type QueryAgentWorkspace_LiveRoutingTableArgs = {
|
|
166876
|
+
cloudId: Scalars['ID']['input'];
|
|
166877
|
+
projectKey: Scalars['String']['input'];
|
|
166878
|
+
};
|
|
166748
166879
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
166749
166880
|
cloudId: Scalars['ID']['input'];
|
|
166750
166881
|
projectId: Scalars['ID']['input'];
|
|
@@ -166764,12 +166895,6 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
166764
166895
|
cloudId: Scalars['ID']['input'];
|
|
166765
166896
|
projectKey: Scalars['String']['input'];
|
|
166766
166897
|
};
|
|
166767
|
-
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
166768
|
-
projectAri: Scalars['ID']['input'];
|
|
166769
|
-
};
|
|
166770
|
-
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
166771
|
-
projectAri: Scalars['ID']['input'];
|
|
166772
|
-
};
|
|
166773
166898
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
166774
166899
|
cloudId: Scalars['ID']['input'];
|
|
166775
166900
|
generationId: Scalars['ID']['input'];
|
|
@@ -166910,9 +167035,6 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
166910
167035
|
referenceObjectAri: Scalars['ID']['input'];
|
|
166911
167036
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
166912
167037
|
};
|
|
166913
|
-
export declare type QueryAiops_EchoArgs = {
|
|
166914
|
-
input?: InputMaybe<Scalars['String']['input']>;
|
|
166915
|
-
};
|
|
166916
167038
|
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
166917
167039
|
cloudId: Scalars['ID']['input'];
|
|
166918
167040
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
@@ -166930,9 +167052,6 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
166930
167052
|
entityId: Scalars['ID']['input'];
|
|
166931
167053
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
166932
167054
|
};
|
|
166933
|
-
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
166934
|
-
issueId: Scalars['ID']['input'];
|
|
166935
|
-
};
|
|
166936
167055
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
166937
167056
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166938
167057
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -167727,6 +167846,10 @@ export declare type QueryAvp_GetStarredDashboardsArgs = {
|
|
|
167727
167846
|
principalAri: Scalars['ID']['input'];
|
|
167728
167847
|
workspaceAri: Scalars['ID']['input'];
|
|
167729
167848
|
};
|
|
167849
|
+
export declare type QueryAvp_GetWorkspaceExperienceArgs = {
|
|
167850
|
+
cloudId: Scalars['ID']['input'];
|
|
167851
|
+
workspaceAri: Scalars['ID']['input'];
|
|
167852
|
+
};
|
|
167730
167853
|
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
167731
167854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167732
167855
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168775,6 +168898,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
168775
168898
|
cloudId: Scalars['ID']['input'];
|
|
168776
168899
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
168777
168900
|
};
|
|
168901
|
+
export declare type QueryConfluence_SystemOperationRoleConfigurationsArgs = {
|
|
168902
|
+
cloudId: Scalars['ID']['input'];
|
|
168903
|
+
};
|
|
168778
168904
|
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
168779
168905
|
cloudId: Scalars['ID']['input'];
|
|
168780
168906
|
};
|
|
@@ -168829,6 +168955,7 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
168829
168955
|
jql: Scalars['String']['input'];
|
|
168830
168956
|
};
|
|
168831
168957
|
export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
|
|
168958
|
+
adf?: InputMaybe<Scalars['String']['input']>;
|
|
168832
168959
|
cloudId: Scalars['ID']['input'];
|
|
168833
168960
|
contentId: Scalars['ID']['input'];
|
|
168834
168961
|
};
|
|
@@ -172554,6 +172681,8 @@ export declare type RadarMoney = {
|
|
|
172554
172681
|
__typename?: 'RadarMoney';
|
|
172555
172682
|
amount: Scalars['String']['output'];
|
|
172556
172683
|
currency: Scalars['String']['output'];
|
|
172684
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
172685
|
+
displayValueCompact?: Maybe<Scalars['String']['output']>;
|
|
172557
172686
|
};
|
|
172558
172687
|
export declare type RadarMoneyFieldValue = {
|
|
172559
172688
|
__typename?: 'RadarMoneyFieldValue';
|
|
@@ -174575,6 +174704,10 @@ export declare enum Scope {
|
|
|
174575
174704
|
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
174576
174705
|
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
174577
174706
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
174707
|
+
ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
|
|
174708
|
+
ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
|
|
174709
|
+
ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
|
|
174710
|
+
ReadGuardDetectSubscription = "READ_GUARD_DETECT_SUBSCRIPTION",
|
|
174578
174711
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
174579
174712
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
174580
174713
|
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
@@ -174732,6 +174865,12 @@ export declare enum Scope {
|
|
|
174732
174865
|
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
174733
174866
|
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
174734
174867
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
174868
|
+
WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
|
|
174869
|
+
WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
|
|
174870
|
+
WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
|
|
174871
|
+
WriteGuardDetectRedaction = "WRITE_GUARD_DETECT_REDACTION",
|
|
174872
|
+
WriteGuardDetectRestoration = "WRITE_GUARD_DETECT_RESTORATION",
|
|
174873
|
+
WriteGuardDetectSubscription = "WRITE_GUARD_DETECT_SUBSCRIPTION",
|
|
174735
174874
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
174736
174875
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
174737
174876
|
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
@@ -175192,6 +175331,7 @@ export declare type SearchLayerDefinition = {
|
|
|
175192
175331
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
175193
175332
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
175194
175333
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
175334
|
+
statsigLayerId?: InputMaybe<Scalars['String']['input']>;
|
|
175195
175335
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
175196
175336
|
};
|
|
175197
175337
|
export declare enum SearchLinkedEntitiesType {
|
|
@@ -202513,6 +202653,7 @@ export declare type TownsquareGoalProgressTypeChange = {
|
|
|
202513
202653
|
__typename?: 'TownsquareGoalProgressTypeChange';
|
|
202514
202654
|
newProgressType: TownsquareGoalProgressType;
|
|
202515
202655
|
oldProgressType: TownsquareGoalProgressType;
|
|
202656
|
+
successMeasure?: Maybe<TownsquareGoalType>;
|
|
202516
202657
|
};
|
|
202517
202658
|
export declare type TownsquareGoalRenamedChange = {
|
|
202518
202659
|
__typename?: 'TownsquareGoalRenamedChange';
|
|
@@ -202940,6 +203081,17 @@ export declare type TownsquareGoalsCreateLearningPayload = {
|
|
|
202940
203081
|
learning?: Maybe<TownsquareLearning>;
|
|
202941
203082
|
success: Scalars['Boolean']['output'];
|
|
202942
203083
|
};
|
|
203084
|
+
export declare type TownsquareGoalsCreateMetricValueInput = {
|
|
203085
|
+
metricId: Scalars['ID']['input'];
|
|
203086
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
203087
|
+
value: Scalars['Float']['input'];
|
|
203088
|
+
};
|
|
203089
|
+
export declare type TownsquareGoalsCreateMetricValuePayload = {
|
|
203090
|
+
__typename?: 'TownsquareGoalsCreateMetricValuePayload';
|
|
203091
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203092
|
+
metricValue?: Maybe<TownsquareMetricValue>;
|
|
203093
|
+
success: Scalars['Boolean']['output'];
|
|
203094
|
+
};
|
|
202943
203095
|
export declare type TownsquareGoalsCreatePayload = {
|
|
202944
203096
|
__typename?: 'TownsquareGoalsCreatePayload';
|
|
202945
203097
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -208649,6 +208801,7 @@ export declare type TrelloMemberOwnedWebhook = {
|
|
|
208649
208801
|
id: Scalars['ID']['output'];
|
|
208650
208802
|
modelId: Scalars['ID']['output'];
|
|
208651
208803
|
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
208804
|
+
tokenId?: Maybe<Scalars['ID']['output']>;
|
|
208652
208805
|
};
|
|
208653
208806
|
export declare type TrelloMemberOwnedWebhookConnection = {
|
|
208654
208807
|
__typename?: 'TrelloMemberOwnedWebhookConnection';
|