@forge/cli-shared 9.1.1-next.2 → 9.2.0-next.3-experimental-bf8e292
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 +20 -0
- package/out/graphql/graphql-types.d.ts +1131 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +176 -51
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
|
@@ -454,12 +454,17 @@ export declare enum AiOpsIncidentSuggestedResourceGroupType {
|
|
|
454
454
|
}
|
|
455
455
|
export declare enum AiOpsIncidentSuggestedResourceType {
|
|
456
456
|
Atlas = "ATLAS",
|
|
457
|
+
Confluence = "CONFLUENCE",
|
|
457
458
|
DevopsDeployment = "DEVOPS_DEPLOYMENT",
|
|
458
459
|
DevopsFf = "DEVOPS_FF",
|
|
460
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
459
461
|
GDocs = "G_DOCS",
|
|
460
462
|
Incident = "INCIDENT",
|
|
463
|
+
Jira = "JIRA",
|
|
461
464
|
JiraIssue = "JIRA_ISSUE",
|
|
465
|
+
Jsm = "JSM",
|
|
462
466
|
Kb = "KB",
|
|
467
|
+
MicrosoftSharepoint = "MICROSOFT_SHAREPOINT",
|
|
463
468
|
Pir = "PIR",
|
|
464
469
|
Sharepoint = "SHAREPOINT",
|
|
465
470
|
Slack = "SLACK"
|
|
@@ -2505,6 +2510,8 @@ export type AvpHotTierFilterConfigInput = {
|
|
|
2505
2510
|
};
|
|
2506
2511
|
export declare enum AvpIntegrationId {
|
|
2507
2512
|
AssetsVertical = "ASSETS_VERTICAL",
|
|
2513
|
+
JiraSpaceDashboardsKanban = "JIRA_SPACE_DASHBOARDS_KANBAN",
|
|
2514
|
+
JiraSpaceDashboardsScrum = "JIRA_SPACE_DASHBOARDS_SCRUM",
|
|
2508
2515
|
JiraSummaryPage = "JIRA_SUMMARY_PAGE",
|
|
2509
2516
|
JsmAssets = "JSM_ASSETS",
|
|
2510
2517
|
JsmOperationsGlobal = "JSM_OPERATIONS_GLOBAL",
|
|
@@ -5348,6 +5355,7 @@ export type AdminUnitConnection = {
|
|
|
5348
5355
|
};
|
|
5349
5356
|
export type AdminUnitCreateInput = {
|
|
5350
5357
|
dataResidency?: InputMaybe<AdminDataResidencyInput>;
|
|
5358
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5351
5359
|
name: Scalars['String']['input'];
|
|
5352
5360
|
};
|
|
5353
5361
|
export type AdminUnitCreatePayload = {
|
|
@@ -10770,6 +10778,47 @@ export type AppPermission = {
|
|
|
10770
10778
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
10771
10779
|
supportsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
10772
10780
|
};
|
|
10781
|
+
export type AppPreDeploymentCheckChange = {
|
|
10782
|
+
__typename?: 'AppPreDeploymentCheckChange';
|
|
10783
|
+
added?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10784
|
+
key: Scalars['String']['output'];
|
|
10785
|
+
removed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10786
|
+
};
|
|
10787
|
+
export type AppPreDeploymentCheckError = {
|
|
10788
|
+
__typename?: 'AppPreDeploymentCheckError';
|
|
10789
|
+
column?: Maybe<Scalars['Int']['output']>;
|
|
10790
|
+
key: Scalars['String']['output'];
|
|
10791
|
+
line?: Maybe<Scalars['Int']['output']>;
|
|
10792
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
10793
|
+
};
|
|
10794
|
+
export type AppPreDeploymentCheckInput = {
|
|
10795
|
+
appId: Scalars['ID']['input'];
|
|
10796
|
+
bypassRules?: InputMaybe<Array<AppPreDeploymentCheckRules>>;
|
|
10797
|
+
environmentKey: Scalars['String']['input'];
|
|
10798
|
+
manifestUrl: Scalars['URL']['input'];
|
|
10799
|
+
};
|
|
10800
|
+
export type AppPreDeploymentCheckOutcome = {
|
|
10801
|
+
__typename?: 'AppPreDeploymentCheckOutcome';
|
|
10802
|
+
category: AppPreDeploymentCheckRuleCategory;
|
|
10803
|
+
changes?: Maybe<Array<Maybe<AppPreDeploymentCheckChange>>>;
|
|
10804
|
+
errors?: Maybe<Array<Maybe<AppPreDeploymentCheckError>>>;
|
|
10805
|
+
reason: Scalars['String']['output'];
|
|
10806
|
+
rule: Scalars['String']['output'];
|
|
10807
|
+
value: Scalars['Boolean']['output'];
|
|
10808
|
+
};
|
|
10809
|
+
export type AppPreDeploymentCheckResponse = {
|
|
10810
|
+
__typename?: 'AppPreDeploymentCheckResponse';
|
|
10811
|
+
outcome?: Maybe<Array<Maybe<AppPreDeploymentCheckOutcome>>>;
|
|
10812
|
+
};
|
|
10813
|
+
export declare enum AppPreDeploymentCheckRuleCategory {
|
|
10814
|
+
Approval = "APPROVAL",
|
|
10815
|
+
Error = "ERROR"
|
|
10816
|
+
}
|
|
10817
|
+
export declare enum AppPreDeploymentCheckRules {
|
|
10818
|
+
MajorVersionRule = "MAJOR_VERSION_RULE",
|
|
10819
|
+
ManifestInvalidRule = "MANIFEST_INVALID_RULE",
|
|
10820
|
+
SystemUserChangeRule = "SYSTEM_USER_CHANGE_RULE"
|
|
10821
|
+
}
|
|
10773
10822
|
export type AppPrincipal = {
|
|
10774
10823
|
__typename?: 'AppPrincipal';
|
|
10775
10824
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -11752,15 +11801,6 @@ export type AssetsDmAdapter = {
|
|
|
11752
11801
|
name?: Maybe<Scalars['String']['output']>;
|
|
11753
11802
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
11754
11803
|
};
|
|
11755
|
-
export declare enum AssetsDmAdapterClientVersionStatus {
|
|
11756
|
-
None = "NONE",
|
|
11757
|
-
UpdateAvailable = "UPDATE_AVAILABLE",
|
|
11758
|
-
UpdateRequired = "UPDATE_REQUIRED"
|
|
11759
|
-
}
|
|
11760
|
-
export type AssetsDmAdapterClientVersionStatusResponse = {
|
|
11761
|
-
__typename?: 'AssetsDMAdapterClientVersionStatusResponse';
|
|
11762
|
-
status?: Maybe<AssetsDmAdapterClientVersionStatus>;
|
|
11763
|
-
};
|
|
11764
11804
|
export type AssetsDmAdapters = {
|
|
11765
11805
|
__typename?: 'AssetsDMAdapters';
|
|
11766
11806
|
general?: Maybe<Array<Maybe<AssetsDmAdapter>>>;
|
|
@@ -11794,6 +11834,34 @@ export type AssetsDmAddDefaultAttributeMappingResponse = {
|
|
|
11794
11834
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11795
11835
|
message: Scalars['String']['output'];
|
|
11796
11836
|
};
|
|
11837
|
+
export type AssetsDmAdvisoryNotification = {
|
|
11838
|
+
__typename?: 'AssetsDMAdvisoryNotification';
|
|
11839
|
+
severity: AssetsDmAdvisoryNotificationSeverity;
|
|
11840
|
+
source: AssetsDmAdvisoryNotificationSource;
|
|
11841
|
+
type: AssetsDmAdvisoryNotificationType;
|
|
11842
|
+
};
|
|
11843
|
+
export declare enum AssetsDmAdvisoryNotificationSeverity {
|
|
11844
|
+
Error = "ERROR",
|
|
11845
|
+
Info = "INFO",
|
|
11846
|
+
Warning = "WARNING"
|
|
11847
|
+
}
|
|
11848
|
+
export declare enum AssetsDmAdvisoryNotificationSource {
|
|
11849
|
+
App = "APP",
|
|
11850
|
+
Buoy = "BUOY"
|
|
11851
|
+
}
|
|
11852
|
+
export declare enum AssetsDmAdvisoryNotificationType {
|
|
11853
|
+
AdapterClientUpdateAvailable = "ADAPTER_CLIENT_UPDATE_AVAILABLE",
|
|
11854
|
+
AdapterClientUpdateRequired = "ADAPTER_CLIENT_UPDATE_REQUIRED",
|
|
11855
|
+
ComputedIssues = "COMPUTED_ISSUES",
|
|
11856
|
+
FailedCleanseAndImport = "FAILED_CLEANSE_AND_IMPORT",
|
|
11857
|
+
FailedJobExecutives = "FAILED_JOB_EXECUTIVES",
|
|
11858
|
+
UnmappedObjectsIssues = "UNMAPPED_OBJECTS_ISSUES"
|
|
11859
|
+
}
|
|
11860
|
+
export type AssetsDmAdvisoryNotificationsResponse = {
|
|
11861
|
+
__typename?: 'AssetsDMAdvisoryNotificationsResponse';
|
|
11862
|
+
failedSources?: Maybe<Array<Maybe<AssetsDmAdvisoryNotificationSource>>>;
|
|
11863
|
+
notifications?: Maybe<Array<Maybe<AssetsDmAdvisoryNotification>>>;
|
|
11864
|
+
};
|
|
11797
11865
|
export declare enum AssetsDmAttributeMappingSaveDefaultOption {
|
|
11798
11866
|
AddNewOnly = "AddNewOnly",
|
|
11799
11867
|
Merge = "Merge",
|
|
@@ -15146,6 +15214,11 @@ export type AssetsVerticalHardwareObjectsInput = {
|
|
|
15146
15214
|
workspaceId: Scalars['ID']['input'];
|
|
15147
15215
|
};
|
|
15148
15216
|
export type AssetsVerticalHardwareObjectsResult = AssetsVerticalHardwareObjects | QueryError;
|
|
15217
|
+
export type AssetsVerticalHardwareObjectsTotalCount = {
|
|
15218
|
+
__typename?: 'AssetsVerticalHardwareObjectsTotalCount';
|
|
15219
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15220
|
+
};
|
|
15221
|
+
export type AssetsVerticalHardwareObjectsTotalCountResult = AssetsVerticalHardwareObjectsTotalCount | QueryError;
|
|
15149
15222
|
export type AssetsVerticalInsightCard = {
|
|
15150
15223
|
__typename?: 'AssetsVerticalInsightCard';
|
|
15151
15224
|
category: Scalars['String']['output'];
|
|
@@ -15449,6 +15522,10 @@ export type AssetsVerticalProblemDetail = {
|
|
|
15449
15522
|
title: Scalars['String']['output'];
|
|
15450
15523
|
type?: Maybe<Scalars['String']['output']>;
|
|
15451
15524
|
};
|
|
15525
|
+
export type AssetsVerticalRetryVerticalInstantiationInput = {
|
|
15526
|
+
cloudId: Scalars['ID']['input'];
|
|
15527
|
+
id: Scalars['ID']['input'];
|
|
15528
|
+
};
|
|
15452
15529
|
export type AssetsVerticalRole = {
|
|
15453
15530
|
__typename?: 'AssetsVerticalRole';
|
|
15454
15531
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -15621,6 +15698,7 @@ export type AssetsVerticalUserPrincipal = {
|
|
|
15621
15698
|
export type AssetsVerticalVerticalInstantiation = {
|
|
15622
15699
|
__typename?: 'AssetsVerticalVerticalInstantiation';
|
|
15623
15700
|
auditInfo: AssetsVerticalAuditInfo;
|
|
15701
|
+
canRetry: Scalars['Boolean']['output'];
|
|
15624
15702
|
categories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
15625
15703
|
cloudId: Scalars['ID']['output'];
|
|
15626
15704
|
depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
@@ -16166,6 +16244,10 @@ export declare enum BillingSourceSystem {
|
|
|
16166
16244
|
Ccp = "CCP",
|
|
16167
16245
|
Hams = "HAMS"
|
|
16168
16246
|
}
|
|
16247
|
+
export declare enum BillingStatus {
|
|
16248
|
+
Billable = "BILLABLE",
|
|
16249
|
+
NonBillable = "NON_BILLABLE"
|
|
16250
|
+
}
|
|
16169
16251
|
export declare enum BitbucketPermission {
|
|
16170
16252
|
Admin = "ADMIN"
|
|
16171
16253
|
}
|
|
@@ -20025,8 +20107,8 @@ export type CloudifyAnalysisId = {
|
|
|
20025
20107
|
export type CloudifyAnalysisPart = {
|
|
20026
20108
|
__typename?: 'CloudifyAnalysisPart';
|
|
20027
20109
|
analysisResult: CloudifyAnalysisResult;
|
|
20028
|
-
analysisType: CloudifyAnalysisType;
|
|
20029
20110
|
finishedAt: Scalars['String']['output'];
|
|
20111
|
+
serviceKey: Scalars['String']['output'];
|
|
20030
20112
|
startedAt: Scalars['String']['output'];
|
|
20031
20113
|
};
|
|
20032
20114
|
export declare enum CloudifyAnalysisResult {
|
|
@@ -20092,6 +20174,7 @@ export type CloudifyProjectAri = {
|
|
|
20092
20174
|
};
|
|
20093
20175
|
export type CloudifyRecommendation = {
|
|
20094
20176
|
__typename?: 'CloudifyRecommendation';
|
|
20177
|
+
analysisType: CloudifyAnalysisType;
|
|
20095
20178
|
createdAt: Scalars['String']['output'];
|
|
20096
20179
|
id: CloudifyRecommendationId;
|
|
20097
20180
|
reasoning: Scalars['String']['output'];
|
|
@@ -20110,6 +20193,7 @@ export type CloudifyRecommendationId = {
|
|
|
20110
20193
|
value: Scalars['String']['output'];
|
|
20111
20194
|
};
|
|
20112
20195
|
export type CloudifyRecommendationInput = {
|
|
20196
|
+
analysisType: CloudifyAnalysisType;
|
|
20113
20197
|
reasoning: Scalars['String']['input'];
|
|
20114
20198
|
steps: Array<CloudifyStepInput>;
|
|
20115
20199
|
target: CloudifyTargetInput;
|
|
@@ -37204,6 +37288,7 @@ export type ConfluenceWorkflowApplicationHistoryActor = {
|
|
|
37204
37288
|
__typename?: 'ConfluenceWorkflowApplicationHistoryActor';
|
|
37205
37289
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
37206
37290
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
37291
|
+
user?: Maybe<AtlassianUser>;
|
|
37207
37292
|
};
|
|
37208
37293
|
export type ConfluenceWorkflowApplicationHistoryConnection = {
|
|
37209
37294
|
__typename?: 'ConfluenceWorkflowApplicationHistoryConnection';
|
|
@@ -37673,6 +37758,7 @@ export type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
37673
37758
|
export type ContentAnalyticsPageViewInfo = {
|
|
37674
37759
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
37675
37760
|
accountType?: Maybe<ConfluenceAnalyticsAccountType>;
|
|
37761
|
+
agentType?: Maybe<Scalars['String']['output']>;
|
|
37676
37762
|
confluenceUser?: Maybe<ConfluenceUser>;
|
|
37677
37763
|
confluenceUserDetailsId: Scalars['ID']['output'];
|
|
37678
37764
|
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -37681,6 +37767,8 @@ export type ContentAnalyticsPageViewInfo = {
|
|
|
37681
37767
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
37682
37768
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
37683
37769
|
lastViewedAt: Scalars['String']['output'];
|
|
37770
|
+
relatedUser?: Maybe<AtlassianUser>;
|
|
37771
|
+
relatedUserAccountId?: Maybe<Scalars['ID']['output']>;
|
|
37684
37772
|
user?: Maybe<AtlassianUser>;
|
|
37685
37773
|
userId: Scalars['ID']['output'];
|
|
37686
37774
|
userProfile?: Maybe<AtlassianUser>;
|
|
@@ -39540,6 +39628,16 @@ export type CreateAppInput = {
|
|
|
39540
39628
|
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
39541
39629
|
name: Scalars['String']['input'];
|
|
39542
39630
|
};
|
|
39631
|
+
export type CreateAppManifestUploadUrlInput = {
|
|
39632
|
+
appId: Scalars['ID']['input'];
|
|
39633
|
+
environmentKey: Scalars['String']['input'];
|
|
39634
|
+
};
|
|
39635
|
+
export type CreateAppManifestUploadUrlResponse = Payload & {
|
|
39636
|
+
__typename?: 'CreateAppManifestUploadUrlResponse';
|
|
39637
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39638
|
+
preSignedUrl?: Maybe<Scalars['String']['output']>;
|
|
39639
|
+
success: Scalars['Boolean']['output'];
|
|
39640
|
+
};
|
|
39543
39641
|
export type CreateAppResponse = Payload & {
|
|
39544
39642
|
__typename?: 'CreateAppResponse';
|
|
39545
39643
|
app?: Maybe<App>;
|
|
@@ -43619,6 +43717,17 @@ export type DevAiAutodevNextAssignedWorkstreamTaskStats = {
|
|
|
43619
43717
|
needsReviewOverdue: Scalars['Int']['output'];
|
|
43620
43718
|
needsReviewTotal: Scalars['Int']['output'];
|
|
43621
43719
|
};
|
|
43720
|
+
export type DevAiAutodevNextAssignedWorkstreamUserConnection = {
|
|
43721
|
+
__typename?: 'DevAiAutodevNextAssignedWorkstreamUserConnection';
|
|
43722
|
+
edges?: Maybe<Array<DevAiAutodevNextAssignedWorkstreamUserEdge>>;
|
|
43723
|
+
nodes?: Maybe<Array<Maybe<User>>>;
|
|
43724
|
+
pageInfo: PageInfo;
|
|
43725
|
+
};
|
|
43726
|
+
export type DevAiAutodevNextAssignedWorkstreamUserEdge = {
|
|
43727
|
+
__typename?: 'DevAiAutodevNextAssignedWorkstreamUserEdge';
|
|
43728
|
+
cursor: Scalars['String']['output'];
|
|
43729
|
+
node?: Maybe<User>;
|
|
43730
|
+
};
|
|
43622
43731
|
export type DevAiAutodevNextAssociatedWorkstream = {
|
|
43623
43732
|
__typename?: 'DevAiAutodevNextAssociatedWorkstream';
|
|
43624
43733
|
findWorkMode: Scalars['ID']['output'];
|
|
@@ -44037,6 +44146,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44037
44146
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
44038
44147
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
44039
44148
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
44149
|
+
workItemCommentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44040
44150
|
};
|
|
44041
44151
|
export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
44042
44152
|
assigneeAllowlist?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -44056,6 +44166,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44056
44166
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
44057
44167
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
44058
44168
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
44169
|
+
workItemCommentsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44059
44170
|
};
|
|
44060
44171
|
export declare enum DevAiAutodevNextWorkstreamStatus {
|
|
44061
44172
|
Active = "ACTIVE",
|
|
@@ -47338,6 +47449,7 @@ export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
|
47338
47449
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
47339
47450
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
47340
47451
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
47452
|
+
AllowPersonalApps = "ALLOW_PERSONAL_APPS",
|
|
47341
47453
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
47342
47454
|
}
|
|
47343
47455
|
export type EcosystemInstallationConfigInput = {
|
|
@@ -51111,6 +51223,8 @@ export type ForgeMetricsApiRequestQueryFilters = {
|
|
|
51111
51223
|
export type ForgeMetricsApiRequestQueryInput = {
|
|
51112
51224
|
filters: ForgeMetricsApiRequestQueryFilters;
|
|
51113
51225
|
groupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
|
|
51226
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51227
|
+
sortOrder?: InputMaybe<ForgeMetricsSortOrder>;
|
|
51114
51228
|
};
|
|
51115
51229
|
export declare enum ForgeMetricsApiRequestStatus {
|
|
51116
51230
|
'2Xx' = "_2XX",
|
|
@@ -51326,12 +51440,15 @@ export type ForgeMetricsLabelGroup = {
|
|
|
51326
51440
|
value: Scalars['String']['output'];
|
|
51327
51441
|
};
|
|
51328
51442
|
export declare enum ForgeMetricsLabels {
|
|
51443
|
+
ContainerCpuUsagePercentage = "CONTAINER_CPU_USAGE_PERCENTAGE",
|
|
51444
|
+
ContainerMemoryUsagePercentage = "CONTAINER_MEMORY_USAGE_PERCENTAGE",
|
|
51329
51445
|
ForgeApiRequestCount = "FORGE_API_REQUEST_COUNT",
|
|
51330
51446
|
ForgeApiRequestLatency = "FORGE_API_REQUEST_LATENCY",
|
|
51331
51447
|
ForgeBackendCustomMetricsCount = "FORGE_BACKEND_CUSTOM_METRICS_COUNT",
|
|
51332
51448
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
51333
51449
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
51334
|
-
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY"
|
|
51450
|
+
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY",
|
|
51451
|
+
ServiceInstanceCount = "SERVICE_INSTANCE_COUNT"
|
|
51335
51452
|
}
|
|
51336
51453
|
export type ForgeMetricsLatenciesData = ForgeMetricsData & {
|
|
51337
51454
|
__typename?: 'ForgeMetricsLatenciesData';
|
|
@@ -51401,8 +51518,10 @@ export type ForgeMetricsQuery = {
|
|
|
51401
51518
|
__typename?: 'ForgeMetricsQuery';
|
|
51402
51519
|
apiRequestCount: ForgeMetricsApiRequestCountResult;
|
|
51403
51520
|
apiRequestCountDrilldown: ForgeMetricsApiRequestCountDrilldownResult;
|
|
51521
|
+
apiRequestCountValue: ForgeMetricsApiRequestCountDrilldownResult;
|
|
51404
51522
|
apiRequestLatency: ForgeMetricsApiRequestLatencyResult;
|
|
51405
51523
|
apiRequestLatencyDrilldown: ForgeMetricsApiRequestLatencyDrilldownResult;
|
|
51524
|
+
apiRequestLatencyRanked: ForgeMetricsApiRequestLatencyDrilldownResult;
|
|
51406
51525
|
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
51407
51526
|
appId: Scalars['ID']['output'];
|
|
51408
51527
|
appMetrics: ForgeMetricsOtlpResult;
|
|
@@ -51432,12 +51551,19 @@ export type ForgeMetricsQueryApiRequestCountArgs = {
|
|
|
51432
51551
|
export type ForgeMetricsQueryApiRequestCountDrilldownArgs = {
|
|
51433
51552
|
query: ForgeMetricsApiRequestQueryInput;
|
|
51434
51553
|
};
|
|
51554
|
+
export type ForgeMetricsQueryApiRequestCountValueArgs = {
|
|
51555
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
51556
|
+
};
|
|
51435
51557
|
export type ForgeMetricsQueryApiRequestLatencyArgs = {
|
|
51436
51558
|
query: ForgeMetricsApiRequestQueryInput;
|
|
51437
51559
|
};
|
|
51438
51560
|
export type ForgeMetricsQueryApiRequestLatencyDrilldownArgs = {
|
|
51439
51561
|
query: ForgeMetricsApiRequestQueryInput;
|
|
51440
51562
|
};
|
|
51563
|
+
export type ForgeMetricsQueryApiRequestLatencyRankedArgs = {
|
|
51564
|
+
percentile: Scalars['Float']['input'];
|
|
51565
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
51566
|
+
};
|
|
51441
51567
|
export type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
51442
51568
|
query: ForgeMetricsApiRequestQueryInput;
|
|
51443
51569
|
};
|
|
@@ -51509,6 +51635,8 @@ export type ForgeMetricsQueryFilters = {
|
|
|
51509
51635
|
export type ForgeMetricsQueryInput = {
|
|
51510
51636
|
filters: ForgeMetricsQueryFilters;
|
|
51511
51637
|
groupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
51638
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51639
|
+
sortOrder?: InputMaybe<ForgeMetricsSortOrder>;
|
|
51512
51640
|
};
|
|
51513
51641
|
export type ForgeMetricsRequestUrlsData = {
|
|
51514
51642
|
__typename?: 'ForgeMetricsRequestUrlsData';
|
|
@@ -51599,6 +51727,10 @@ export type ForgeMetricsSitesData = {
|
|
|
51599
51727
|
data: Array<ForgeMetricsSitesByCategory>;
|
|
51600
51728
|
};
|
|
51601
51729
|
export type ForgeMetricsSitesResult = ForgeMetricsSitesData | QueryError;
|
|
51730
|
+
export declare enum ForgeMetricsSortOrder {
|
|
51731
|
+
Asc = "ASC",
|
|
51732
|
+
Desc = "DESC"
|
|
51733
|
+
}
|
|
51602
51734
|
export type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
51603
51735
|
__typename?: 'ForgeMetricsSuccessRateData';
|
|
51604
51736
|
interval: ForgeMetricsIntervalRange;
|
|
@@ -116967,6 +117099,7 @@ export declare enum HelpCenterSortOrder {
|
|
|
116967
117099
|
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
116968
117100
|
}
|
|
116969
117101
|
export declare enum HelpCenterSpaceDensity {
|
|
117102
|
+
Breezy = "BREEZY",
|
|
116970
117103
|
Comfortable = "COMFORTABLE",
|
|
116971
117104
|
Compact = "COMPACT",
|
|
116972
117105
|
Default = "DEFAULT"
|
|
@@ -119925,6 +120058,9 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
119925
120058
|
LocalAgentSession = "LOCAL_AGENT_SESSION",
|
|
119926
120059
|
Unknown = "UNKNOWN"
|
|
119927
120060
|
}
|
|
120061
|
+
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120062
|
+
Planning = "PLANNING"
|
|
120063
|
+
}
|
|
119928
120064
|
export declare enum JiraAgentSessionState {
|
|
119929
120065
|
ArtefactReady = "ARTEFACT_READY",
|
|
119930
120066
|
AuthRequired = "AUTH_REQUIRED",
|
|
@@ -134922,6 +135058,7 @@ export type JiraNavigationItemTypeEdge = {
|
|
|
134922
135058
|
node?: Maybe<JiraNavigationItemType>;
|
|
134923
135059
|
};
|
|
134924
135060
|
export declare enum JiraNavigationItemTypeKey {
|
|
135061
|
+
AgentContext = "AGENT_CONTEXT",
|
|
134925
135062
|
AiPlanning = "AI_PLANNING",
|
|
134926
135063
|
App = "APP",
|
|
134927
135064
|
Approvals = "APPROVALS",
|
|
@@ -144185,6 +144322,7 @@ export type JiraStartAiAgentSessionInput = {
|
|
|
144185
144322
|
clientMutationId: Scalars['String']['input'];
|
|
144186
144323
|
cloudId: Scalars['ID']['input'];
|
|
144187
144324
|
issueId: Scalars['String']['input'];
|
|
144325
|
+
preExecutionStep?: InputMaybe<JiraAgentSessionPreExecutionStep>;
|
|
144188
144326
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
144189
144327
|
};
|
|
144190
144328
|
export type JiraStartAiAgentSessionPayload = Payload & {
|
|
@@ -144938,8 +145076,12 @@ export declare enum JiraTimeUnit {
|
|
|
144938
145076
|
Week = "WEEK"
|
|
144939
145077
|
}
|
|
144940
145078
|
export type JiraTimelineCustomExportInput = {
|
|
145079
|
+
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
144941
145080
|
childIssuePlanningMode?: InputMaybe<JiraIssueSearchTimelineChildIssuePlanningMode>;
|
|
145081
|
+
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144942
145082
|
projectOrBoardId: JiraTimelineExportProjectOrBoardIdInput;
|
|
145083
|
+
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145084
|
+
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144943
145085
|
};
|
|
144944
145086
|
export type JiraTimelineExportProjectOrBoardIdInput = {
|
|
144945
145087
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153331,6 +153473,19 @@ export type LoomCommentEdge = {
|
|
|
153331
153473
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
153332
153474
|
node?: Maybe<LoomComment>;
|
|
153333
153475
|
};
|
|
153476
|
+
export type LoomCompleteVideoFileUploadInput = {
|
|
153477
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
153478
|
+
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
153479
|
+
keyPath: Scalars['String']['input'];
|
|
153480
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
153481
|
+
videoPropertiesJson?: InputMaybe<Scalars['String']['input']>;
|
|
153482
|
+
workspaceId: Scalars['ID']['input'];
|
|
153483
|
+
};
|
|
153484
|
+
export type LoomCompleteVideoFileUploadPayload = {
|
|
153485
|
+
__typename?: 'LoomCompleteVideoFileUploadPayload';
|
|
153486
|
+
success: Scalars['Boolean']['output'];
|
|
153487
|
+
video?: Maybe<LoomVideo>;
|
|
153488
|
+
};
|
|
153334
153489
|
export type LoomConnectedCalendar = {
|
|
153335
153490
|
__typename?: 'LoomConnectedCalendar';
|
|
153336
153491
|
guid: Scalars['ID']['output'];
|
|
@@ -153344,6 +153499,53 @@ export type LoomConnectedCalendarMeetingsArgs = {
|
|
|
153344
153499
|
rangeEnd?: InputMaybe<Scalars['String']['input']>;
|
|
153345
153500
|
rangeStart?: InputMaybe<Scalars['String']['input']>;
|
|
153346
153501
|
};
|
|
153502
|
+
export type LoomCreateFileUploadCredentialsPayload = {
|
|
153503
|
+
__typename?: 'LoomCreateFileUploadCredentialsPayload';
|
|
153504
|
+
credentials?: Maybe<LoomUploadInfo>;
|
|
153505
|
+
success: Scalars['Boolean']['output'];
|
|
153506
|
+
};
|
|
153507
|
+
export type LoomCreateFolderError = {
|
|
153508
|
+
__typename?: 'LoomCreateFolderError';
|
|
153509
|
+
errorType: Scalars['String']['output'];
|
|
153510
|
+
message: Scalars['String']['output'];
|
|
153511
|
+
statusCode: Scalars['Int']['output'];
|
|
153512
|
+
};
|
|
153513
|
+
export type LoomCreateFolderInput = {
|
|
153514
|
+
id: Scalars['ID']['input'];
|
|
153515
|
+
name: Scalars['String']['input'];
|
|
153516
|
+
parentFolderId?: InputMaybe<Scalars['ID']['input']>;
|
|
153517
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
153518
|
+
visibility?: InputMaybe<LoomFolderVisibilityType>;
|
|
153519
|
+
};
|
|
153520
|
+
export type LoomCreateFolderPayload = {
|
|
153521
|
+
__typename?: 'LoomCreateFolderPayload';
|
|
153522
|
+
errors: Array<LoomCreateFolderError>;
|
|
153523
|
+
folder?: Maybe<LoomFolder>;
|
|
153524
|
+
success: Scalars['Boolean']['output'];
|
|
153525
|
+
};
|
|
153526
|
+
export type LoomCreateVideoCommentInput = {
|
|
153527
|
+
content: Scalars['String']['input'];
|
|
153528
|
+
id: Scalars['ID']['input'];
|
|
153529
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
153530
|
+
};
|
|
153531
|
+
export type LoomCreateVideoCommentPayload = {
|
|
153532
|
+
__typename?: 'LoomCreateVideoCommentPayload';
|
|
153533
|
+
comment?: Maybe<LoomComment>;
|
|
153534
|
+
success: Scalars['Boolean']['output'];
|
|
153535
|
+
};
|
|
153536
|
+
export type LoomCreateVideoReactionInput = {
|
|
153537
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
153538
|
+
id: Scalars['ID']['input'];
|
|
153539
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
153540
|
+
reactionName: Scalars['String']['input'];
|
|
153541
|
+
reactionType?: InputMaybe<LoomVideoReactionType>;
|
|
153542
|
+
timestamp?: InputMaybe<Scalars['Int']['input']>;
|
|
153543
|
+
};
|
|
153544
|
+
export type LoomCreateVideoReactionPayload = {
|
|
153545
|
+
__typename?: 'LoomCreateVideoReactionPayload';
|
|
153546
|
+
reaction?: Maybe<LoomVideoReaction>;
|
|
153547
|
+
success: Scalars['Boolean']['output'];
|
|
153548
|
+
};
|
|
153347
153549
|
export type LoomDeleteVideo = {
|
|
153348
153550
|
__typename?: 'LoomDeleteVideo';
|
|
153349
153551
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -153354,12 +153556,24 @@ export type LoomDeleteVideoFailure = {
|
|
|
153354
153556
|
ari: Scalars['ID']['output'];
|
|
153355
153557
|
error: Scalars['String']['output'];
|
|
153356
153558
|
};
|
|
153559
|
+
export type LoomEnqueueVideoDownloadInput = {
|
|
153560
|
+
id: Scalars['ID']['input'];
|
|
153561
|
+
};
|
|
153562
|
+
export type LoomEnqueueVideoDownloadPayload = {
|
|
153563
|
+
__typename?: 'LoomEnqueueVideoDownloadPayload';
|
|
153564
|
+
status: LoomVideoDownloadStatus;
|
|
153565
|
+
success: Scalars['Boolean']['output'];
|
|
153566
|
+
};
|
|
153357
153567
|
export type LoomFolder = {
|
|
153358
153568
|
__typename?: 'LoomFolder';
|
|
153359
153569
|
id: Scalars['ID']['output'];
|
|
153360
153570
|
name: Scalars['String']['output'];
|
|
153361
153571
|
parentSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
153362
153572
|
};
|
|
153573
|
+
export declare enum LoomFolderVisibilityType {
|
|
153574
|
+
Owner = "owner",
|
|
153575
|
+
Workspace = "workspace"
|
|
153576
|
+
}
|
|
153363
153577
|
export type LoomJoinWorkspace = {
|
|
153364
153578
|
__typename?: 'LoomJoinWorkspace';
|
|
153365
153579
|
status: Scalars['String']['output'];
|
|
@@ -153388,6 +153602,12 @@ export type LoomMeeting = Node & {
|
|
|
153388
153602
|
title: Scalars['String']['output'];
|
|
153389
153603
|
video?: Maybe<LoomVideo>;
|
|
153390
153604
|
};
|
|
153605
|
+
export type LoomMeetingActionItem = {
|
|
153606
|
+
__typename?: 'LoomMeetingActionItem';
|
|
153607
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
153608
|
+
id: Scalars['ID']['output'];
|
|
153609
|
+
timestampSeconds?: Maybe<Scalars['Int']['output']>;
|
|
153610
|
+
};
|
|
153391
153611
|
export type LoomMeetingConnection = {
|
|
153392
153612
|
__typename?: 'LoomMeetingConnection';
|
|
153393
153613
|
edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
|
|
@@ -153425,6 +153645,30 @@ export type LoomMeetings = {
|
|
|
153425
153645
|
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
153426
153646
|
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
153427
153647
|
};
|
|
153648
|
+
export type LoomMoveVideoToFolderInput = {
|
|
153649
|
+
folderId: Scalars['ID']['input'];
|
|
153650
|
+
id: Scalars['ID']['input'];
|
|
153651
|
+
};
|
|
153652
|
+
export type LoomMoveVideoToFolderPayload = {
|
|
153653
|
+
__typename?: 'LoomMoveVideoToFolderPayload';
|
|
153654
|
+
success: Scalars['Boolean']['output'];
|
|
153655
|
+
};
|
|
153656
|
+
export type LoomObjectStoreAuthToken = {
|
|
153657
|
+
__typename?: 'LoomObjectStoreAuthToken';
|
|
153658
|
+
expiration?: Maybe<Scalars['String']['output']>;
|
|
153659
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
153660
|
+
};
|
|
153661
|
+
export type LoomObjectStoreUploadInfo = {
|
|
153662
|
+
__typename?: 'LoomObjectStoreUploadInfo';
|
|
153663
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
153664
|
+
bucket?: Maybe<Scalars['String']['output']>;
|
|
153665
|
+
credentialType?: Maybe<Scalars['String']['output']>;
|
|
153666
|
+
hostname?: Maybe<Scalars['String']['output']>;
|
|
153667
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
153668
|
+
token?: Maybe<LoomObjectStoreAuthToken>;
|
|
153669
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
153670
|
+
workspaceType?: Maybe<Scalars['String']['output']>;
|
|
153671
|
+
};
|
|
153428
153672
|
export type LoomPageInfo = {
|
|
153429
153673
|
__typename?: 'LoomPageInfo';
|
|
153430
153674
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -153468,11 +153712,49 @@ export type LoomPlaylistVideo = {
|
|
|
153468
153712
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
153469
153713
|
videoAri: Scalars['ID']['output'];
|
|
153470
153714
|
};
|
|
153715
|
+
export type LoomRecoverVideoError = {
|
|
153716
|
+
__typename?: 'LoomRecoverVideoError';
|
|
153717
|
+
errorType: Scalars['String']['output'];
|
|
153718
|
+
message: Scalars['String']['output'];
|
|
153719
|
+
statusCode: Scalars['Int']['output'];
|
|
153720
|
+
};
|
|
153721
|
+
export type LoomRecoverVideoInput = {
|
|
153722
|
+
force: Scalars['Boolean']['input'];
|
|
153723
|
+
id: Scalars['ID']['input'];
|
|
153724
|
+
};
|
|
153725
|
+
export type LoomRecoverVideoPayload = {
|
|
153726
|
+
__typename?: 'LoomRecoverVideoPayload';
|
|
153727
|
+
didRecoverVideo: Scalars['Boolean']['output'];
|
|
153728
|
+
errors: Array<LoomRecoverVideoError>;
|
|
153729
|
+
success: Scalars['Boolean']['output'];
|
|
153730
|
+
video?: Maybe<LoomVideo>;
|
|
153731
|
+
};
|
|
153732
|
+
export type LoomS3UploadInfo = {
|
|
153733
|
+
__typename?: 'LoomS3UploadInfo';
|
|
153734
|
+
accessKeyId?: Maybe<Scalars['String']['output']>;
|
|
153735
|
+
bucket?: Maybe<Scalars['String']['output']>;
|
|
153736
|
+
credentialType?: Maybe<Scalars['String']['output']>;
|
|
153737
|
+
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
153738
|
+
endpoint?: Maybe<Scalars['String']['output']>;
|
|
153739
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
153740
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
153741
|
+
secretAccessKey?: Maybe<Scalars['String']['output']>;
|
|
153742
|
+
sessionToken?: Maybe<Scalars['String']['output']>;
|
|
153743
|
+
};
|
|
153471
153744
|
export type LoomSettings = {
|
|
153472
153745
|
__typename?: 'LoomSettings';
|
|
153473
153746
|
meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
153474
153747
|
meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
153475
153748
|
};
|
|
153749
|
+
export type LoomShareVideoInput = {
|
|
153750
|
+
id: Scalars['ID']['input'];
|
|
153751
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
153752
|
+
userAris: Array<Scalars['ID']['input']>;
|
|
153753
|
+
};
|
|
153754
|
+
export type LoomShareVideoPayload = {
|
|
153755
|
+
__typename?: 'LoomShareVideoPayload';
|
|
153756
|
+
success: Scalars['Boolean']['output'];
|
|
153757
|
+
};
|
|
153476
153758
|
export declare enum LoomSortDirection {
|
|
153477
153759
|
Asc = "ASC",
|
|
153478
153760
|
Desc = "DESC"
|
|
@@ -153610,6 +153892,27 @@ export type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
|
153610
153892
|
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
153611
153893
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
153612
153894
|
};
|
|
153895
|
+
export type LoomUpdateVideoPermissionsInput = {
|
|
153896
|
+
id: Scalars['ID']['input'];
|
|
153897
|
+
visibility: LoomVideoVisibility;
|
|
153898
|
+
};
|
|
153899
|
+
export type LoomUpdateVideoPermissionsPayload = {
|
|
153900
|
+
__typename?: 'LoomUpdateVideoPermissionsPayload';
|
|
153901
|
+
changed: Scalars['Boolean']['output'];
|
|
153902
|
+
success: Scalars['Boolean']['output'];
|
|
153903
|
+
video?: Maybe<LoomVideo>;
|
|
153904
|
+
};
|
|
153905
|
+
export type LoomUpdateVideoTitleInput = {
|
|
153906
|
+
id: Scalars['ID']['input'];
|
|
153907
|
+
title: Scalars['String']['input'];
|
|
153908
|
+
};
|
|
153909
|
+
export type LoomUpdateVideoTitlePayload = {
|
|
153910
|
+
__typename?: 'LoomUpdateVideoTitlePayload';
|
|
153911
|
+
changed: Scalars['Boolean']['output'];
|
|
153912
|
+
success: Scalars['Boolean']['output'];
|
|
153913
|
+
video?: Maybe<LoomVideo>;
|
|
153914
|
+
};
|
|
153915
|
+
export type LoomUploadInfo = LoomObjectStoreUploadInfo | LoomS3UploadInfo;
|
|
153613
153916
|
export declare enum LoomUserStatus {
|
|
153614
153917
|
Linked = "LINKED",
|
|
153615
153918
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -153657,11 +153960,29 @@ export type LoomVideoDefaultThumbnailsSources = {
|
|
|
153657
153960
|
default?: Maybe<Scalars['String']['output']>;
|
|
153658
153961
|
static?: Maybe<Scalars['String']['output']>;
|
|
153659
153962
|
};
|
|
153963
|
+
export declare enum LoomVideoDownloadStatus {
|
|
153964
|
+
NotReady = "NOT_READY",
|
|
153965
|
+
Ready = "READY"
|
|
153966
|
+
}
|
|
153967
|
+
export type LoomVideoDownloadUrl = {
|
|
153968
|
+
__typename?: 'LoomVideoDownloadUrl';
|
|
153969
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
153970
|
+
status: LoomVideoDownloadStatus;
|
|
153971
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
153972
|
+
};
|
|
153660
153973
|
export type LoomVideoDurations = {
|
|
153661
153974
|
__typename?: 'LoomVideoDurations';
|
|
153662
153975
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
153663
153976
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
153664
153977
|
};
|
|
153978
|
+
export type LoomVideoReaction = {
|
|
153979
|
+
__typename?: 'LoomVideoReaction';
|
|
153980
|
+
id: Scalars['ID']['output'];
|
|
153981
|
+
};
|
|
153982
|
+
export declare enum LoomVideoReactionType {
|
|
153983
|
+
Extended = "EXTENDED",
|
|
153984
|
+
Loom = "LOOM"
|
|
153985
|
+
}
|
|
153665
153986
|
export type LoomVideoViewCounts = {
|
|
153666
153987
|
__typename?: 'LoomVideoViewCounts';
|
|
153667
153988
|
distinct?: Maybe<Scalars['Int']['output']>;
|
|
@@ -157125,6 +157446,7 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
157125
157446
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
157126
157447
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
157127
157448
|
Hero = "HERO",
|
|
157449
|
+
HeroRecommendationsFallback = "HERO_RECOMMENDATIONS_FALLBACK",
|
|
157128
157450
|
NewestAiApps = "NEWEST_AI_APPS",
|
|
157129
157451
|
PartnerCredentials = "PARTNER_CREDENTIALS",
|
|
157130
157452
|
PartnerHero = "PARTNER_HERO",
|
|
@@ -158441,6 +158763,343 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
158441
158763
|
errors?: Maybe<Array<MutationError>>;
|
|
158442
158764
|
success: Scalars['Boolean']['output'];
|
|
158443
158765
|
};
|
|
158766
|
+
export type MercuryAsk = Node & {
|
|
158767
|
+
__typename?: 'MercuryAsk';
|
|
158768
|
+
activities?: Maybe<MercuryAskActivityConnection>;
|
|
158769
|
+
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
158770
|
+
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158771
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158772
|
+
createdBy?: Maybe<User>;
|
|
158773
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
158774
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
158775
|
+
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158776
|
+
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158777
|
+
id: Scalars['ID']['output'];
|
|
158778
|
+
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158779
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
158780
|
+
justification?: Maybe<Scalars['String']['output']>;
|
|
158781
|
+
links?: Maybe<MercuryAskLinkConnection>;
|
|
158782
|
+
name: Scalars['String']['output'];
|
|
158783
|
+
owner?: Maybe<User>;
|
|
158784
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
158785
|
+
priority: MercuryAskPriority;
|
|
158786
|
+
proposedBy?: Maybe<User>;
|
|
158787
|
+
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
158788
|
+
receivingTeam?: Maybe<TeamV2>;
|
|
158789
|
+
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
158790
|
+
status: MercuryAskStatus;
|
|
158791
|
+
submitter?: Maybe<User>;
|
|
158792
|
+
submitterId: Scalars['String']['output'];
|
|
158793
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
158794
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
158795
|
+
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158796
|
+
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158797
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158798
|
+
updatedBy?: Maybe<User>;
|
|
158799
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
158800
|
+
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158801
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
158802
|
+
};
|
|
158803
|
+
export type MercuryAskActivitiesArgs = {
|
|
158804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158805
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158806
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158807
|
+
};
|
|
158808
|
+
export type MercuryAskCommentsArgs = {
|
|
158809
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158810
|
+
cloudId: Scalars['ID']['input'];
|
|
158811
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158812
|
+
};
|
|
158813
|
+
export type MercuryAskConnectedWorkArgs = {
|
|
158814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158815
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158816
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158817
|
+
};
|
|
158818
|
+
export type MercuryAskFocusAreasArgs = {
|
|
158819
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158821
|
+
};
|
|
158822
|
+
export type MercuryAskGoalsArgs = {
|
|
158823
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158824
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158825
|
+
};
|
|
158826
|
+
export type MercuryAskLinksArgs = {
|
|
158827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158828
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158829
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158830
|
+
};
|
|
158831
|
+
export type MercuryAskUpdatesArgs = {
|
|
158832
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158833
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158834
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
158835
|
+
};
|
|
158836
|
+
export type MercuryAskActivity = {
|
|
158837
|
+
__typename?: 'MercuryAskActivity';
|
|
158838
|
+
askActivityType: MercuryAskActivityType;
|
|
158839
|
+
askId: Scalars['String']['output'];
|
|
158840
|
+
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158841
|
+
askUpdatedByUser?: Maybe<User>;
|
|
158842
|
+
askUpdatedByUserId: Scalars['String']['output'];
|
|
158843
|
+
id: Scalars['ID']['output'];
|
|
158844
|
+
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158845
|
+
};
|
|
158846
|
+
export declare enum MercuryAskActivityAttribute {
|
|
158847
|
+
ConnectedWork = "CONNECTED_WORK",
|
|
158848
|
+
Description = "DESCRIPTION",
|
|
158849
|
+
ImpactedWork = "IMPACTED_WORK",
|
|
158850
|
+
Justification = "JUSTIFICATION",
|
|
158851
|
+
Link = "LINK",
|
|
158852
|
+
Name = "NAME",
|
|
158853
|
+
Owner = "OWNER",
|
|
158854
|
+
Priority = "PRIORITY",
|
|
158855
|
+
ProposedDate = "PROPOSED_DATE",
|
|
158856
|
+
ReceivingTeam = "RECEIVING_TEAM",
|
|
158857
|
+
Status = "STATUS",
|
|
158858
|
+
Submitter = "SUBMITTER",
|
|
158859
|
+
SubmittingTeam = "SUBMITTING_TEAM",
|
|
158860
|
+
TargetDate = "TARGET_DATE"
|
|
158861
|
+
}
|
|
158862
|
+
export type MercuryAskActivityConnection = {
|
|
158863
|
+
__typename?: 'MercuryAskActivityConnection';
|
|
158864
|
+
edges?: Maybe<Array<Maybe<MercuryAskActivityEdge>>>;
|
|
158865
|
+
pageInfo: PageInfo;
|
|
158866
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
158867
|
+
};
|
|
158868
|
+
export type MercuryAskActivityEdge = {
|
|
158869
|
+
__typename?: 'MercuryAskActivityEdge';
|
|
158870
|
+
cursor: Scalars['String']['output'];
|
|
158871
|
+
node?: Maybe<MercuryAskActivityResult>;
|
|
158872
|
+
};
|
|
158873
|
+
export type MercuryAskActivityLink = {
|
|
158874
|
+
__typename?: 'MercuryAskActivityLink';
|
|
158875
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
158876
|
+
linkUrl?: Maybe<Scalars['String']['output']>;
|
|
158877
|
+
};
|
|
158878
|
+
export type MercuryAskActivityProposedDate = {
|
|
158879
|
+
__typename?: 'MercuryAskActivityProposedDate';
|
|
158880
|
+
proposedDate?: Maybe<Scalars['String']['output']>;
|
|
158881
|
+
proposedDateType?: Maybe<MercuryAskTargetDateType>;
|
|
158882
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
158883
|
+
targetDateType?: Maybe<MercuryAskTargetDateType>;
|
|
158884
|
+
};
|
|
158885
|
+
export type MercuryAskActivityResult = MercuryAskActivity | QueryError;
|
|
158886
|
+
export declare enum MercuryAskActivityType {
|
|
158887
|
+
Created = "CREATED",
|
|
158888
|
+
Updated = "UPDATED"
|
|
158889
|
+
}
|
|
158890
|
+
export type MercuryAskActivityUpdatedConnectedWork = MercuryAskActivityUpdatedValue & {
|
|
158891
|
+
__typename?: 'MercuryAskActivityUpdatedConnectedWork';
|
|
158892
|
+
attribute: MercuryAskActivityAttribute;
|
|
158893
|
+
newConnectedWork?: Maybe<Array<Maybe<MercuryAskConnectedWork>>>;
|
|
158894
|
+
newValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
158895
|
+
oldConnectedWork?: Maybe<Array<Maybe<MercuryAskConnectedWork>>>;
|
|
158896
|
+
oldValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
158897
|
+
};
|
|
158898
|
+
export type MercuryAskActivityUpdatedDocument = MercuryAskActivityUpdatedValue & {
|
|
158899
|
+
__typename?: 'MercuryAskActivityUpdatedDocument';
|
|
158900
|
+
attribute: MercuryAskActivityAttribute;
|
|
158901
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158902
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158903
|
+
};
|
|
158904
|
+
export type MercuryAskActivityUpdatedImpactedWork = MercuryAskActivityUpdatedValue & {
|
|
158905
|
+
__typename?: 'MercuryAskActivityUpdatedImpactedWork';
|
|
158906
|
+
attribute: MercuryAskActivityAttribute;
|
|
158907
|
+
newImpactedWork?: Maybe<MercuryImpactedWork>;
|
|
158908
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158909
|
+
oldImpactedWork?: Maybe<MercuryImpactedWork>;
|
|
158910
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158911
|
+
};
|
|
158912
|
+
export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
158913
|
+
__typename?: 'MercuryAskActivityUpdatedLink';
|
|
158914
|
+
attribute: MercuryAskActivityAttribute;
|
|
158915
|
+
newValue?: Maybe<MercuryAskActivityLink>;
|
|
158916
|
+
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
158917
|
+
};
|
|
158918
|
+
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
158919
|
+
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
158920
|
+
attribute: MercuryAskActivityAttribute;
|
|
158921
|
+
newValue?: Maybe<MercuryAskPriority>;
|
|
158922
|
+
oldValue?: Maybe<MercuryAskPriority>;
|
|
158923
|
+
};
|
|
158924
|
+
export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedValue & {
|
|
158925
|
+
__typename?: 'MercuryAskActivityUpdatedProposedDate';
|
|
158926
|
+
attribute: MercuryAskActivityAttribute;
|
|
158927
|
+
newValue?: Maybe<MercuryAskActivityProposedDate>;
|
|
158928
|
+
oldValue?: Maybe<MercuryAskActivityProposedDate>;
|
|
158929
|
+
};
|
|
158930
|
+
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
158931
|
+
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
158932
|
+
attribute: MercuryAskActivityAttribute;
|
|
158933
|
+
newValue?: Maybe<MercuryAskStatus>;
|
|
158934
|
+
oldValue?: Maybe<MercuryAskStatus>;
|
|
158935
|
+
};
|
|
158936
|
+
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
158937
|
+
__typename?: 'MercuryAskActivityUpdatedString';
|
|
158938
|
+
attribute: MercuryAskActivityAttribute;
|
|
158939
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158940
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158941
|
+
};
|
|
158942
|
+
export type MercuryAskActivityUpdatedTargetDate = MercuryAskActivityUpdatedValue & {
|
|
158943
|
+
__typename?: 'MercuryAskActivityUpdatedTargetDate';
|
|
158944
|
+
attribute: MercuryAskActivityAttribute;
|
|
158945
|
+
newValue?: Maybe<MercuryAskTargetDate>;
|
|
158946
|
+
oldValue?: Maybe<MercuryAskTargetDate>;
|
|
158947
|
+
};
|
|
158948
|
+
export type MercuryAskActivityUpdatedTeam = MercuryAskActivityUpdatedValue & {
|
|
158949
|
+
__typename?: 'MercuryAskActivityUpdatedTeam';
|
|
158950
|
+
attribute: MercuryAskActivityAttribute;
|
|
158951
|
+
newTeam?: Maybe<TeamV2>;
|
|
158952
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158953
|
+
oldTeam?: Maybe<TeamV2>;
|
|
158954
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158955
|
+
};
|
|
158956
|
+
export type MercuryAskActivityUpdatedUser = MercuryAskActivityUpdatedValue & {
|
|
158957
|
+
__typename?: 'MercuryAskActivityUpdatedUser';
|
|
158958
|
+
attribute: MercuryAskActivityAttribute;
|
|
158959
|
+
newUser?: Maybe<User>;
|
|
158960
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
158961
|
+
oldUser?: Maybe<User>;
|
|
158962
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
158963
|
+
};
|
|
158964
|
+
export type MercuryAskActivityUpdatedValue = {
|
|
158965
|
+
attribute: MercuryAskActivityAttribute;
|
|
158966
|
+
};
|
|
158967
|
+
export type MercuryAskConnectedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
158968
|
+
export type MercuryAskConnectedWorkConnection = {
|
|
158969
|
+
__typename?: 'MercuryAskConnectedWorkConnection';
|
|
158970
|
+
edges?: Maybe<Array<Maybe<MercuryAskConnectedWorkEdge>>>;
|
|
158971
|
+
pageInfo: PageInfo;
|
|
158972
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
158973
|
+
};
|
|
158974
|
+
export type MercuryAskConnectedWorkEdge = {
|
|
158975
|
+
__typename?: 'MercuryAskConnectedWorkEdge';
|
|
158976
|
+
cursor: Scalars['String']['output'];
|
|
158977
|
+
node?: Maybe<MercuryAskConnectedWork>;
|
|
158978
|
+
};
|
|
158979
|
+
export type MercuryAskConnectedWorkInput = {
|
|
158980
|
+
connectedWorkIds: Array<Scalars['String']['input']>;
|
|
158981
|
+
id: Scalars['ID']['input'];
|
|
158982
|
+
};
|
|
158983
|
+
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
158984
|
+
__typename?: 'MercuryAskConnectedWorkPayload';
|
|
158985
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158986
|
+
ids: Array<Scalars['ID']['output']>;
|
|
158987
|
+
success: Scalars['Boolean']['output'];
|
|
158988
|
+
};
|
|
158989
|
+
export type MercuryAskConnection = {
|
|
158990
|
+
__typename?: 'MercuryAskConnection';
|
|
158991
|
+
edges?: Maybe<Array<Maybe<MercuryAskEdge>>>;
|
|
158992
|
+
pageInfo: PageInfo;
|
|
158993
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
158994
|
+
};
|
|
158995
|
+
export type MercuryAskEdge = {
|
|
158996
|
+
__typename?: 'MercuryAskEdge';
|
|
158997
|
+
cursor: Scalars['String']['output'];
|
|
158998
|
+
node?: Maybe<MercuryAskResult>;
|
|
158999
|
+
};
|
|
159000
|
+
export type MercuryAskLink = Node & {
|
|
159001
|
+
__typename?: 'MercuryAskLink';
|
|
159002
|
+
askId: Scalars['String']['output'];
|
|
159003
|
+
attachedByUser?: Maybe<User>;
|
|
159004
|
+
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
159005
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159006
|
+
id: Scalars['ID']['output'];
|
|
159007
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
159008
|
+
url: Scalars['URL']['output'];
|
|
159009
|
+
};
|
|
159010
|
+
export type MercuryAskLinkConnection = {
|
|
159011
|
+
__typename?: 'MercuryAskLinkConnection';
|
|
159012
|
+
edges?: Maybe<Array<Maybe<MercuryAskLinkEdge>>>;
|
|
159013
|
+
pageInfo: PageInfo;
|
|
159014
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159015
|
+
};
|
|
159016
|
+
export type MercuryAskLinkEdge = {
|
|
159017
|
+
__typename?: 'MercuryAskLinkEdge';
|
|
159018
|
+
cursor: Scalars['String']['output'];
|
|
159019
|
+
node?: Maybe<MercuryAskLinkResult>;
|
|
159020
|
+
};
|
|
159021
|
+
export type MercuryAskLinkResult = MercuryAskLink | QueryError;
|
|
159022
|
+
export declare enum MercuryAskPriority {
|
|
159023
|
+
Critical = "CRITICAL",
|
|
159024
|
+
High = "HIGH",
|
|
159025
|
+
Highest = "HIGHEST",
|
|
159026
|
+
Low = "LOW",
|
|
159027
|
+
Medium = "MEDIUM"
|
|
159028
|
+
}
|
|
159029
|
+
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
159030
|
+
export declare enum MercuryAskStatus {
|
|
159031
|
+
Accepted = "ACCEPTED",
|
|
159032
|
+
Canceled = "CANCELED",
|
|
159033
|
+
Deferred = "DEFERRED",
|
|
159034
|
+
Draft = "DRAFT",
|
|
159035
|
+
InReview = "IN_REVIEW",
|
|
159036
|
+
Resolved = "RESOLVED",
|
|
159037
|
+
Revising = "REVISING",
|
|
159038
|
+
Submitted = "SUBMITTED"
|
|
159039
|
+
}
|
|
159040
|
+
export type MercuryAskStatusUpdate = {
|
|
159041
|
+
__typename?: 'MercuryAskStatusUpdate';
|
|
159042
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159043
|
+
createdBy?: Maybe<User>;
|
|
159044
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
159045
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
159046
|
+
id: Scalars['ID']['output'];
|
|
159047
|
+
newProposedBy?: Maybe<User>;
|
|
159048
|
+
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159049
|
+
newStatus?: Maybe<MercuryAskStatus>;
|
|
159050
|
+
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159051
|
+
oldProposedBy?: Maybe<User>;
|
|
159052
|
+
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159053
|
+
oldStatus?: Maybe<MercuryAskStatus>;
|
|
159054
|
+
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159055
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159056
|
+
updatedBy?: Maybe<User>;
|
|
159057
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
159058
|
+
};
|
|
159059
|
+
export type MercuryAskStatusUpdateConnection = {
|
|
159060
|
+
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
159061
|
+
edges?: Maybe<Array<Maybe<MercuryAskStatusUpdateEdge>>>;
|
|
159062
|
+
pageInfo: PageInfo;
|
|
159063
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159064
|
+
};
|
|
159065
|
+
export type MercuryAskStatusUpdateDescriptionInput = {
|
|
159066
|
+
description: Scalars['String']['input'];
|
|
159067
|
+
id: Scalars['ID']['input'];
|
|
159068
|
+
};
|
|
159069
|
+
export type MercuryAskStatusUpdateEdge = {
|
|
159070
|
+
__typename?: 'MercuryAskStatusUpdateEdge';
|
|
159071
|
+
cursor: Scalars['String']['output'];
|
|
159072
|
+
node?: Maybe<MercuryAskStatusUpdateResult>;
|
|
159073
|
+
};
|
|
159074
|
+
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
159075
|
+
export type MercuryAskStatusUpdateStatusInput = {
|
|
159076
|
+
id: Scalars['ID']['input'];
|
|
159077
|
+
status: MercuryAskStatus;
|
|
159078
|
+
};
|
|
159079
|
+
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
159080
|
+
id: Scalars['ID']['input'];
|
|
159081
|
+
targetDate: MercuryAskTargetDateInput;
|
|
159082
|
+
};
|
|
159083
|
+
export type MercuryAskTargetDate = {
|
|
159084
|
+
__typename?: 'MercuryAskTargetDate';
|
|
159085
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
159086
|
+
targetDateType?: Maybe<MercuryAskTargetDateType>;
|
|
159087
|
+
};
|
|
159088
|
+
export type MercuryAskTargetDateInput = {
|
|
159089
|
+
targetDate: Scalars['String']['input'];
|
|
159090
|
+
targetDateType: MercuryAskTargetDateType;
|
|
159091
|
+
};
|
|
159092
|
+
export declare enum MercuryAskTargetDateType {
|
|
159093
|
+
Day = "DAY",
|
|
159094
|
+
Month = "MONTH",
|
|
159095
|
+
Quarter = "QUARTER"
|
|
159096
|
+
}
|
|
159097
|
+
export type MercuryAskTransition = {
|
|
159098
|
+
__typename?: 'MercuryAskTransition';
|
|
159099
|
+
askId: Scalars['String']['output'];
|
|
159100
|
+
status?: Maybe<MercuryAskStatus>;
|
|
159101
|
+
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159102
|
+
};
|
|
158444
159103
|
export type MercuryAssignUserAccessToFocusAreaInput = {
|
|
158445
159104
|
focusAreaAri: Scalars['ID']['input'];
|
|
158446
159105
|
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
@@ -158461,6 +159120,17 @@ export type MercuryAssignUserAccessToOrganizationPayload = Payload & {
|
|
|
158461
159120
|
organizationUserAccessAssignment?: Maybe<Array<Maybe<MercuryOrganizationUserAccessMutation>>>;
|
|
158462
159121
|
success: Scalars['Boolean']['output'];
|
|
158463
159122
|
};
|
|
159123
|
+
export type MercuryAttachAskLinkInput = {
|
|
159124
|
+
askId: Scalars['ID']['input'];
|
|
159125
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
159126
|
+
url: Scalars['URL']['input'];
|
|
159127
|
+
};
|
|
159128
|
+
export type MercuryAttachAskLinkPayload = Payload & {
|
|
159129
|
+
__typename?: 'MercuryAttachAskLinkPayload';
|
|
159130
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159131
|
+
link?: Maybe<MercuryAskLink>;
|
|
159132
|
+
success: Scalars['Boolean']['output'];
|
|
159133
|
+
};
|
|
158464
159134
|
export type MercuryBaseJiraWorkStatusMapping = {
|
|
158465
159135
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
158466
159136
|
jiraStatusCategory?: Maybe<MercuryJiraStatusCategory>;
|
|
@@ -159232,6 +159902,55 @@ export type MercuryCostType = Node & {
|
|
|
159232
159902
|
key: Scalars['String']['output'];
|
|
159233
159903
|
order: Scalars['Int']['output'];
|
|
159234
159904
|
};
|
|
159905
|
+
export type MercuryCreateAskInput = {
|
|
159906
|
+
cloudId: Scalars['ID']['input'];
|
|
159907
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
159908
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
159909
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159910
|
+
name: Scalars['String']['input'];
|
|
159911
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
159912
|
+
priority: MercuryAskPriority;
|
|
159913
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
159914
|
+
status: MercuryAskStatus;
|
|
159915
|
+
submitterId: Scalars['String']['input'];
|
|
159916
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
159917
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159918
|
+
};
|
|
159919
|
+
export type MercuryCreateAskStatusUpdateInput = {
|
|
159920
|
+
askId: Scalars['ID']['input'];
|
|
159921
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
159922
|
+
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159923
|
+
status?: InputMaybe<MercuryAskStatus>;
|
|
159924
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159925
|
+
};
|
|
159926
|
+
export type MercuryCreateAsksAskInput = {
|
|
159927
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
159928
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
159929
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159930
|
+
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
159931
|
+
name: Scalars['String']['input'];
|
|
159932
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
159933
|
+
priority: MercuryAskPriority;
|
|
159934
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
159935
|
+
status: MercuryAskStatus;
|
|
159936
|
+
submitterId: Scalars['String']['input'];
|
|
159937
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
159938
|
+
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159939
|
+
};
|
|
159940
|
+
export type MercuryCreateAsksAskLinkInput = {
|
|
159941
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
159942
|
+
url: Scalars['URL']['input'];
|
|
159943
|
+
};
|
|
159944
|
+
export type MercuryCreateAsksInput = {
|
|
159945
|
+
asks: Array<MercuryCreateAsksAskInput>;
|
|
159946
|
+
cloudId: Scalars['ID']['input'];
|
|
159947
|
+
};
|
|
159948
|
+
export type MercuryCreateAsksPayload = Payload & {
|
|
159949
|
+
__typename?: 'MercuryCreateAsksPayload';
|
|
159950
|
+
asks?: Maybe<Array<MercuryAsk>>;
|
|
159951
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159952
|
+
success: Scalars['Boolean']['output'];
|
|
159953
|
+
};
|
|
159235
159954
|
export type MercuryCreateBaseCustomFieldDefinitionInput = {
|
|
159236
159955
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159237
159956
|
name: Scalars['String']['input'];
|
|
@@ -159819,6 +160538,33 @@ export type MercuryDeleteAllPreferencesByUserPayload = Payload & {
|
|
|
159819
160538
|
errors?: Maybe<Array<MutationError>>;
|
|
159820
160539
|
success: Scalars['Boolean']['output'];
|
|
159821
160540
|
};
|
|
160541
|
+
export type MercuryDeleteAskInput = {
|
|
160542
|
+
id: Scalars['ID']['input'];
|
|
160543
|
+
};
|
|
160544
|
+
export type MercuryDeleteAskLinkInput = {
|
|
160545
|
+
id: Scalars['ID']['input'];
|
|
160546
|
+
};
|
|
160547
|
+
export type MercuryDeleteAskLinkPayload = Payload & {
|
|
160548
|
+
__typename?: 'MercuryDeleteAskLinkPayload';
|
|
160549
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160550
|
+
id: Scalars['ID']['output'];
|
|
160551
|
+
success: Scalars['Boolean']['output'];
|
|
160552
|
+
};
|
|
160553
|
+
export type MercuryDeleteAskPayload = Payload & {
|
|
160554
|
+
__typename?: 'MercuryDeleteAskPayload';
|
|
160555
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160556
|
+
id: Scalars['ID']['output'];
|
|
160557
|
+
success: Scalars['Boolean']['output'];
|
|
160558
|
+
};
|
|
160559
|
+
export type MercuryDeleteAskStatusUpdateInput = {
|
|
160560
|
+
id: Scalars['ID']['input'];
|
|
160561
|
+
};
|
|
160562
|
+
export type MercuryDeleteAskStatusUpdatePayload = Payload & {
|
|
160563
|
+
__typename?: 'MercuryDeleteAskStatusUpdatePayload';
|
|
160564
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160565
|
+
id: Scalars['ID']['output'];
|
|
160566
|
+
success: Scalars['Boolean']['output'];
|
|
160567
|
+
};
|
|
159822
160568
|
export type MercuryDeleteBenefitItemInput = {
|
|
159823
160569
|
id: Scalars['ID']['input'];
|
|
159824
160570
|
};
|
|
@@ -161463,6 +162209,7 @@ export type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
161463
162209
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
161464
162210
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
161465
162211
|
};
|
|
162212
|
+
export type MercuryImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
161466
162213
|
export type MercuryImportExecutionError = {
|
|
161467
162214
|
__typename?: 'MercuryImportExecutionError';
|
|
161468
162215
|
entityType?: Maybe<MercuryImportExecutionErrorEntityType>;
|
|
@@ -163612,6 +164359,10 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
163612
164359
|
export type MercuryProjectType = {
|
|
163613
164360
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
163614
164361
|
};
|
|
164362
|
+
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164363
|
+
connectedWorkId: Scalars['String']['input'];
|
|
164364
|
+
id: Scalars['ID']['input'];
|
|
164365
|
+
};
|
|
163615
164366
|
export type MercuryProposeChangesInput = {
|
|
163616
164367
|
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
163617
164368
|
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
@@ -164150,6 +164901,7 @@ export type MercuryRankedChangeProposal = {
|
|
|
164150
164901
|
};
|
|
164151
164902
|
export declare enum MercuryRankingContainerType {
|
|
164152
164903
|
ParentFocusArea = "PARENT_FOCUS_AREA",
|
|
164904
|
+
SponsoringOrganization = "SPONSORING_ORGANIZATION",
|
|
164153
164905
|
Workspace = "WORKSPACE"
|
|
164154
164906
|
}
|
|
164155
164907
|
export declare enum MercuryRankingGroupType {
|
|
@@ -164371,6 +165123,9 @@ export type MercuryRerankFocusAreasPayload = Payload & {
|
|
|
164371
165123
|
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
164372
165124
|
success: Scalars['Boolean']['output'];
|
|
164373
165125
|
};
|
|
165126
|
+
export type MercuryResolveProposedDateInput = {
|
|
165127
|
+
askId: Scalars['ID']['input'];
|
|
165128
|
+
};
|
|
164374
165129
|
export type MercuryRestrictedChangeProposal = {
|
|
164375
165130
|
__typename?: 'MercuryRestrictedChangeProposal';
|
|
164376
165131
|
id: Scalars['ID']['output'];
|
|
@@ -165709,6 +166464,52 @@ export type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
|
165709
166464
|
success: Scalars['Boolean']['output'];
|
|
165710
166465
|
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
165711
166466
|
};
|
|
166467
|
+
export type MercuryUpdateAskDescriptionInput = {
|
|
166468
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
166469
|
+
id: Scalars['ID']['input'];
|
|
166470
|
+
};
|
|
166471
|
+
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166472
|
+
id: Scalars['ID']['input'];
|
|
166473
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
166474
|
+
};
|
|
166475
|
+
export type MercuryUpdateAskJustificationInput = {
|
|
166476
|
+
id: Scalars['ID']['input'];
|
|
166477
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
166478
|
+
};
|
|
166479
|
+
export type MercuryUpdateAskNameInput = {
|
|
166480
|
+
id: Scalars['ID']['input'];
|
|
166481
|
+
name: Scalars['String']['input'];
|
|
166482
|
+
};
|
|
166483
|
+
export type MercuryUpdateAskOwnerInput = {
|
|
166484
|
+
id: Scalars['ID']['input'];
|
|
166485
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
166486
|
+
};
|
|
166487
|
+
export type MercuryUpdateAskPriorityInput = {
|
|
166488
|
+
id: Scalars['ID']['input'];
|
|
166489
|
+
priority: MercuryAskPriority;
|
|
166490
|
+
};
|
|
166491
|
+
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166492
|
+
id: Scalars['ID']['input'];
|
|
166493
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
166494
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166495
|
+
};
|
|
166496
|
+
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166497
|
+
id: Scalars['ID']['input'];
|
|
166498
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166499
|
+
};
|
|
166500
|
+
export type MercuryUpdateAskSubmitterInput = {
|
|
166501
|
+
id: Scalars['ID']['input'];
|
|
166502
|
+
submitterId: Scalars['String']['input'];
|
|
166503
|
+
};
|
|
166504
|
+
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166505
|
+
id: Scalars['ID']['input'];
|
|
166506
|
+
submitterId: Scalars['String']['input'];
|
|
166507
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166508
|
+
};
|
|
166509
|
+
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166510
|
+
id: Scalars['ID']['input'];
|
|
166511
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
166512
|
+
};
|
|
165712
166513
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
165713
166514
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
165714
166515
|
id: Scalars['ID']['input'];
|
|
@@ -166300,6 +167101,19 @@ export type MercuryUpdatedField = {
|
|
|
166300
167101
|
oldString?: Maybe<Scalars['String']['output']>;
|
|
166301
167102
|
oldValue?: Maybe<Scalars['String']['output']>;
|
|
166302
167103
|
};
|
|
167104
|
+
export type MercuryUpsertAskPayload = Payload & {
|
|
167105
|
+
__typename?: 'MercuryUpsertAskPayload';
|
|
167106
|
+
ask?: Maybe<MercuryAsk>;
|
|
167107
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167108
|
+
success: Scalars['Boolean']['output'];
|
|
167109
|
+
};
|
|
167110
|
+
export type MercuryUpsertAskStatusUpdatePayload = Payload & {
|
|
167111
|
+
__typename?: 'MercuryUpsertAskStatusUpdatePayload';
|
|
167112
|
+
ask?: Maybe<MercuryAsk>;
|
|
167113
|
+
askStatusUpdate?: Maybe<MercuryAskStatusUpdate>;
|
|
167114
|
+
errors?: Maybe<Array<MutationError>>;
|
|
167115
|
+
success: Scalars['Boolean']['output'];
|
|
167116
|
+
};
|
|
166303
167117
|
export type MercuryUpsertViewPayload = Payload & {
|
|
166304
167118
|
__typename?: 'MercuryUpsertViewPayload';
|
|
166305
167119
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -166643,6 +167457,7 @@ export declare enum MitigationDocumentType {
|
|
|
166643
167457
|
export type MitigationGenerationCompleted = {
|
|
166644
167458
|
__typename?: 'MitigationGenerationCompleted';
|
|
166645
167459
|
indicators?: Maybe<Array<MitigationIndicator>>;
|
|
167460
|
+
sources?: Maybe<Array<MitigationSource>>;
|
|
166646
167461
|
};
|
|
166647
167462
|
export type MitigationGenerationCompletedIndicatorsArgs = {
|
|
166648
167463
|
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -166725,6 +167540,19 @@ export declare enum MitigationRejectionSource {
|
|
|
166725
167540
|
export declare enum MitigationScopeType {
|
|
166726
167541
|
Icc = "ICC"
|
|
166727
167542
|
}
|
|
167543
|
+
export type MitigationSource = {
|
|
167544
|
+
__typename?: 'MitigationSource';
|
|
167545
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
167546
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
167547
|
+
type?: Maybe<MitigationSourceType>;
|
|
167548
|
+
};
|
|
167549
|
+
export declare enum MitigationSourceType {
|
|
167550
|
+
Confluence = "CONFLUENCE",
|
|
167551
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
167552
|
+
Jira = "JIRA",
|
|
167553
|
+
Jsm = "JSM",
|
|
167554
|
+
MicrosoftSharepoint = "MICROSOFT_SHAREPOINT"
|
|
167555
|
+
}
|
|
166728
167556
|
export declare enum MitigationStepStatus {
|
|
166729
167557
|
Done = "DONE",
|
|
166730
167558
|
Errored = "ERRORED",
|
|
@@ -167022,6 +167850,7 @@ export type Mutation = {
|
|
|
167022
167850
|
assetsVertical_generateCustomInsight?: Maybe<AssetsVerticalGenerateCustomInsightPayload>;
|
|
167023
167851
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
167024
167852
|
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
167853
|
+
assetsVertical_retryVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
167025
167854
|
assetsVertical_updateCustomInsight?: Maybe<AssetsVerticalUpdateCustomInsightPayload>;
|
|
167026
167855
|
assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
167027
167856
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
@@ -167326,6 +168155,7 @@ export type Mutation = {
|
|
|
167326
168155
|
createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
|
|
167327
168156
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
167328
168157
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
168158
|
+
createAppManifestUploadUrl?: Maybe<CreateAppManifestUploadUrlResponse>;
|
|
167329
168159
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
167330
168160
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
167331
168161
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
@@ -167551,6 +168381,7 @@ export type Mutation = {
|
|
|
167551
168381
|
goals_deleteDecision?: Maybe<TownsquareGoalsDeleteDecisionPayload>;
|
|
167552
168382
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
167553
168383
|
goals_deleteLearning?: Maybe<TownsquareGoalsDeleteLearningPayload>;
|
|
168384
|
+
goals_deleteMetricValue?: Maybe<TownsquareGoalsDeleteMetricValuePayload>;
|
|
167554
168385
|
goals_deleteProjectLink?: Maybe<TownsquareGoalsDeleteProjectLinkPayload>;
|
|
167555
168386
|
goals_deleteRisk?: Maybe<TownsquareGoalsDeleteRiskPayload>;
|
|
167556
168387
|
goals_disconnectMsteamsChannel?: Maybe<TownsquareGoalsDisconnectMsteamsChannelPayload>;
|
|
@@ -167990,14 +168821,12 @@ export type Mutation = {
|
|
|
167990
168821
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
167991
168822
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
167992
168823
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
167993
|
-
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneFeedback>;
|
|
167994
168824
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
167995
168825
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
167996
168826
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
167997
168827
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
167998
168828
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
167999
168829
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
168000
|
-
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedRecord>;
|
|
168001
168830
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
168002
168831
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
168003
168832
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -168033,24 +168862,61 @@ export type Mutation = {
|
|
|
168033
168862
|
liveChat_sendTypingSignal?: Maybe<LiveChatTypingSignalPayload>;
|
|
168034
168863
|
liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
|
|
168035
168864
|
loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
|
|
168865
|
+
loom_completeVideoFileUpload?: Maybe<LoomCompleteVideoFileUploadPayload>;
|
|
168866
|
+
loom_createFileUploadCredentials?: Maybe<LoomCreateFileUploadCredentialsPayload>;
|
|
168867
|
+
loom_createFolder?: Maybe<LoomCreateFolderPayload>;
|
|
168868
|
+
loom_createVideoComment?: Maybe<LoomCreateVideoCommentPayload>;
|
|
168869
|
+
loom_createVideoReaction?: Maybe<LoomCreateVideoReactionPayload>;
|
|
168036
168870
|
loom_deleteVideos?: Maybe<LoomDeleteVideo>;
|
|
168871
|
+
loom_enqueueVideoDownload?: Maybe<LoomEnqueueVideoDownloadPayload>;
|
|
168037
168872
|
loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
|
|
168873
|
+
loom_moveVideoToFolder?: Maybe<LoomMoveVideoToFolderPayload>;
|
|
168874
|
+
loom_recoverVideo?: Maybe<LoomRecoverVideoPayload>;
|
|
168875
|
+
loom_shareVideo?: Maybe<LoomShareVideoPayload>;
|
|
168038
168876
|
loom_spaceCreate?: Maybe<LoomSpace>;
|
|
168877
|
+
loom_updateVideoPermissions?: Maybe<LoomUpdateVideoPermissionsPayload>;
|
|
168878
|
+
loom_updateVideoTitle?: Maybe<LoomUpdateVideoTitlePayload>;
|
|
168039
168879
|
markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
|
|
168040
168880
|
markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
|
|
168041
168881
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
168042
168882
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
168043
168883
|
mercury?: Maybe<MercuryMutationApi>;
|
|
168884
|
+
mercury_acceptProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168885
|
+
mercury_addConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
168886
|
+
mercury_attachAskLink?: Maybe<MercuryAttachAskLinkPayload>;
|
|
168044
168887
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
168045
168888
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
168889
|
+
mercury_createAsk?: Maybe<MercuryUpsertAskPayload>;
|
|
168890
|
+
mercury_createAskStatusUpdate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168891
|
+
mercury_createAsks?: Maybe<MercuryCreateAsksPayload>;
|
|
168892
|
+
mercury_deleteAsk?: Maybe<MercuryDeleteAskPayload>;
|
|
168893
|
+
mercury_deleteAskLink?: Maybe<MercuryDeleteAskLinkPayload>;
|
|
168894
|
+
mercury_deleteAskStatusUpdate?: Maybe<MercuryDeleteAskStatusUpdatePayload>;
|
|
168046
168895
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
168047
168896
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
168048
168897
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
168049
168898
|
mercury_plans?: Maybe<MercuryPlansMutationApi>;
|
|
168899
|
+
mercury_promoteWorkItemToImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
168050
168900
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
168901
|
+
mercury_rejectProposedDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168902
|
+
mercury_removeConnectedWork?: Maybe<MercuryAskConnectedWorkPayload>;
|
|
168051
168903
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
168052
168904
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
168053
168905
|
mercury_tags?: Maybe<MercuryTagsMutationApi>;
|
|
168906
|
+
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
168907
|
+
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
168908
|
+
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
168909
|
+
mercury_updateAskName?: Maybe<MercuryUpsertAskPayload>;
|
|
168910
|
+
mercury_updateAskOwner?: Maybe<MercuryUpsertAskPayload>;
|
|
168911
|
+
mercury_updateAskPriority?: Maybe<MercuryUpsertAskPayload>;
|
|
168912
|
+
mercury_updateAskReceivingFields?: Maybe<MercuryUpsertAskPayload>;
|
|
168913
|
+
mercury_updateAskReceivingTeam?: Maybe<MercuryUpsertAskPayload>;
|
|
168914
|
+
mercury_updateAskStatusUpdateDescription?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168915
|
+
mercury_updateAskStatusUpdateStatus?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168916
|
+
mercury_updateAskStatusUpdateTargetDate?: Maybe<MercuryUpsertAskStatusUpdatePayload>;
|
|
168917
|
+
mercury_updateAskSubmitter?: Maybe<MercuryUpsertAskPayload>;
|
|
168918
|
+
mercury_updateAskSubmittingFields?: Maybe<MercuryUpsertAskPayload>;
|
|
168919
|
+
mercury_updateAskSubmittingTeam?: Maybe<MercuryUpsertAskPayload>;
|
|
168054
168920
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
168055
168921
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
168056
168922
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -169337,6 +170203,9 @@ export type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
|
169337
170203
|
export type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
169338
170204
|
input: AssetsVerticalInstantiateBundleByTypeInput;
|
|
169339
170205
|
};
|
|
170206
|
+
export type MutationAssetsVertical_RetryVerticalInstantiationArgs = {
|
|
170207
|
+
input: AssetsVerticalRetryVerticalInstantiationInput;
|
|
170208
|
+
};
|
|
169340
170209
|
export type MutationAssetsVertical_UpdateCustomInsightArgs = {
|
|
169341
170210
|
input: AssetsVerticalUpdateCustomInsightInput;
|
|
169342
170211
|
};
|
|
@@ -170425,6 +171294,9 @@ export type MutationCreateAppDeploymentArgs = {
|
|
|
170425
171294
|
export type MutationCreateAppDeploymentUrlArgs = {
|
|
170426
171295
|
input: CreateAppDeploymentUrlInput;
|
|
170427
171296
|
};
|
|
171297
|
+
export type MutationCreateAppManifestUploadUrlArgs = {
|
|
171298
|
+
input: CreateAppManifestUploadUrlInput;
|
|
171299
|
+
};
|
|
170428
171300
|
export type MutationCreateAppTunnelsArgs = {
|
|
170429
171301
|
input: CreateAppTunnelsInput;
|
|
170430
171302
|
};
|
|
@@ -171219,6 +172091,9 @@ export type MutationGoals_DeleteLatestUpdateArgs = {
|
|
|
171219
172091
|
export type MutationGoals_DeleteLearningArgs = {
|
|
171220
172092
|
input: TownsquareGoalsDeleteLearningInput;
|
|
171221
172093
|
};
|
|
172094
|
+
export type MutationGoals_DeleteMetricValueArgs = {
|
|
172095
|
+
input: TownsquareGoalsDeleteMetricValueInput;
|
|
172096
|
+
};
|
|
171222
172097
|
export type MutationGoals_DeleteProjectLinkArgs = {
|
|
171223
172098
|
input: TownsquareGoalsDeleteProjectLinkInput;
|
|
171224
172099
|
};
|
|
@@ -172630,9 +173505,6 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
172630
173505
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
172631
173506
|
id: Scalars['ID']['input'];
|
|
172632
173507
|
};
|
|
172633
|
-
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
172634
|
-
id: Scalars['ID']['input'];
|
|
172635
|
-
};
|
|
172636
173508
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
172637
173509
|
insightAri: Scalars['ID']['input'];
|
|
172638
173510
|
};
|
|
@@ -172655,9 +173527,6 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
172655
173527
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
172656
173528
|
id: Scalars['ID']['input'];
|
|
172657
173529
|
};
|
|
172658
|
-
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
172659
|
-
id: Scalars['ID']['input'];
|
|
172660
|
-
};
|
|
172661
173530
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
172662
173531
|
id: Scalars['ID']['input'];
|
|
172663
173532
|
};
|
|
@@ -172812,20 +173681,53 @@ export type MutationLoom_AcceptOrganizationInviteArgs = {
|
|
|
172812
173681
|
inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
172813
173682
|
orgToken?: InputMaybe<Scalars['String']['input']>;
|
|
172814
173683
|
};
|
|
173684
|
+
export type MutationLoom_CompleteVideoFileUploadArgs = {
|
|
173685
|
+
input: LoomCompleteVideoFileUploadInput;
|
|
173686
|
+
};
|
|
173687
|
+
export type MutationLoom_CreateFileUploadCredentialsArgs = {
|
|
173688
|
+
siteId: Scalars['ID']['input'];
|
|
173689
|
+
};
|
|
173690
|
+
export type MutationLoom_CreateFolderArgs = {
|
|
173691
|
+
input: LoomCreateFolderInput;
|
|
173692
|
+
};
|
|
173693
|
+
export type MutationLoom_CreateVideoCommentArgs = {
|
|
173694
|
+
input: LoomCreateVideoCommentInput;
|
|
173695
|
+
};
|
|
173696
|
+
export type MutationLoom_CreateVideoReactionArgs = {
|
|
173697
|
+
input: LoomCreateVideoReactionInput;
|
|
173698
|
+
};
|
|
172815
173699
|
export type MutationLoom_DeleteVideosArgs = {
|
|
172816
173700
|
ids: Array<Scalars['ID']['input']>;
|
|
172817
173701
|
};
|
|
173702
|
+
export type MutationLoom_EnqueueVideoDownloadArgs = {
|
|
173703
|
+
input: LoomEnqueueVideoDownloadInput;
|
|
173704
|
+
};
|
|
172818
173705
|
export type MutationLoom_JoinWorkspaceArgs = {
|
|
172819
173706
|
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
172820
173707
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
172821
173708
|
workspaceId: Scalars['String']['input'];
|
|
172822
173709
|
};
|
|
173710
|
+
export type MutationLoom_MoveVideoToFolderArgs = {
|
|
173711
|
+
input: LoomMoveVideoToFolderInput;
|
|
173712
|
+
};
|
|
173713
|
+
export type MutationLoom_RecoverVideoArgs = {
|
|
173714
|
+
input: LoomRecoverVideoInput;
|
|
173715
|
+
};
|
|
173716
|
+
export type MutationLoom_ShareVideoArgs = {
|
|
173717
|
+
input: LoomShareVideoInput;
|
|
173718
|
+
};
|
|
172823
173719
|
export type MutationLoom_SpaceCreateArgs = {
|
|
172824
173720
|
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
172825
173721
|
name: Scalars['String']['input'];
|
|
172826
173722
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
172827
173723
|
siteId: Scalars['ID']['input'];
|
|
172828
173724
|
};
|
|
173725
|
+
export type MutationLoom_UpdateVideoPermissionsArgs = {
|
|
173726
|
+
input: LoomUpdateVideoPermissionsInput;
|
|
173727
|
+
};
|
|
173728
|
+
export type MutationLoom_UpdateVideoTitleArgs = {
|
|
173729
|
+
input: LoomUpdateVideoTitleInput;
|
|
173730
|
+
};
|
|
172829
173731
|
export type MutationMarkCommentsAsReadArgs = {
|
|
172830
173732
|
input: MarkCommentsAsReadInput;
|
|
172831
173733
|
};
|
|
@@ -172833,6 +173735,84 @@ export type MutationMarkFeatureDiscoveredArgs = {
|
|
|
172833
173735
|
featureKey: Scalars['String']['input'];
|
|
172834
173736
|
pluginKey: Scalars['String']['input'];
|
|
172835
173737
|
};
|
|
173738
|
+
export type MutationMercury_AcceptProposedDateArgs = {
|
|
173739
|
+
input: MercuryResolveProposedDateInput;
|
|
173740
|
+
};
|
|
173741
|
+
export type MutationMercury_AddConnectedWorkArgs = {
|
|
173742
|
+
input: MercuryAskConnectedWorkInput;
|
|
173743
|
+
};
|
|
173744
|
+
export type MutationMercury_AttachAskLinkArgs = {
|
|
173745
|
+
input: MercuryAttachAskLinkInput;
|
|
173746
|
+
};
|
|
173747
|
+
export type MutationMercury_CreateAskArgs = {
|
|
173748
|
+
input: MercuryCreateAskInput;
|
|
173749
|
+
};
|
|
173750
|
+
export type MutationMercury_CreateAskStatusUpdateArgs = {
|
|
173751
|
+
input: MercuryCreateAskStatusUpdateInput;
|
|
173752
|
+
};
|
|
173753
|
+
export type MutationMercury_CreateAsksArgs = {
|
|
173754
|
+
input: MercuryCreateAsksInput;
|
|
173755
|
+
};
|
|
173756
|
+
export type MutationMercury_DeleteAskArgs = {
|
|
173757
|
+
input: MercuryDeleteAskInput;
|
|
173758
|
+
};
|
|
173759
|
+
export type MutationMercury_DeleteAskLinkArgs = {
|
|
173760
|
+
input: MercuryDeleteAskLinkInput;
|
|
173761
|
+
};
|
|
173762
|
+
export type MutationMercury_DeleteAskStatusUpdateArgs = {
|
|
173763
|
+
input: MercuryDeleteAskStatusUpdateInput;
|
|
173764
|
+
};
|
|
173765
|
+
export type MutationMercury_PromoteWorkItemToImpactedWorkArgs = {
|
|
173766
|
+
input: MercuryPromoteWorkItemToImpactedWorkInput;
|
|
173767
|
+
};
|
|
173768
|
+
export type MutationMercury_RejectProposedDateArgs = {
|
|
173769
|
+
input: MercuryResolveProposedDateInput;
|
|
173770
|
+
};
|
|
173771
|
+
export type MutationMercury_RemoveConnectedWorkArgs = {
|
|
173772
|
+
input: MercuryAskConnectedWorkInput;
|
|
173773
|
+
};
|
|
173774
|
+
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
173775
|
+
input: MercuryUpdateAskDescriptionInput;
|
|
173776
|
+
};
|
|
173777
|
+
export type MutationMercury_UpdateAskImpactedWorkArgs = {
|
|
173778
|
+
input: MercuryUpdateAskImpactedWorkInput;
|
|
173779
|
+
};
|
|
173780
|
+
export type MutationMercury_UpdateAskJustificationArgs = {
|
|
173781
|
+
input: MercuryUpdateAskJustificationInput;
|
|
173782
|
+
};
|
|
173783
|
+
export type MutationMercury_UpdateAskNameArgs = {
|
|
173784
|
+
input: MercuryUpdateAskNameInput;
|
|
173785
|
+
};
|
|
173786
|
+
export type MutationMercury_UpdateAskOwnerArgs = {
|
|
173787
|
+
input: MercuryUpdateAskOwnerInput;
|
|
173788
|
+
};
|
|
173789
|
+
export type MutationMercury_UpdateAskPriorityArgs = {
|
|
173790
|
+
input: MercuryUpdateAskPriorityInput;
|
|
173791
|
+
};
|
|
173792
|
+
export type MutationMercury_UpdateAskReceivingFieldsArgs = {
|
|
173793
|
+
input: MercuryUpdateAskReceivingFieldsInput;
|
|
173794
|
+
};
|
|
173795
|
+
export type MutationMercury_UpdateAskReceivingTeamArgs = {
|
|
173796
|
+
input: MercuryUpdateAskReceivingTeamInput;
|
|
173797
|
+
};
|
|
173798
|
+
export type MutationMercury_UpdateAskStatusUpdateDescriptionArgs = {
|
|
173799
|
+
input: MercuryAskStatusUpdateDescriptionInput;
|
|
173800
|
+
};
|
|
173801
|
+
export type MutationMercury_UpdateAskStatusUpdateStatusArgs = {
|
|
173802
|
+
input: MercuryAskStatusUpdateStatusInput;
|
|
173803
|
+
};
|
|
173804
|
+
export type MutationMercury_UpdateAskStatusUpdateTargetDateArgs = {
|
|
173805
|
+
input: MercuryAskStatusUpdateTargetDateInput;
|
|
173806
|
+
};
|
|
173807
|
+
export type MutationMercury_UpdateAskSubmitterArgs = {
|
|
173808
|
+
input: MercuryUpdateAskSubmitterInput;
|
|
173809
|
+
};
|
|
173810
|
+
export type MutationMercury_UpdateAskSubmittingFieldsArgs = {
|
|
173811
|
+
input: MercuryUpdateAskSubmittingFieldsInput;
|
|
173812
|
+
};
|
|
173813
|
+
export type MutationMercury_UpdateAskSubmittingTeamArgs = {
|
|
173814
|
+
input: MercuryUpdateAskSubmittingTeamInput;
|
|
173815
|
+
};
|
|
172836
173816
|
export type MutationMigrateSpaceShortcutsArgs = {
|
|
172837
173817
|
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
172838
173818
|
spaceId: Scalars['ID']['input'];
|
|
@@ -177383,6 +178363,7 @@ export type Query = {
|
|
|
177383
178363
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
177384
178364
|
appLogs?: Maybe<AppLogConnection>;
|
|
177385
178365
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
178366
|
+
appPreDeploymentCheck?: Maybe<AppPreDeploymentCheckResponse>;
|
|
177386
178367
|
appServices?: Maybe<AppServicesConnection>;
|
|
177387
178368
|
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
177388
178369
|
appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminQuery>;
|
|
@@ -177396,8 +178377,8 @@ export type Query = {
|
|
|
177396
178377
|
appSwitcher_availableProductsBySite?: Maybe<AppSwitcherAvailableProductsBySiteResult>;
|
|
177397
178378
|
apps?: Maybe<AppConnection>;
|
|
177398
178379
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
177399
|
-
assetsDM_adapterClientVersionStatus?: Maybe<AssetsDmAdapterClientVersionStatusResponse>;
|
|
177400
178380
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
178381
|
+
assetsDM_advisoryNotifications?: Maybe<AssetsDmAdvisoryNotificationsResponse>;
|
|
177401
178382
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
177402
178383
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
177403
178384
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
@@ -177471,6 +178452,7 @@ export type Query = {
|
|
|
177471
178452
|
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
177472
178453
|
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
177473
178454
|
assetsVertical_hardwareObjects?: Maybe<AssetsVerticalHardwareObjectsResult>;
|
|
178455
|
+
assetsVertical_hardwareObjectsTotalCount?: Maybe<AssetsVerticalHardwareObjectsTotalCountResult>;
|
|
177474
178456
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
177475
178457
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
177476
178458
|
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
@@ -177944,6 +178926,7 @@ export type Query = {
|
|
|
177944
178926
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
177945
178927
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
177946
178928
|
devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
|
|
178929
|
+
devai_autodevNextAssignedWorkstreamUsers?: Maybe<DevAiAutodevNextAssignedWorkstreamUserConnection>;
|
|
177947
178930
|
devai_autodevNextGlobalDashboard?: Maybe<DevAiAutodevNextGlobalDashboard>;
|
|
177948
178931
|
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
177949
178932
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
@@ -180428,6 +181411,7 @@ export type Query = {
|
|
|
180428
181411
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
180429
181412
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
180430
181413
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
181414
|
+
loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
|
|
180431
181415
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
180432
181416
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
180433
181417
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
@@ -180441,6 +181425,7 @@ export type Query = {
|
|
|
180441
181425
|
loom_tagsSearch?: Maybe<Array<LoomTag>>;
|
|
180442
181426
|
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
180443
181427
|
loom_video?: Maybe<LoomVideo>;
|
|
181428
|
+
loom_videoDownloadUrl?: Maybe<LoomVideoDownloadUrl>;
|
|
180444
181429
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
180445
181430
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
180446
181431
|
loom_viewableVideo?: Maybe<LoomVideo>;
|
|
@@ -180464,6 +181449,11 @@ export type Query = {
|
|
|
180464
181449
|
media_items?: Maybe<Array<MediaItem>>;
|
|
180465
181450
|
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
180466
181451
|
mercury?: Maybe<MercuryQueryApi>;
|
|
181452
|
+
mercury_ask?: Maybe<MercuryAskResult>;
|
|
181453
|
+
mercury_askCountByStatusForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
181454
|
+
mercury_askLinksByIds?: Maybe<Array<Maybe<MercuryAskLink>>>;
|
|
181455
|
+
mercury_asks?: Maybe<MercuryAskConnection>;
|
|
181456
|
+
mercury_asksByIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
180467
181457
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
180468
181458
|
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
180469
181459
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
@@ -180476,6 +181466,7 @@ export type Query = {
|
|
|
180476
181466
|
mercury_plans?: Maybe<MercuryPlansQueryApi>;
|
|
180477
181467
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
180478
181468
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
181469
|
+
mercury_stalledAskCountForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
180479
181470
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
180480
181471
|
mercury_tags?: Maybe<MercuryTagsQueryApi>;
|
|
180481
181472
|
migration: MigrationQuery;
|
|
@@ -180649,6 +181640,7 @@ export type Query = {
|
|
|
180649
181640
|
sitePermissions?: Maybe<SitePermission>;
|
|
180650
181641
|
siteSettings?: Maybe<SiteSettings>;
|
|
180651
181642
|
smarts?: Maybe<SmartsQueryApi>;
|
|
181643
|
+
smartsV3?: Maybe<SmartsQueryApiV3>;
|
|
180652
181644
|
socialSignals?: Maybe<SocialSignalsApi>;
|
|
180653
181645
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
180654
181646
|
softwareCatalog_alertCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
|
|
@@ -181664,6 +182656,8 @@ export type QueryAgentWorkspace_ServicesArgs = {
|
|
|
181664
182656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181665
182657
|
projectId: Scalars['ID']['input'];
|
|
181666
182658
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
182659
|
+
serviceFieldId?: InputMaybe<Scalars['ID']['input']>;
|
|
182660
|
+
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
181667
182661
|
};
|
|
181668
182662
|
export type QueryAgentWorkspace_ServicesConfiguredInProjectArgs = {
|
|
181669
182663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181995,6 +182989,9 @@ export type QueryAppLogsWithMetaDataArgs = {
|
|
|
181995
182989
|
query?: InputMaybe<LogQueryInput>;
|
|
181996
182990
|
queryStartTime: Scalars['String']['input'];
|
|
181997
182991
|
};
|
|
182992
|
+
export type QueryAppPreDeploymentCheckArgs = {
|
|
182993
|
+
input: AppPreDeploymentCheckInput;
|
|
182994
|
+
};
|
|
181998
182995
|
export type QueryAppServicesArgs = {
|
|
181999
182996
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182000
182997
|
appId: Scalars['ID']['input'];
|
|
@@ -182053,11 +183050,11 @@ export type QueryAppsArgs = {
|
|
|
182053
183050
|
export type QueryAquaOutgoingEmailLogsArgs = {
|
|
182054
183051
|
cloudId: Scalars['ID']['input'];
|
|
182055
183052
|
};
|
|
182056
|
-
export type
|
|
183053
|
+
export type QueryAssetsDm_AdaptersArgs = {
|
|
182057
183054
|
cloudId: Scalars['ID']['input'];
|
|
182058
183055
|
workspaceId: Scalars['ID']['input'];
|
|
182059
183056
|
};
|
|
182060
|
-
export type
|
|
183057
|
+
export type QueryAssetsDm_AdvisoryNotificationsArgs = {
|
|
182061
183058
|
cloudId: Scalars['ID']['input'];
|
|
182062
183059
|
workspaceId: Scalars['ID']['input'];
|
|
182063
183060
|
};
|
|
@@ -182499,6 +183496,10 @@ export type QueryAssetsVertical_HardwareObjectsArgs = {
|
|
|
182499
183496
|
cloudId: Scalars['ID']['input'];
|
|
182500
183497
|
input: AssetsVerticalHardwareObjectsInput;
|
|
182501
183498
|
};
|
|
183499
|
+
export type QueryAssetsVertical_HardwareObjectsTotalCountArgs = {
|
|
183500
|
+
cloudId: Scalars['ID']['input'];
|
|
183501
|
+
input: AssetsVerticalHardwareObjectsInput;
|
|
183502
|
+
};
|
|
182502
183503
|
export type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
182503
183504
|
cloudId: Scalars['ID']['input'];
|
|
182504
183505
|
};
|
|
@@ -184637,6 +185638,14 @@ export type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
|
|
|
184637
185638
|
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
184638
185639
|
workstreamId: Scalars['ID']['input'];
|
|
184639
185640
|
};
|
|
185641
|
+
export type QueryDevai_AutodevNextAssignedWorkstreamUsersArgs = {
|
|
185642
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
185643
|
+
cloudId: Scalars['ID']['input'];
|
|
185644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
185645
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
185646
|
+
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
185647
|
+
workstreamId: Scalars['ID']['input'];
|
|
185648
|
+
};
|
|
184640
185649
|
export type QueryDevai_AutodevNextGlobalDashboardArgs = {
|
|
184641
185650
|
cloudId: Scalars['ID']['input'];
|
|
184642
185651
|
startDate: Scalars['Date']['input'];
|
|
@@ -201795,6 +202804,9 @@ export type QueryLoom_FoldersSearchArgs = {
|
|
|
201795
202804
|
export type QueryLoom_MeetingArgs = {
|
|
201796
202805
|
id: Scalars['ID']['input'];
|
|
201797
202806
|
};
|
|
202807
|
+
export type QueryLoom_MeetingActionItemsArgs = {
|
|
202808
|
+
id: Scalars['ID']['input'];
|
|
202809
|
+
};
|
|
201798
202810
|
export type QueryLoom_MeetingRecurrenceArgs = {
|
|
201799
202811
|
id: Scalars['ID']['input'];
|
|
201800
202812
|
};
|
|
@@ -201837,6 +202849,9 @@ export type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
|
201837
202849
|
export type QueryLoom_VideoArgs = {
|
|
201838
202850
|
id: Scalars['ID']['input'];
|
|
201839
202851
|
};
|
|
202852
|
+
export type QueryLoom_VideoDownloadUrlArgs = {
|
|
202853
|
+
id: Scalars['ID']['input'];
|
|
202854
|
+
};
|
|
201840
202855
|
export type QueryLoom_VideoDurationsArgs = {
|
|
201841
202856
|
id: Scalars['ID']['input'];
|
|
201842
202857
|
};
|
|
@@ -201905,6 +202920,28 @@ export type QueryMedia_ItemsByDescriptorArgs = {
|
|
|
201905
202920
|
cloudId: Scalars['String']['input'];
|
|
201906
202921
|
input: MediaItemsInput;
|
|
201907
202922
|
};
|
|
202923
|
+
export type QueryMercury_AskArgs = {
|
|
202924
|
+
id: Scalars['ID']['input'];
|
|
202925
|
+
};
|
|
202926
|
+
export type QueryMercury_AskCountByStatusForFocusAreaArgs = {
|
|
202927
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
202928
|
+
};
|
|
202929
|
+
export type QueryMercury_AskLinksByIdsArgs = {
|
|
202930
|
+
ids: Array<Scalars['ID']['input']>;
|
|
202931
|
+
};
|
|
202932
|
+
export type QueryMercury_AsksArgs = {
|
|
202933
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
202934
|
+
cloudId: Scalars['ID']['input'];
|
|
202935
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
202936
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
202937
|
+
};
|
|
202938
|
+
export type QueryMercury_AsksByIdsArgs = {
|
|
202939
|
+
ids: Array<Scalars['ID']['input']>;
|
|
202940
|
+
};
|
|
202941
|
+
export type QueryMercury_StalledAskCountForFocusAreaArgs = {
|
|
202942
|
+
cutoffDate: Scalars['String']['input'];
|
|
202943
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
202944
|
+
};
|
|
201908
202945
|
export type QueryMyMarketplaceAppsArgs = {
|
|
201909
202946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
201910
202947
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -207759,9 +208796,14 @@ export type SearchSalesforceFilters = {
|
|
|
207759
208796
|
campaignStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207760
208797
|
caseStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207761
208798
|
closeDate?: InputMaybe<Scalars['String']['input']>;
|
|
208799
|
+
eventTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207762
208800
|
isClosed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208801
|
+
knowledgeArticlePublishStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
208802
|
+
leadStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207763
208803
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207764
208804
|
stage?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
208805
|
+
taskStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
208806
|
+
taskTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207765
208807
|
};
|
|
207766
208808
|
export type SearchScrapingMetadata = {
|
|
207767
208809
|
__typename?: 'SearchScrapingMetadata';
|
|
@@ -225601,6 +226643,7 @@ export type ShepherdAlertQueries = {
|
|
|
225601
226643
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
225602
226644
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
225603
226645
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
226646
|
+
byContentAri?: Maybe<ShepherdAlertsResult>;
|
|
225604
226647
|
byTypeAndStatus?: Maybe<ShepherdAlertsResult>;
|
|
225605
226648
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
225606
226649
|
};
|
|
@@ -225617,6 +226660,12 @@ export type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
|
225617
226660
|
export type ShepherdAlertQueriesByAriArgs = {
|
|
225618
226661
|
id: Scalars['ID']['input'];
|
|
225619
226662
|
};
|
|
226663
|
+
export type ShepherdAlertQueriesByContentAriArgs = {
|
|
226664
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
226665
|
+
contentAri: Scalars['String']['input'];
|
|
226666
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
226667
|
+
workspaceId: Scalars['ID']['input'];
|
|
226668
|
+
};
|
|
225620
226669
|
export type ShepherdAlertQueriesByTypeAndStatusArgs = {
|
|
225621
226670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
225622
226671
|
alertStatuses: Array<Scalars['String']['input']>;
|
|
@@ -227208,6 +228257,10 @@ export type SmartsCollaborator = {
|
|
|
227208
228257
|
__typename?: 'SmartsCollaborator';
|
|
227209
228258
|
userId: Scalars['ID']['output'];
|
|
227210
228259
|
};
|
|
228260
|
+
export type SmartsCollaboratorV3 = {
|
|
228261
|
+
__typename?: 'SmartsCollaboratorV3';
|
|
228262
|
+
userId: Scalars['ID']['output'];
|
|
228263
|
+
};
|
|
227211
228264
|
export type SmartsConfluenceContext = {
|
|
227212
228265
|
__typename?: 'SmartsConfluenceContext';
|
|
227213
228266
|
id: Scalars['ID']['output'];
|
|
@@ -227315,6 +228368,13 @@ export type SmartsQueryApiRecommendedObjectArgs = {
|
|
|
227315
228368
|
export type SmartsQueryApiRecommendedUserArgs = {
|
|
227316
228369
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
227317
228370
|
};
|
|
228371
|
+
export type SmartsQueryApiV3 = {
|
|
228372
|
+
__typename?: 'SmartsQueryApiV3';
|
|
228373
|
+
recommendedContainerV3?: Maybe<Array<Maybe<SmartsRecommendedContainerV3>>>;
|
|
228374
|
+
};
|
|
228375
|
+
export type SmartsQueryApiV3RecommendedContainerV3Args = {
|
|
228376
|
+
recommendationsQuery: SmartsRecommendedContainerV3Query;
|
|
228377
|
+
};
|
|
227318
228378
|
export type SmartsRecommendationContext = {
|
|
227319
228379
|
__typename?: 'SmartsRecommendationContext';
|
|
227320
228380
|
confluence?: Maybe<SmartsConfluenceContext>;
|
|
@@ -227360,6 +228420,42 @@ export type SmartsRecommendedContainerV2 = {
|
|
|
227360
228420
|
id: Scalars['ID']['output'];
|
|
227361
228421
|
score?: Maybe<Scalars['Float']['output']>;
|
|
227362
228422
|
};
|
|
228423
|
+
export type SmartsRecommendedContainerV3 = {
|
|
228424
|
+
__typename?: 'SmartsRecommendedContainerV3';
|
|
228425
|
+
collaboratorScore?: Maybe<Scalars['Float']['output']>;
|
|
228426
|
+
collaborators?: Maybe<Array<SmartsCollaboratorV3>>;
|
|
228427
|
+
container?: Maybe<SmartsRecommendedContainerData>;
|
|
228428
|
+
id: Scalars['ID']['output'];
|
|
228429
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
228430
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
228431
|
+
};
|
|
228432
|
+
export type SmartsRecommendedContainerV3Context = {
|
|
228433
|
+
additionalContextList?: InputMaybe<Array<SmartsRecommendedContainerV3KeyValue>>;
|
|
228434
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
228435
|
+
excludeCollaboratorRecommendations?: InputMaybe<Scalars['Boolean']['input']>;
|
|
228436
|
+
objectId?: InputMaybe<Scalars['String']['input']>;
|
|
228437
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
228438
|
+
tenantId: Scalars['String']['input'];
|
|
228439
|
+
userId: Scalars['String']['input'];
|
|
228440
|
+
};
|
|
228441
|
+
export type SmartsRecommendedContainerV3KeyValue = {
|
|
228442
|
+
key: Scalars['String']['input'];
|
|
228443
|
+
value: Scalars['String']['input'];
|
|
228444
|
+
};
|
|
228445
|
+
export type SmartsRecommendedContainerV3ModelRequestParams = {
|
|
228446
|
+
caller: Scalars['String']['input'];
|
|
228447
|
+
experience: Scalars['String']['input'];
|
|
228448
|
+
featureServiceModel?: InputMaybe<Scalars['String']['input']>;
|
|
228449
|
+
};
|
|
228450
|
+
export type SmartsRecommendedContainerV3Query = {
|
|
228451
|
+
context: SmartsRecommendedContainerV3Context;
|
|
228452
|
+
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
228453
|
+
excludeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
228454
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
228455
|
+
modelRequestParams: SmartsRecommendedContainerV3ModelRequestParams;
|
|
228456
|
+
requestingUserId: Scalars['String']['input'];
|
|
228457
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
228458
|
+
};
|
|
227363
228459
|
export type SmartsRecommendedEntity = ConfluenceBlogPost | ConfluencePage | ExternalDocument | ExternalPullRequest | JiraIssue | TownsquareProject;
|
|
227364
228460
|
export type SmartsRecommendedFieldObject = {
|
|
227365
228461
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
@@ -234456,6 +235552,7 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
234456
235552
|
export type TownsquareGoalAppCapabilities = {
|
|
234457
235553
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
234458
235554
|
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
235555
|
+
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
234459
235556
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
234460
235557
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
234461
235558
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
@@ -235162,6 +236259,15 @@ export type TownsquareGoalsDeleteLearningPayload = {
|
|
|
235162
236259
|
errors?: Maybe<Array<MutationError>>;
|
|
235163
236260
|
success: Scalars['Boolean']['output'];
|
|
235164
236261
|
};
|
|
236262
|
+
export type TownsquareGoalsDeleteMetricValueInput = {
|
|
236263
|
+
metricValueId: Scalars['ID']['input'];
|
|
236264
|
+
};
|
|
236265
|
+
export type TownsquareGoalsDeleteMetricValuePayload = {
|
|
236266
|
+
__typename?: 'TownsquareGoalsDeleteMetricValuePayload';
|
|
236267
|
+
deletedMetricValueId?: Maybe<Scalars['ID']['output']>;
|
|
236268
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236269
|
+
success: Scalars['Boolean']['output'];
|
|
236270
|
+
};
|
|
235165
236271
|
export type TownsquareGoalsDeleteProjectLinkInput = {
|
|
235166
236272
|
goalId: Scalars['ID']['input'];
|
|
235167
236273
|
projectId: Scalars['ID']['input'];
|
|
@@ -235872,6 +236978,7 @@ export type TownsquareMetricUpdateInput = {
|
|
|
235872
236978
|
};
|
|
235873
236979
|
export type TownsquareMetricValue = Node & {
|
|
235874
236980
|
__typename?: 'TownsquareMetricValue';
|
|
236981
|
+
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
235875
236982
|
id: Scalars['ID']['output'];
|
|
235876
236983
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
235877
236984
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -236247,6 +237354,7 @@ export declare enum TownsquareProjectAccessRoleInput {
|
|
|
236247
237354
|
export type TownsquareProjectAppCapabilities = {
|
|
236248
237355
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
236249
237356
|
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
237357
|
+
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
236250
237358
|
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
236251
237359
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
236252
237360
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
@@ -240598,6 +241706,7 @@ export type TrelloEditBoardWithAiPayload = Payload & {
|
|
|
240598
241706
|
__typename?: 'TrelloEditBoardWithAiPayload';
|
|
240599
241707
|
errors?: Maybe<Array<MutationError>>;
|
|
240600
241708
|
success: Scalars['Boolean']['output'];
|
|
241709
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
240601
241710
|
};
|
|
240602
241711
|
export type TrelloEditPlannerCalendarEventInput = {
|
|
240603
241712
|
event: TrelloEditPlannerCalendarEventOptions;
|