@forge/cli-shared 9.5.1-next.2 → 9.5.1-next.4
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 +16 -0
- package/out/graphql/graphql-types.d.ts +947 -62
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +214 -69
- package/package.json +2 -2
|
@@ -1408,6 +1408,7 @@ export type AvpAnalyticsMetricDefinition = {
|
|
|
1408
1408
|
filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
|
|
1409
1409
|
modelId?: Maybe<Scalars['ID']['output']>;
|
|
1410
1410
|
modelVersion?: Maybe<Scalars['String']['output']>;
|
|
1411
|
+
ratio?: Maybe<AvpAnalyticsRatioMetricDefinition>;
|
|
1411
1412
|
};
|
|
1412
1413
|
export type AvpAnalyticsMetricDefinitionInput = {
|
|
1413
1414
|
aggregationType?: InputMaybe<AvpAnalyticsAggregationType>;
|
|
@@ -1415,6 +1416,7 @@ export type AvpAnalyticsMetricDefinitionInput = {
|
|
|
1415
1416
|
filters?: InputMaybe<Array<AvpAnalyticsMetricFilterInput>>;
|
|
1416
1417
|
modelId?: InputMaybe<Scalars['ID']['input']>;
|
|
1417
1418
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1419
|
+
ratio?: InputMaybe<AvpAnalyticsRatioMetricDefinitionInput>;
|
|
1418
1420
|
};
|
|
1419
1421
|
export type AvpAnalyticsMetricEdge = {
|
|
1420
1422
|
__typename?: 'AVPAnalyticsMetricEdge';
|
|
@@ -1439,6 +1441,8 @@ export declare enum AvpAnalyticsMetricErrorField {
|
|
|
1439
1441
|
MetricName = "METRIC_NAME",
|
|
1440
1442
|
MetricVisualization = "METRIC_VISUALIZATION",
|
|
1441
1443
|
Model = "MODEL",
|
|
1444
|
+
RatioDenominator = "RATIO_DENOMINATOR",
|
|
1445
|
+
RatioNumerator = "RATIO_NUMERATOR",
|
|
1442
1446
|
SegmentBy = "SEGMENT_BY",
|
|
1443
1447
|
VisualizationFilter = "VISUALIZATION_FILTER"
|
|
1444
1448
|
}
|
|
@@ -1458,6 +1462,10 @@ export declare enum AvpAnalyticsMetricErrorType {
|
|
|
1458
1462
|
MetricNameRequired = "METRIC_NAME_REQUIRED",
|
|
1459
1463
|
MetricVisualizationRequired = "METRIC_VISUALIZATION_REQUIRED",
|
|
1460
1464
|
ModelRequired = "MODEL_REQUIRED",
|
|
1465
|
+
RatioAggregationNotAllowed = "RATIO_AGGREGATION_NOT_ALLOWED",
|
|
1466
|
+
RatioColumnNotAllowed = "RATIO_COLUMN_NOT_ALLOWED",
|
|
1467
|
+
RatioComponentInvalid = "RATIO_COMPONENT_INVALID",
|
|
1468
|
+
RatioComponentRequired = "RATIO_COMPONENT_REQUIRED",
|
|
1461
1469
|
SegmentByDuplicateColumn = "SEGMENT_BY_DUPLICATE_COLUMN",
|
|
1462
1470
|
SegmentByNotSupported = "SEGMENT_BY_NOT_SUPPORTED",
|
|
1463
1471
|
SegmentByTooManyColumns = "SEGMENT_BY_TOO_MANY_COLUMNS",
|
|
@@ -1712,6 +1720,15 @@ export type AvpAnalyticsRangeValueInput = {
|
|
|
1712
1720
|
toExpression?: InputMaybe<Scalars['String']['input']>;
|
|
1713
1721
|
toValue?: InputMaybe<Scalars['String']['input']>;
|
|
1714
1722
|
};
|
|
1723
|
+
export type AvpAnalyticsRatioMetricDefinition = {
|
|
1724
|
+
__typename?: 'AVPAnalyticsRatioMetricDefinition';
|
|
1725
|
+
denominatorMetricId?: Maybe<Scalars['ID']['output']>;
|
|
1726
|
+
numeratorMetricId?: Maybe<Scalars['ID']['output']>;
|
|
1727
|
+
};
|
|
1728
|
+
export type AvpAnalyticsRatioMetricDefinitionInput = {
|
|
1729
|
+
denominatorMetricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1730
|
+
numeratorMetricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1731
|
+
};
|
|
1715
1732
|
export declare enum AvpAnalyticsResourcePermissionType {
|
|
1716
1733
|
Closed = "CLOSED",
|
|
1717
1734
|
Read = "READ",
|
|
@@ -4021,30 +4038,6 @@ export type AdminActivateUserInput = {
|
|
|
4021
4038
|
directoryId: Scalars['String']['input'];
|
|
4022
4039
|
orgId: Scalars['String']['input'];
|
|
4023
4040
|
};
|
|
4024
|
-
export type AdminActivationError = {
|
|
4025
|
-
__typename?: 'AdminActivationError';
|
|
4026
|
-
code: AdminActivationErrorCode;
|
|
4027
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
4028
|
-
};
|
|
4029
|
-
export declare enum AdminActivationErrorCode {
|
|
4030
|
-
Payment = "PAYMENT",
|
|
4031
|
-
Permission = "PERMISSION",
|
|
4032
|
-
ProvisioningFailed = "PROVISIONING_FAILED",
|
|
4033
|
-
Recaptcha = "RECAPTCHA",
|
|
4034
|
-
TimedOut = "TIMED_OUT",
|
|
4035
|
-
Unknown = "UNKNOWN"
|
|
4036
|
-
}
|
|
4037
|
-
export declare enum AdminActivationStatus {
|
|
4038
|
-
Completed = "COMPLETED",
|
|
4039
|
-
Failed = "FAILED",
|
|
4040
|
-
InProgress = "IN_PROGRESS"
|
|
4041
|
-
}
|
|
4042
|
-
export type AdminActivationStatusResponse = {
|
|
4043
|
-
__typename?: 'AdminActivationStatusResponse';
|
|
4044
|
-
error?: Maybe<AdminActivationError>;
|
|
4045
|
-
redirectUrl?: Maybe<Scalars['String']['output']>;
|
|
4046
|
-
status: AdminActivationStatus;
|
|
4047
|
-
};
|
|
4048
4041
|
export type AdminActiveUserResponsePayload = AdminPayload & {
|
|
4049
4042
|
__typename?: 'AdminActiveUserResponsePayload';
|
|
4050
4043
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
@@ -4115,6 +4108,52 @@ export type AdminApiTokenConfig = {
|
|
|
4115
4108
|
__typename?: 'AdminApiTokenConfig';
|
|
4116
4109
|
isApiTokenAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
4117
4110
|
};
|
|
4111
|
+
export type AdminAppActivationBlockedError = {
|
|
4112
|
+
__typename?: 'AdminAppActivationBlockedError';
|
|
4113
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4114
|
+
reason?: Maybe<AdminAppActivationBlockedReason>;
|
|
4115
|
+
};
|
|
4116
|
+
export declare enum AdminAppActivationBlockedReason {
|
|
4117
|
+
SiteBehindPayments = "SITE_BEHIND_PAYMENTS"
|
|
4118
|
+
}
|
|
4119
|
+
export type AdminAppActivationError = {
|
|
4120
|
+
__typename?: 'AdminAppActivationError';
|
|
4121
|
+
code: AdminAppActivationErrorCode;
|
|
4122
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4123
|
+
};
|
|
4124
|
+
export declare enum AdminAppActivationErrorCode {
|
|
4125
|
+
Payment = "PAYMENT",
|
|
4126
|
+
Permission = "PERMISSION",
|
|
4127
|
+
ProvisioningFailed = "PROVISIONING_FAILED",
|
|
4128
|
+
Recaptcha = "RECAPTCHA",
|
|
4129
|
+
TimedOut = "TIMED_OUT",
|
|
4130
|
+
Unknown = "UNKNOWN"
|
|
4131
|
+
}
|
|
4132
|
+
export type AdminAppActivationPreviewInput = {
|
|
4133
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
4134
|
+
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
4135
|
+
orgId: Scalars['ID']['input'];
|
|
4136
|
+
productKey: Scalars['String']['input'];
|
|
4137
|
+
};
|
|
4138
|
+
export type AdminAppActivationPreviewResponse = {
|
|
4139
|
+
__typename?: 'AdminAppActivationPreviewResponse';
|
|
4140
|
+
error?: Maybe<AdminAppActivationBlockedError>;
|
|
4141
|
+
hasPaymentDetails?: Maybe<Scalars['Boolean']['output']>;
|
|
4142
|
+
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
4143
|
+
offering?: Maybe<CcpOffering>;
|
|
4144
|
+
success: Scalars['Boolean']['output'];
|
|
4145
|
+
};
|
|
4146
|
+
export declare enum AdminAppActivationStatus {
|
|
4147
|
+
Completed = "COMPLETED",
|
|
4148
|
+
Failed = "FAILED",
|
|
4149
|
+
InProgress = "IN_PROGRESS"
|
|
4150
|
+
}
|
|
4151
|
+
export type AdminAppActivationStatusResponse = {
|
|
4152
|
+
__typename?: 'AdminAppActivationStatusResponse';
|
|
4153
|
+
error?: Maybe<AdminAppActivationError>;
|
|
4154
|
+
redirectUrl?: Maybe<Scalars['String']['output']>;
|
|
4155
|
+
status: AdminAppActivationStatus;
|
|
4156
|
+
};
|
|
4118
4157
|
export type AdminAppFilter = {
|
|
4119
4158
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
4120
4159
|
parentType?: InputMaybe<AdminAppParentType>;
|
|
@@ -4187,6 +4226,7 @@ export type AdminApplicationErrorExtension = AdminErrorExtension & MutationError
|
|
|
4187
4226
|
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
4188
4227
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
4189
4228
|
id?: Maybe<Scalars['String']['output']>;
|
|
4229
|
+
paymentMethodsPath?: Maybe<Scalars['String']['output']>;
|
|
4190
4230
|
status?: Maybe<Scalars['String']['output']>;
|
|
4191
4231
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
4192
4232
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -5229,6 +5269,8 @@ export type AdminOrgPolicyEdge = {
|
|
|
5229
5269
|
};
|
|
5230
5270
|
export type AdminOrgUnitsSettings = {
|
|
5231
5271
|
__typename?: 'AdminOrgUnitsSettings';
|
|
5272
|
+
boundaryEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
5273
|
+
endUsersLaunched?: Maybe<Scalars['Boolean']['output']>;
|
|
5232
5274
|
unitsCreateAvailable: Scalars['Boolean']['output'];
|
|
5233
5275
|
unitsEligibilityState: AdminUnitsEligibilityState;
|
|
5234
5276
|
};
|
|
@@ -6223,6 +6265,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6223
6265
|
agent?: Maybe<User>;
|
|
6224
6266
|
agentAccountId?: Maybe<Scalars['String']['output']>;
|
|
6225
6267
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
6268
|
+
associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
|
|
6226
6269
|
author?: Maybe<User>;
|
|
6227
6270
|
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
6228
6271
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -6440,6 +6483,7 @@ export type AgentStudioAgentPermissions = {
|
|
|
6440
6483
|
export type AgentStudioAgentQueryInput = {
|
|
6441
6484
|
includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6442
6485
|
includeJiraCodingAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6486
|
+
includeRovoChatAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6443
6487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6444
6488
|
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6445
6489
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6646,6 +6690,7 @@ export type AgentStudioAssistantScenarioListArgs = {
|
|
|
6646
6690
|
};
|
|
6647
6691
|
export type AgentStudioAssistantTriggersArgs = {
|
|
6648
6692
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6693
|
+
automationRuleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6649
6694
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6650
6695
|
};
|
|
6651
6696
|
export type AgentStudioAssistantConversation = {
|
|
@@ -7172,7 +7217,6 @@ export type AgentStudioEvaluationResult = {
|
|
|
7172
7217
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
7173
7218
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
7174
7219
|
judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
|
|
7175
|
-
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
7176
7220
|
judgeReasoning?: Maybe<Scalars['String']['output']>;
|
|
7177
7221
|
responseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
7178
7222
|
runId: Scalars['ID']['output'];
|
|
@@ -7627,7 +7671,6 @@ export type AgentStudioScenarioValidateOutput = {
|
|
|
7627
7671
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
7628
7672
|
isDefault: Scalars['Boolean']['output'];
|
|
7629
7673
|
isValid: AgentStudioScenarioValidation;
|
|
7630
|
-
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
7631
7674
|
name: Scalars['String']['output'];
|
|
7632
7675
|
};
|
|
7633
7676
|
export type AgentStudioScenarioValidation = {
|
|
@@ -8170,9 +8213,9 @@ export type AgentStudioUpdateDatasetItemPayload = Payload & {
|
|
|
8170
8213
|
};
|
|
8171
8214
|
export type AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload = Payload & {
|
|
8172
8215
|
__typename?: 'AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload';
|
|
8216
|
+
article?: Maybe<AgentStudioKnowledgeGapSuggestionArticle>;
|
|
8173
8217
|
errors?: Maybe<Array<MutationError>>;
|
|
8174
8218
|
success: Scalars['Boolean']['output'];
|
|
8175
|
-
suggestionArticle?: Maybe<AgentStudioKnowledgeGapSuggestionArticle>;
|
|
8176
8219
|
};
|
|
8177
8220
|
export type AgentStudioUpdateScenarioInput = {
|
|
8178
8221
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
@@ -8214,11 +8257,6 @@ export type AgentStudioUpgradeSchemaPayload = Payload & {
|
|
|
8214
8257
|
errors?: Maybe<Array<MutationError>>;
|
|
8215
8258
|
success: Scalars['Boolean']['output'];
|
|
8216
8259
|
};
|
|
8217
|
-
export type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
8218
|
-
datasetName: Scalars['String']['input'];
|
|
8219
|
-
file: Scalars['Upload']['input'];
|
|
8220
|
-
projectId: Scalars['String']['input'];
|
|
8221
|
-
};
|
|
8222
8260
|
export declare enum AgentStudioUsePermissionMode {
|
|
8223
8261
|
Open = "OPEN",
|
|
8224
8262
|
Restricted = "RESTRICTED"
|
|
@@ -21760,9 +21798,11 @@ export type CloudifyProjectAri = {
|
|
|
21760
21798
|
};
|
|
21761
21799
|
export type CloudifyRawCustomizationRecommendation = {
|
|
21762
21800
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
21801
|
+
body: Scalars['String']['output'];
|
|
21763
21802
|
content: Scalars['String']['output'];
|
|
21764
21803
|
customizationIds: Array<Scalars['ID']['output']>;
|
|
21765
21804
|
id: Scalars['ID']['output'];
|
|
21805
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
21766
21806
|
type: CloudifyRawCustomizationRecommendationType;
|
|
21767
21807
|
};
|
|
21768
21808
|
export declare enum CloudifyRawCustomizationRecommendationType {
|
|
@@ -26699,10 +26739,10 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26699
26739
|
};
|
|
26700
26740
|
export type CommerceExpUserInfo = {
|
|
26701
26741
|
__typename?: 'CommerceExpUserInfo';
|
|
26702
|
-
accountId
|
|
26742
|
+
accountId: Scalars['ID']['output'];
|
|
26703
26743
|
email?: Maybe<Scalars['String']['output']>;
|
|
26704
|
-
id
|
|
26705
|
-
name
|
|
26744
|
+
id: Scalars['ID']['output'];
|
|
26745
|
+
name: Scalars['String']['output'];
|
|
26706
26746
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26707
26747
|
};
|
|
26708
26748
|
export type CommerceExpUserPermission = {
|
|
@@ -38419,6 +38459,12 @@ export type ConfluenceSpaceReportPayload = Payload & {
|
|
|
38419
38459
|
success: Scalars['Boolean']['output'];
|
|
38420
38460
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
38421
38461
|
};
|
|
38462
|
+
export type ConfluenceSpaceRoleAgentPrincipal = SpaceRolePrincipal & {
|
|
38463
|
+
__typename?: 'ConfluenceSpaceRoleAgentPrincipal';
|
|
38464
|
+
displayName: Scalars['String']['output'];
|
|
38465
|
+
principalId: Scalars['ID']['output'];
|
|
38466
|
+
profilePicture?: Maybe<Icon>;
|
|
38467
|
+
};
|
|
38422
38468
|
export type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
38423
38469
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
38424
38470
|
displayName: Scalars['String']['output'];
|
|
@@ -39326,6 +39372,16 @@ export type ConfluenceUpdateModeChangeAsyncPayload = Payload & {
|
|
|
39326
39372
|
longTaskId?: Maybe<Scalars['ID']['output']>;
|
|
39327
39373
|
success: Scalars['Boolean']['output'];
|
|
39328
39374
|
};
|
|
39375
|
+
export type ConfluenceUpdateModeChangeAsyncStatus = {
|
|
39376
|
+
__typename?: 'ConfluenceUpdateModeChangeAsyncStatus';
|
|
39377
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
39378
|
+
status: ConfluenceUpdateModeChangeAsyncTaskState;
|
|
39379
|
+
};
|
|
39380
|
+
export declare enum ConfluenceUpdateModeChangeAsyncTaskState {
|
|
39381
|
+
Failed = "FAILED",
|
|
39382
|
+
InProgress = "IN_PROGRESS",
|
|
39383
|
+
Succeeded = "SUCCEEDED"
|
|
39384
|
+
}
|
|
39329
39385
|
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
39330
39386
|
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
39331
39387
|
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
@@ -39844,6 +39900,7 @@ export type ConfluenceUserSetupCountryData = {
|
|
|
39844
39900
|
__typename?: 'ConfluenceUserSetupCountryData';
|
|
39845
39901
|
cohorts: Array<ConfluenceUserSetupCountryCohort>;
|
|
39846
39902
|
countryCode: Scalars['String']['output'];
|
|
39903
|
+
countryName?: Maybe<Scalars['String']['output']>;
|
|
39847
39904
|
pageLoadCount: Scalars['Long']['output'];
|
|
39848
39905
|
};
|
|
39849
39906
|
export declare enum ConfluenceUserSetupMetric {
|
|
@@ -41597,7 +41654,9 @@ export type CplsAddAllContributorScopeAssociationsFromWorkViewInput = {
|
|
|
41597
41654
|
};
|
|
41598
41655
|
export type CplsAddAllContributorScopeAssociationsFromWorkViewPayload = Payload & {
|
|
41599
41656
|
__typename?: 'CplsAddAllContributorScopeAssociationsFromWorkViewPayload';
|
|
41657
|
+
contributors?: Maybe<Array<CplsContributor>>;
|
|
41600
41658
|
errors?: Maybe<Array<MutationError>>;
|
|
41659
|
+
numberOfWorksToAddToWorkView?: Maybe<Scalars['Int']['output']>;
|
|
41601
41660
|
success: Scalars['Boolean']['output'];
|
|
41602
41661
|
};
|
|
41603
41662
|
export type CplsAddAllWorkScopeAssociationsFromPeopleViewInput = {
|
|
@@ -41607,7 +41666,9 @@ export type CplsAddAllWorkScopeAssociationsFromPeopleViewInput = {
|
|
|
41607
41666
|
export type CplsAddAllWorkScopeAssociationsFromPeopleViewPayload = Payload & {
|
|
41608
41667
|
__typename?: 'CplsAddAllWorkScopeAssociationsFromPeopleViewPayload';
|
|
41609
41668
|
errors?: Maybe<Array<MutationError>>;
|
|
41669
|
+
numberOfContributorsToAddToPeopleView?: Maybe<Scalars['Int']['output']>;
|
|
41610
41670
|
success: Scalars['Boolean']['output'];
|
|
41671
|
+
works?: Maybe<Array<CplsWork>>;
|
|
41611
41672
|
};
|
|
41612
41673
|
export type CplsAddContributionInput = {
|
|
41613
41674
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -43524,6 +43585,7 @@ export type CsmAiAgentVersion = {
|
|
|
43524
43585
|
__typename?: 'CsmAiAgentVersion';
|
|
43525
43586
|
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
43526
43587
|
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
43588
|
+
associatedSkills?: Maybe<Array<CsmAiAssociatedSkillResult>>;
|
|
43527
43589
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
43528
43590
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
43529
43591
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
@@ -43566,6 +43628,16 @@ export type CsmAiApiOperationInput = {
|
|
|
43566
43628
|
requestUrl: Scalars['String']['input'];
|
|
43567
43629
|
server: Scalars['String']['input'];
|
|
43568
43630
|
};
|
|
43631
|
+
export type CsmAiAssociatedSkill = {
|
|
43632
|
+
__typename?: 'CsmAiAssociatedSkill';
|
|
43633
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43634
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
43635
|
+
enabled: Scalars['Boolean']['output'];
|
|
43636
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
43637
|
+
skillId: Scalars['String']['output'];
|
|
43638
|
+
tools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
43639
|
+
};
|
|
43640
|
+
export type CsmAiAssociatedSkillResult = CsmAiAssociatedSkill | QueryError;
|
|
43569
43641
|
export type CsmAiAuthentication = {
|
|
43570
43642
|
__typename?: 'CsmAiAuthentication';
|
|
43571
43643
|
type?: Maybe<CsmAiAuthenticationType>;
|
|
@@ -50608,10 +50680,16 @@ export type DlpFalsePositivesListResponse = {
|
|
|
50608
50680
|
falsePositives: Array<DlpFalsePositive>;
|
|
50609
50681
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50610
50682
|
};
|
|
50683
|
+
export type DlpFindingDimensionCount = {
|
|
50684
|
+
__typename?: 'DlpFindingDimensionCount';
|
|
50685
|
+
count: Scalars['Int']['output'];
|
|
50686
|
+
value: Scalars['String']['output'];
|
|
50687
|
+
};
|
|
50611
50688
|
export type DlpFindingOccurrence = {
|
|
50612
50689
|
__typename?: 'DlpFindingOccurrence';
|
|
50613
50690
|
bootstrapId?: Maybe<Scalars['String']['output']>;
|
|
50614
50691
|
category?: Maybe<Scalars['String']['output']>;
|
|
50692
|
+
confidenceBand?: Maybe<DlpConfidenceBand>;
|
|
50615
50693
|
contentAudit?: Maybe<Scalars['String']['output']>;
|
|
50616
50694
|
contentHash?: Maybe<Scalars['String']['output']>;
|
|
50617
50695
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
@@ -50655,6 +50733,13 @@ export type DlpFindingsListResponse = {
|
|
|
50655
50733
|
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
50656
50734
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50657
50735
|
};
|
|
50736
|
+
export type DlpFindingsSummaryResponse = {
|
|
50737
|
+
__typename?: 'DlpFindingsSummaryResponse';
|
|
50738
|
+
byApp: Array<DlpFindingDimensionCount>;
|
|
50739
|
+
byCategory: Array<DlpFindingDimensionCount>;
|
|
50740
|
+
byConfidence: Array<DlpFindingDimensionCount>;
|
|
50741
|
+
totalFindings?: Maybe<Scalars['Int']['output']>;
|
|
50742
|
+
};
|
|
50658
50743
|
export declare enum DlpMappingStatus {
|
|
50659
50744
|
Draft = "DRAFT",
|
|
50660
50745
|
Published = "PUBLISHED"
|
|
@@ -51104,6 +51189,7 @@ export type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
|
51104
51189
|
export type EcosystemMutationCreateRollingReleaseArgs = {
|
|
51105
51190
|
appId: Scalars['ID']['input'];
|
|
51106
51191
|
environmentId: Scalars['ID']['input'];
|
|
51192
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51107
51193
|
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
51108
51194
|
};
|
|
51109
51195
|
export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
@@ -57006,6 +57092,7 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
57006
57092
|
};
|
|
57007
57093
|
export type GraphInferenceGraphclawInferOptionV3 = {
|
|
57008
57094
|
__typename?: 'GraphInferenceGraphclawInferOptionV3';
|
|
57095
|
+
compatibleSources: Array<Scalars['String']['output']>;
|
|
57009
57096
|
compatibleTargets: Array<Scalars['String']['output']>;
|
|
57010
57097
|
enabled: Scalars['Boolean']['output'];
|
|
57011
57098
|
graphAvailable: Scalars['Boolean']['output'];
|
|
@@ -58590,10 +58677,12 @@ export type GraphIntegrationSkillConsumerVisibilityInput = {
|
|
|
58590
58677
|
optIn?: InputMaybe<Array<GraphIntegrationSkillConsumer>>;
|
|
58591
58678
|
};
|
|
58592
58679
|
export declare enum GraphIntegrationSkillDimension {
|
|
58680
|
+
ForgeApps = "FORGE_APPS",
|
|
58593
58681
|
Products = "PRODUCTS"
|
|
58594
58682
|
}
|
|
58595
58683
|
export type GraphIntegrationSkillDimensionItem = {
|
|
58596
58684
|
displayName: Scalars['String']['output'];
|
|
58685
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58597
58686
|
id: Scalars['String']['output'];
|
|
58598
58687
|
};
|
|
58599
58688
|
export type GraphIntegrationSkillDimensionMetadata = {
|
|
@@ -58620,6 +58709,12 @@ export type GraphIntegrationSkillFile = {
|
|
|
58620
58709
|
fileId: Scalars['String']['output'];
|
|
58621
58710
|
fileSize: Scalars['Int']['output'];
|
|
58622
58711
|
};
|
|
58712
|
+
export type GraphIntegrationSkillForgeAppItem = GraphIntegrationSkillDimensionItem & {
|
|
58713
|
+
__typename?: 'GraphIntegrationSkillForgeAppItem';
|
|
58714
|
+
displayName: Scalars['String']['output'];
|
|
58715
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58716
|
+
id: Scalars['String']['output'];
|
|
58717
|
+
};
|
|
58623
58718
|
export type GraphIntegrationSkillItem = {
|
|
58624
58719
|
__typename?: 'GraphIntegrationSkillItem';
|
|
58625
58720
|
description: Scalars['String']['output'];
|
|
@@ -80214,6 +80309,48 @@ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
|
|
|
80214
80309
|
export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
|
|
80215
80310
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80216
80311
|
};
|
|
80312
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput {
|
|
80313
|
+
Major = "MAJOR",
|
|
80314
|
+
Milestone = "MILESTONE",
|
|
80315
|
+
Minor = "MINOR",
|
|
80316
|
+
Notable = "NOTABLE",
|
|
80317
|
+
NotSet = "NOT_SET"
|
|
80318
|
+
}
|
|
80319
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput {
|
|
80320
|
+
Adoption = "ADOPTION",
|
|
80321
|
+
ArtifactReady = "ARTIFACT_READY",
|
|
80322
|
+
BlockerCleared = "BLOCKER_CLEARED",
|
|
80323
|
+
CustomerWin = "CUSTOMER_WIN",
|
|
80324
|
+
ExternalRecognition = "EXTERNAL_RECOGNITION",
|
|
80325
|
+
MetricHit = "METRIC_HIT",
|
|
80326
|
+
MilestoneShipped = "MILESTONE_SHIPPED",
|
|
80327
|
+
NotSet = "NOT_SET",
|
|
80328
|
+
Other = "OTHER",
|
|
80329
|
+
PhaseUnlocked = "PHASE_UNLOCKED",
|
|
80330
|
+
RolloutProgressed = "ROLLOUT_PROGRESSED",
|
|
80331
|
+
TeamWin = "TEAM_WIN"
|
|
80332
|
+
}
|
|
80333
|
+
export type GraphStoreInferredHighlightNodeMetadata = {
|
|
80334
|
+
__typename?: 'GraphStoreInferredHighlightNodeMetadata';
|
|
80335
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80336
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80337
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80338
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80339
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80340
|
+
provenance?: Maybe<GraphStoreInferredHighlightNodeProvenanceOutput>;
|
|
80341
|
+
severityLevel?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput>;
|
|
80342
|
+
subtype?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput>;
|
|
80343
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80344
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80345
|
+
};
|
|
80346
|
+
export type GraphStoreInferredHighlightNodeProvenanceOutput = {
|
|
80347
|
+
__typename?: 'GraphStoreInferredHighlightNodeProvenanceOutput';
|
|
80348
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80349
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80350
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80351
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80352
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80353
|
+
};
|
|
80217
80354
|
export type GraphStoreInferredProjectHasRelatedEntitySortInput = {
|
|
80218
80355
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80219
80356
|
};
|
|
@@ -80236,6 +80373,46 @@ export type GraphStoreInferredProjectNodeMetadata = {
|
|
|
80236
80373
|
summary?: Maybe<Scalars['String']['output']>;
|
|
80237
80374
|
title?: Maybe<Scalars['String']['output']>;
|
|
80238
80375
|
};
|
|
80376
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
|
|
80377
|
+
Critical = "CRITICAL",
|
|
80378
|
+
High = "HIGH",
|
|
80379
|
+
Low = "LOW",
|
|
80380
|
+
Medium = "MEDIUM",
|
|
80381
|
+
NotSet = "NOT_SET"
|
|
80382
|
+
}
|
|
80383
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskSubtypeOutput {
|
|
80384
|
+
BugPattern = "BUG_PATTERN",
|
|
80385
|
+
Capacity = "CAPACITY",
|
|
80386
|
+
DecisionStalled = "DECISION_STALLED",
|
|
80387
|
+
DeliveryBlocker = "DELIVERY_BLOCKER",
|
|
80388
|
+
DesignEngDiverging = "DESIGN_ENG_DIVERGING",
|
|
80389
|
+
ExternalDependency = "EXTERNAL_DEPENDENCY",
|
|
80390
|
+
NotSet = "NOT_SET",
|
|
80391
|
+
Other = "OTHER",
|
|
80392
|
+
ProjectStalled = "PROJECT_STALLED",
|
|
80393
|
+
Quality = "QUALITY"
|
|
80394
|
+
}
|
|
80395
|
+
export type GraphStoreInferredRiskNodeMetadata = {
|
|
80396
|
+
__typename?: 'GraphStoreInferredRiskNodeMetadata';
|
|
80397
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80398
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80399
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80400
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80401
|
+
level?: Maybe<GraphStoreInferredRiskNodeInferredRiskLevelOutput>;
|
|
80402
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80403
|
+
provenance?: Maybe<GraphStoreInferredRiskNodeProvenanceOutput>;
|
|
80404
|
+
subtype?: Maybe<GraphStoreInferredRiskNodeInferredRiskSubtypeOutput>;
|
|
80405
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80406
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80407
|
+
};
|
|
80408
|
+
export type GraphStoreInferredRiskNodeProvenanceOutput = {
|
|
80409
|
+
__typename?: 'GraphStoreInferredRiskNodeProvenanceOutput';
|
|
80410
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80411
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80412
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80413
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80414
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80415
|
+
};
|
|
80239
80416
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
80240
80417
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80241
80418
|
};
|
|
@@ -81039,7 +81216,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
81039
81216
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
81040
81217
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
81041
81218
|
};
|
|
81042
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81219
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredHighlightNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredRiskNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81043
81220
|
export type GraphStoreNodeResponse = Node & {
|
|
81044
81221
|
__typename?: 'GraphStoreNodeResponse';
|
|
81045
81222
|
id: Scalars['ID']['output'];
|
|
@@ -123148,6 +123325,12 @@ export type GrowthUnifiedProfileViewSeries = {
|
|
|
123148
123325
|
date?: Maybe<Scalars['String']['output']>;
|
|
123149
123326
|
value?: Maybe<Scalars['Int']['output']>;
|
|
123150
123327
|
};
|
|
123328
|
+
export type GtmCustomer = {
|
|
123329
|
+
__typename?: 'GtmCustomer';
|
|
123330
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
123331
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
123332
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
123333
|
+
};
|
|
123151
123334
|
export type HamsAccountDetails = CommerceAccountDetails & {
|
|
123152
123335
|
__typename?: 'HamsAccountDetails';
|
|
123153
123336
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -123942,6 +124125,7 @@ export type HelpCenterPage = Node & {
|
|
|
123942
124125
|
name?: Maybe<HelpCenterPageName>;
|
|
123943
124126
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
123944
124127
|
pageType?: Maybe<HelpCenterPageType>;
|
|
124128
|
+
parents?: Maybe<Array<HelpCenterPageParentReference>>;
|
|
123945
124129
|
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
123946
124130
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
123947
124131
|
};
|
|
@@ -123952,6 +124136,7 @@ export type HelpCenterPageCreateInput = {
|
|
|
123952
124136
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123953
124137
|
name: Scalars['String']['input'];
|
|
123954
124138
|
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
124139
|
+
pageType?: InputMaybe<HelpCenterPageType>;
|
|
123955
124140
|
};
|
|
123956
124141
|
export type HelpCenterPageCreatePayload = Payload & {
|
|
123957
124142
|
__typename?: 'HelpCenterPageCreatePayload';
|
|
@@ -123987,6 +124172,15 @@ export type HelpCenterPageName = {
|
|
|
123987
124172
|
__typename?: 'HelpCenterPageName';
|
|
123988
124173
|
default: Scalars['String']['output'];
|
|
123989
124174
|
};
|
|
124175
|
+
export type HelpCenterPageParentReference = {
|
|
124176
|
+
__typename?: 'HelpCenterPageParentReference';
|
|
124177
|
+
id: Scalars['ID']['output'];
|
|
124178
|
+
name: Scalars['String']['output'];
|
|
124179
|
+
type: HelpCenterPageParentType;
|
|
124180
|
+
};
|
|
124181
|
+
export declare enum HelpCenterPageParentType {
|
|
124182
|
+
Folder = "FOLDER"
|
|
124183
|
+
}
|
|
123990
124184
|
export type HelpCenterPageQueryResult = HelpCenterPage | QueryError;
|
|
123991
124185
|
export type HelpCenterPageQueryResultConnection = {
|
|
123992
124186
|
__typename?: 'HelpCenterPageQueryResultConnection';
|
|
@@ -127520,6 +127714,7 @@ export type JiraAgentInSpace = {
|
|
|
127520
127714
|
sources: Array<JiraAgentInSpaceSource>;
|
|
127521
127715
|
spaceAri: Scalars['ID']['output'];
|
|
127522
127716
|
spaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
127717
|
+
spaceInstructionsV2?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
127523
127718
|
triggers?: Maybe<JiraAgentInSpaceTriggerConnection>;
|
|
127524
127719
|
};
|
|
127525
127720
|
export type JiraAgentInSpaceContextCuratedSourcesArgs = {
|
|
@@ -127746,6 +127941,23 @@ export declare enum JiraAgentSpaceInstructionScopeType {
|
|
|
127746
127941
|
Agent = "AGENT",
|
|
127747
127942
|
Space = "SPACE"
|
|
127748
127943
|
}
|
|
127944
|
+
export type JiraAgentSpaceInstructionV2 = Node & {
|
|
127945
|
+
__typename?: 'JiraAgentSpaceInstructionV2';
|
|
127946
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
127947
|
+
createdAt: Scalars['String']['output'];
|
|
127948
|
+
createdBy?: Maybe<User>;
|
|
127949
|
+
creatorAccountId: Scalars['ID']['output'];
|
|
127950
|
+
id: Scalars['ID']['output'];
|
|
127951
|
+
instructionAri: Scalars['ID']['output'];
|
|
127952
|
+
instructionId: Scalars['ID']['output'];
|
|
127953
|
+
prompt: Scalars['String']['output'];
|
|
127954
|
+
scopeType: JiraAgentSpaceInstructionScopeType;
|
|
127955
|
+
spaceAri: Scalars['ID']['output'];
|
|
127956
|
+
updatedAt: Scalars['String']['output'];
|
|
127957
|
+
updatedBy?: Maybe<User>;
|
|
127958
|
+
updaterAccountId: Scalars['ID']['output'];
|
|
127959
|
+
version: Scalars['String']['output'];
|
|
127960
|
+
};
|
|
127749
127961
|
export declare enum JiraAgentStateCategory {
|
|
127750
127962
|
Finished = "FINISHED",
|
|
127751
127963
|
NeedsInput = "NEEDS_INPUT",
|
|
@@ -129886,12 +130098,14 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
129886
130098
|
availableTransitionsForIssues?: Maybe<JiraTransitionConnection>;
|
|
129887
130099
|
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
129888
130100
|
board?: Maybe<JiraBoard>;
|
|
130101
|
+
canAddStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129889
130102
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
129890
130103
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
129891
130104
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
129892
130105
|
canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129893
130106
|
canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129894
130107
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
130108
|
+
canInlineAddStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129895
130109
|
canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129896
130110
|
canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129897
130111
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -133185,6 +133399,7 @@ export type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
|
133185
133399
|
globalScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133186
133400
|
id: Scalars['ID']['output'];
|
|
133187
133401
|
key?: Maybe<Scalars['String']['output']>;
|
|
133402
|
+
projectLimitsReport?: Maybe<JiraProjectLimitsReport>;
|
|
133188
133403
|
projectScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133189
133404
|
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
133190
133405
|
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136263,6 +136478,7 @@ export declare enum JiraGicFallbackReason {
|
|
|
136263
136478
|
}
|
|
136264
136479
|
export type JiraGenerateIssueAiSummaryInput = {
|
|
136265
136480
|
issueId: Scalars['ID']['input'];
|
|
136481
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
136266
136482
|
};
|
|
136267
136483
|
export type JiraGeneratedJqlInvalidError = {
|
|
136268
136484
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
@@ -136785,22 +137001,21 @@ export type JiraHydrateJqlInput = {
|
|
|
136785
137001
|
};
|
|
136786
137002
|
export type JiraIccActivityValue = {
|
|
136787
137003
|
__typename?: 'JiraIccActivityValue';
|
|
136788
|
-
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
136789
137004
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
136790
137005
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
136791
137006
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
136792
137007
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
136793
137008
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
136794
137009
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
137010
|
+
hypothesisTitle?: Maybe<Scalars['String']['output']>;
|
|
136795
137011
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
136796
|
-
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
136797
137012
|
pirIssueKey?: Maybe<Scalars['String']['output']>;
|
|
136798
137013
|
planName?: Maybe<Scalars['String']['output']>;
|
|
136799
137014
|
status?: Maybe<Scalars['String']['output']>;
|
|
136800
137015
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
136801
|
-
|
|
136802
|
-
|
|
136803
|
-
|
|
137016
|
+
statusPageName?: Maybe<Scalars['String']['output']>;
|
|
137017
|
+
statusPageUrl?: Maybe<Scalars['String']['output']>;
|
|
137018
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
136804
137019
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
136805
137020
|
triggerType?: Maybe<Scalars['String']['output']>;
|
|
136806
137021
|
updateMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -137055,6 +137270,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
137055
137270
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137056
137271
|
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
137057
137272
|
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137273
|
+
globalRiskAssessmentSettings?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
137058
137274
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
137059
137275
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
137060
137276
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -139571,6 +139787,7 @@ export type JiraIssueSearchViewConfigSettings = {
|
|
|
139571
139787
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
139572
139788
|
};
|
|
139573
139789
|
export type JiraIssueSearchViewContextInput = {
|
|
139790
|
+
childIssuesJql?: InputMaybe<Scalars['String']['input']>;
|
|
139574
139791
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
139575
139792
|
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
139576
139793
|
topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -141131,6 +141348,13 @@ export declare enum JiraJqlViewContext {
|
|
|
141131
141348
|
Jwm = "JWM",
|
|
141132
141349
|
ShadowRequest = "SHADOW_REQUEST"
|
|
141133
141350
|
}
|
|
141351
|
+
export type JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload = Payload & {
|
|
141352
|
+
__typename?: 'JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload';
|
|
141353
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141354
|
+
jsmAiRiskAssessmentNudgeDismissCount?: Maybe<Scalars['Int']['output']>;
|
|
141355
|
+
jsmAiRiskAssessmentNudgeLastDismissedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
141356
|
+
success: Scalars['Boolean']['output'];
|
|
141357
|
+
};
|
|
141134
141358
|
export type JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload = Payload & {
|
|
141135
141359
|
__typename?: 'JiraJsmIssueViewAIPanelForServiceDeskEnabledMutationPayload';
|
|
141136
141360
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -145875,6 +146099,18 @@ export type JiraProjectLevelSidebarRenamedMenuItemEdge = {
|
|
|
145875
146099
|
cursor: Scalars['String']['output'];
|
|
145876
146100
|
node?: Maybe<JiraProjectLevelSidebarRenamedMenuItem>;
|
|
145877
146101
|
};
|
|
146102
|
+
export type JiraProjectLimitsReport = {
|
|
146103
|
+
__typename?: 'JiraProjectLimitsReport';
|
|
146104
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
146105
|
+
projectsOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146106
|
+
projectsReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146107
|
+
projectsWithinLimit?: Maybe<Scalars['Long']['output']>;
|
|
146108
|
+
recommendedEntitiesPerProject?: Maybe<Scalars['Long']['output']>;
|
|
146109
|
+
schemesOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146110
|
+
schemesReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146111
|
+
totalProjects?: Maybe<Scalars['Long']['output']>;
|
|
146112
|
+
totalSchemes?: Maybe<Scalars['Long']['output']>;
|
|
146113
|
+
};
|
|
145878
146114
|
export declare enum JiraProjectListRightPanelState {
|
|
145879
146115
|
Closed = "CLOSED",
|
|
145880
146116
|
Open = "OPEN"
|
|
@@ -151893,9 +152129,13 @@ export type JiraSetBoardViewStatusColumnMappingInput = {
|
|
|
151893
152129
|
export type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
|
|
151894
152130
|
__typename?: 'JiraSetBoardViewStatusColumnMappingPayload';
|
|
151895
152131
|
boardView?: Maybe<JiraBoardView>;
|
|
152132
|
+
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
151896
152133
|
errors?: Maybe<Array<MutationError>>;
|
|
151897
152134
|
success: Scalars['Boolean']['output'];
|
|
151898
152135
|
};
|
|
152136
|
+
export type JiraSetBoardViewStatusColumnMappingPayloadContainerNavigationArgs = {
|
|
152137
|
+
input: JiraContainerNavigationQueryInput;
|
|
152138
|
+
};
|
|
151899
152139
|
export type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
|
|
151900
152140
|
name: Scalars['String']['input'];
|
|
151901
152141
|
statusId: Scalars['ID']['input'];
|
|
@@ -155176,6 +155416,12 @@ export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
|
|
|
155176
155416
|
instruction?: Maybe<JiraAgentSpaceInstruction>;
|
|
155177
155417
|
success: Scalars['Boolean']['output'];
|
|
155178
155418
|
};
|
|
155419
|
+
export type JiraUpsertAgentSpaceInstructionV2Payload = Payload & {
|
|
155420
|
+
__typename?: 'JiraUpsertAgentSpaceInstructionV2Payload';
|
|
155421
|
+
errors?: Maybe<Array<MutationError>>;
|
|
155422
|
+
instruction?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
155423
|
+
success: Scalars['Boolean']['output'];
|
|
155424
|
+
};
|
|
155179
155425
|
export type JiraUpsertIssueTypePayload = Payload & {
|
|
155180
155426
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
155181
155427
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -155360,6 +155606,8 @@ export type JiraUserPreferences = {
|
|
|
155360
155606
|
issueViewUWSTabPreference?: Maybe<JiraIssueViewUwsTabPreference>;
|
|
155361
155607
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
155362
155608
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
155609
|
+
jsmAiRiskAssessmentNudgeDismissCount?: Maybe<Scalars['Int']['output']>;
|
|
155610
|
+
jsmAiRiskAssessmentNudgeLastDismissedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
155363
155611
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
155364
155612
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
155365
155613
|
shouldShowFullIssueCreateModal?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -155430,6 +155678,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
155430
155678
|
setIssuePreviewMode?: Maybe<JiraIssuePreviewModeMutationPayload>;
|
|
155431
155679
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
155432
155680
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
155681
|
+
setJsmAiRiskAssessmentNudgeDismissed?: Maybe<JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload>;
|
|
155433
155682
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
155434
155683
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
155435
155684
|
setShouldShowFullIssueCreateModal?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -155471,6 +155720,9 @@ export type JiraUserPreferencesMutationSetIssueViewTimestampDisplayModeArgs = {
|
|
|
155471
155720
|
export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
155472
155721
|
searchMode?: InputMaybe<JiraJqlBuilderSearchMode>;
|
|
155473
155722
|
};
|
|
155723
|
+
export type JiraUserPreferencesMutationSetJsmAiRiskAssessmentNudgeDismissedArgs = {
|
|
155724
|
+
dismissCount: Scalars['Int']['input'];
|
|
155725
|
+
};
|
|
155474
155726
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
155475
155727
|
isEnabled: Scalars['Boolean']['input'];
|
|
155476
155728
|
};
|
|
@@ -157247,7 +157499,6 @@ export type JpdTableViewConfig = {
|
|
|
157247
157499
|
export type JpdTableViewConfigInput = {
|
|
157248
157500
|
colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
|
|
157249
157501
|
columnSizes?: InputMaybe<Array<JpdViewTableColumnSizeInput>>;
|
|
157250
|
-
columns?: InputMaybe<JpdViewLayoutConfigInput>;
|
|
157251
157502
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157252
157503
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157253
157504
|
fieldRollups?: InputMaybe<Array<JpdViewFieldRollupInput>>;
|
|
@@ -157282,12 +157533,12 @@ export type JpdTimelineViewConfig = {
|
|
|
157282
157533
|
issueLayoutWithSummary?: Maybe<JpdViewIssueLayoutTypeWithSummary>;
|
|
157283
157534
|
jql?: Maybe<Scalars['String']['output']>;
|
|
157284
157535
|
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
157285
|
-
scale
|
|
157536
|
+
scale?: Maybe<JpdViewTimelineScale>;
|
|
157286
157537
|
startDateField?: Maybe<Scalars['String']['output']>;
|
|
157287
157538
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
157288
157539
|
summaryCardField?: Maybe<Scalars['String']['output']>;
|
|
157289
157540
|
swimlanes?: Maybe<JpdViewLayoutConfig>;
|
|
157290
|
-
todayMarker
|
|
157541
|
+
todayMarker?: Maybe<JpdViewTodayMarker>;
|
|
157291
157542
|
};
|
|
157292
157543
|
export type JpdTimelineViewConfigInput = {
|
|
157293
157544
|
colorConfig?: InputMaybe<JpdViewColorConfigWithBoldInput>;
|
|
@@ -157347,7 +157598,7 @@ export type JpdUpdateViewInput = {
|
|
|
157347
157598
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
157348
157599
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157349
157600
|
id: Scalars['ID']['input'];
|
|
157350
|
-
name
|
|
157601
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
157351
157602
|
viewTypeConfig?: InputMaybe<JpdViewTypeConfigInput>;
|
|
157352
157603
|
};
|
|
157353
157604
|
export type JpdView = {
|
|
@@ -157494,7 +157745,7 @@ export type JpdViewLayoutConfig = {
|
|
|
157494
157745
|
};
|
|
157495
157746
|
export type JpdViewLayoutConfigInput = {
|
|
157496
157747
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157497
|
-
field
|
|
157748
|
+
field: Scalars['String']['input'];
|
|
157498
157749
|
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157499
157750
|
showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157500
157751
|
valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -159779,6 +160030,11 @@ export type JsmConversationSystemMessageMetadataEntry = {
|
|
|
159779
160030
|
value: Scalars['String']['output'];
|
|
159780
160031
|
};
|
|
159781
160032
|
export type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
160033
|
+
export type JsmSelfServeConversationStarters = {
|
|
160034
|
+
__typename?: 'JsmSelfServeConversationStarters';
|
|
160035
|
+
starters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
160036
|
+
};
|
|
160037
|
+
export type JsmSelfServeConversationStartersResult = JsmSelfServeConversationStarters | QueryError;
|
|
159782
160038
|
export type JsmSolutionComposerFollowupTask = {
|
|
159783
160039
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
159784
160040
|
items?: Maybe<Array<JsmSolutionComposerFollowupTaskItem>>;
|
|
@@ -161218,6 +161474,7 @@ export type KitsuneCustomerNode = {
|
|
|
161218
161474
|
__typename?: 'KitsuneCustomerNode';
|
|
161219
161475
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161220
161476
|
customerId: Scalars['ID']['output'];
|
|
161477
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161221
161478
|
};
|
|
161222
161479
|
export type KitsuneCustomersRollup = {
|
|
161223
161480
|
__typename?: 'KitsuneCustomersRollup';
|
|
@@ -161294,9 +161551,11 @@ export type KitsuneFeedback = Node & {
|
|
|
161294
161551
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
161295
161552
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161296
161553
|
customerId?: Maybe<Scalars['ID']['output']>;
|
|
161554
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161297
161555
|
id: Scalars['ID']['output'];
|
|
161298
161556
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161299
161557
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
161558
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161300
161559
|
reporter?: Maybe<User>;
|
|
161301
161560
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
161302
161561
|
snippets: KitsuneSnippetConnection;
|
|
@@ -161373,7 +161632,7 @@ export declare enum KitsuneFeedbackType {
|
|
|
161373
161632
|
}
|
|
161374
161633
|
export type KitsuneFeedbackValue = {
|
|
161375
161634
|
__typename?: 'KitsuneFeedbackValue';
|
|
161376
|
-
field
|
|
161635
|
+
field?: Maybe<KitsuneField>;
|
|
161377
161636
|
fieldV2?: Maybe<KitsuneField>;
|
|
161378
161637
|
values: Array<KitsuneFeedbackFieldValue>;
|
|
161379
161638
|
};
|
|
@@ -161411,6 +161670,7 @@ export type KitsuneFieldOptionUpdateInput = {
|
|
|
161411
161670
|
};
|
|
161412
161671
|
export type KitsuneFieldOptionsInput = {
|
|
161413
161672
|
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
161673
|
+
createV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
|
|
161414
161674
|
remove?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
161415
161675
|
update?: InputMaybe<Array<KitsuneFieldOptionUpdateInput>>;
|
|
161416
161676
|
};
|
|
@@ -161447,7 +161707,7 @@ export declare enum KitsuneFieldValueType {
|
|
|
161447
161707
|
export type KitsuneFilter = {
|
|
161448
161708
|
__typename?: 'KitsuneFilter';
|
|
161449
161709
|
comparisonOperator: KitsuneComparisonOperator;
|
|
161450
|
-
field
|
|
161710
|
+
field?: Maybe<KitsuneField>;
|
|
161451
161711
|
fieldId: Scalars['ID']['output'];
|
|
161452
161712
|
fieldV2?: Maybe<KitsuneField>;
|
|
161453
161713
|
logicalOperator: KitsuneLogicalOperator;
|
|
@@ -161532,7 +161792,7 @@ export type KitsuneInsightEdge = KitsuneEdge & {
|
|
|
161532
161792
|
export type KitsuneInsightSuggestion = {
|
|
161533
161793
|
__typename?: 'KitsuneInsightSuggestion';
|
|
161534
161794
|
embeddingType: Scalars['String']['output'];
|
|
161535
|
-
insight
|
|
161795
|
+
insight?: Maybe<KitsuneInsight>;
|
|
161536
161796
|
insightId: Scalars['ID']['output'];
|
|
161537
161797
|
matchedContent: Scalars['String']['output'];
|
|
161538
161798
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -161654,6 +161914,7 @@ export type KitsuneOrganizationNode = {
|
|
|
161654
161914
|
__typename?: 'KitsuneOrganizationNode';
|
|
161655
161915
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161656
161916
|
organizationId: Scalars['ID']['output'];
|
|
161917
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161657
161918
|
};
|
|
161658
161919
|
export type KitsunePaginationInput = {
|
|
161659
161920
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161729,7 +161990,7 @@ export type KitsuneRollupInput = {
|
|
|
161729
161990
|
};
|
|
161730
161991
|
export type KitsuneSearchChunk = {
|
|
161731
161992
|
__typename?: 'KitsuneSearchChunk';
|
|
161732
|
-
chunks
|
|
161993
|
+
chunks?: Maybe<Array<KitsuneChunk>>;
|
|
161733
161994
|
content?: Maybe<Scalars['String']['output']>;
|
|
161734
161995
|
feedbackId: Scalars['ID']['output'];
|
|
161735
161996
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -161789,12 +162050,14 @@ export type KitsuneSnippet = Node & {
|
|
|
161789
162050
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
161790
162051
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161791
162052
|
customerId?: Maybe<Scalars['ID']['output']>;
|
|
162053
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161792
162054
|
feedback?: Maybe<KitsuneFeedback>;
|
|
161793
162055
|
id: Scalars['ID']['output'];
|
|
161794
162056
|
insight?: Maybe<KitsuneInsight>;
|
|
161795
162057
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
161796
162058
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161797
162059
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
162060
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161798
162061
|
};
|
|
161799
162062
|
export type KitsuneSnippetConnection = KitsuneConnection & {
|
|
161800
162063
|
__typename?: 'KitsuneSnippetConnection';
|
|
@@ -165186,6 +165449,20 @@ export type MarkCommentsAsReadPayload = {
|
|
|
165186
165449
|
errors: Array<Maybe<Scalars['String']['output']>>;
|
|
165187
165450
|
success: Scalars['Boolean']['output'];
|
|
165188
165451
|
};
|
|
165452
|
+
export type MarketplaceAgentCapabilities = {
|
|
165453
|
+
__typename?: 'MarketplaceAgentCapabilities';
|
|
165454
|
+
tools?: Maybe<Array<MarketplaceAgentTool>>;
|
|
165455
|
+
};
|
|
165456
|
+
export type MarketplaceAgentTool = {
|
|
165457
|
+
__typename?: 'MarketplaceAgentTool';
|
|
165458
|
+
accessType: MarketplaceAgentToolAccessType;
|
|
165459
|
+
description: Scalars['String']['output'];
|
|
165460
|
+
name: Scalars['String']['output'];
|
|
165461
|
+
};
|
|
165462
|
+
export declare enum MarketplaceAgentToolAccessType {
|
|
165463
|
+
Read = "READ",
|
|
165464
|
+
Write = "WRITE"
|
|
165465
|
+
}
|
|
165189
165466
|
export type MarketplaceApp = {
|
|
165190
165467
|
__typename?: 'MarketplaceApp';
|
|
165191
165468
|
appId: Scalars['ID']['output'];
|
|
@@ -165204,6 +165481,7 @@ export type MarketplaceApp = {
|
|
|
165204
165481
|
logo?: Maybe<MarketplaceListingImage>;
|
|
165205
165482
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
165206
165483
|
name: Scalars['String']['output'];
|
|
165484
|
+
objectType?: Maybe<MarketplaceObjectType>;
|
|
165207
165485
|
partner?: Maybe<MarketplacePartner>;
|
|
165208
165486
|
partnerId: Scalars['ID']['output'];
|
|
165209
165487
|
privacyPolicyUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -165306,6 +165584,7 @@ export type MarketplaceAppTrustInformation = {
|
|
|
165306
165584
|
export type MarketplaceAppTrustInformationResult = MarketplaceAppTrustInformation | QueryError;
|
|
165307
165585
|
export type MarketplaceAppVersion = {
|
|
165308
165586
|
__typename?: 'MarketplaceAppVersion';
|
|
165587
|
+
agentCapabilities?: Maybe<MarketplaceAgentCapabilities>;
|
|
165309
165588
|
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
165310
165589
|
buildNumber: Scalars['ID']['output'];
|
|
165311
165590
|
deployment: MarketplaceAppDeployment;
|
|
@@ -165320,6 +165599,7 @@ export type MarketplaceAppVersion = {
|
|
|
165320
165599
|
learnMoreUrl?: Maybe<Scalars['URL']['output']>;
|
|
165321
165600
|
licenseType?: Maybe<MarketplaceAppVersionLicenseType>;
|
|
165322
165601
|
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
165602
|
+
objectTypeSnapshot?: Maybe<MarketplaceObjectType>;
|
|
165323
165603
|
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
165324
165604
|
paymentModel: MarketplaceAppPaymentModel;
|
|
165325
165605
|
productHostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -167896,6 +168176,11 @@ export type MarketplaceMcpTool = {
|
|
|
167896
168176
|
name: Scalars['String']['output'];
|
|
167897
168177
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
167898
168178
|
};
|
|
168179
|
+
export declare enum MarketplaceObjectType {
|
|
168180
|
+
Agent = "AGENT",
|
|
168181
|
+
App = "APP",
|
|
168182
|
+
Mcp = "MCP"
|
|
168183
|
+
}
|
|
167899
168184
|
export type MarketplacePartner = {
|
|
167900
168185
|
__typename?: 'MarketplacePartner';
|
|
167901
168186
|
address?: Maybe<MarketplacePartnerAddress>;
|
|
@@ -168544,6 +168829,23 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
168544
168829
|
Archived = "ARCHIVED",
|
|
168545
168830
|
Inactive = "INACTIVE"
|
|
168546
168831
|
}
|
|
168832
|
+
export type MarketplaceStoreDynamicProductRecommendations = {
|
|
168833
|
+
__typename?: 'MarketplaceStoreDynamicProductRecommendations';
|
|
168834
|
+
apps: Array<MarketplaceStoreSearchHitObject>;
|
|
168835
|
+
isPersonalized: Scalars['Boolean']['output'];
|
|
168836
|
+
parentApplicationKey?: Maybe<Scalars['String']['output']>;
|
|
168837
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
168838
|
+
};
|
|
168839
|
+
export type MarketplaceStoreDynamicRecommendationsInput = {
|
|
168840
|
+
filter?: InputMaybe<MarketplaceStoreSearchFilterInput>;
|
|
168841
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
168842
|
+
tenantId: Scalars['String']['input'];
|
|
168843
|
+
};
|
|
168844
|
+
export type MarketplaceStoreDynamicRecommendationsResponse = {
|
|
168845
|
+
__typename?: 'MarketplaceStoreDynamicRecommendationsResponse';
|
|
168846
|
+
productRecommendations: Array<MarketplaceStoreDynamicProductRecommendations>;
|
|
168847
|
+
resultsCount: Scalars['Int']['output'];
|
|
168848
|
+
};
|
|
168547
168849
|
export type MarketplaceStoreEdition = {
|
|
168548
168850
|
__typename?: 'MarketplaceStoreEdition';
|
|
168549
168851
|
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
@@ -169702,6 +170004,32 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
169702
170004
|
key: Scalars['String']['output'];
|
|
169703
170005
|
value: Array<Scalars['String']['output']>;
|
|
169704
170006
|
};
|
|
170007
|
+
export type MarketplaceStoreSearchFilterGovernanceInput = {
|
|
170008
|
+
dataResidencyStatus?: InputMaybe<Scalars['String']['input']>;
|
|
170009
|
+
type: Scalars['String']['input'];
|
|
170010
|
+
};
|
|
170011
|
+
export type MarketplaceStoreSearchFilterInput = {
|
|
170012
|
+
cloudComplianceBoundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170013
|
+
compliance?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170014
|
+
governance?: InputMaybe<Array<MarketplaceStoreSearchFilterGovernanceInput>>;
|
|
170015
|
+
hosting?: InputMaybe<Scalars['String']['input']>;
|
|
170016
|
+
paid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170017
|
+
parentApplicationKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170018
|
+
partnerSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170019
|
+
securityPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterSecurityProgramInput>>;
|
|
170020
|
+
tagsCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170021
|
+
trustPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterTrustProgramInput>>;
|
|
170022
|
+
vendorId?: InputMaybe<Scalars['Int']['input']>;
|
|
170023
|
+
};
|
|
170024
|
+
export type MarketplaceStoreSearchFilterSecurityProgramInput = {
|
|
170025
|
+
program: Scalars['String']['input'];
|
|
170026
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170027
|
+
};
|
|
170028
|
+
export type MarketplaceStoreSearchFilterTrustProgramInput = {
|
|
170029
|
+
program: Scalars['String']['input'];
|
|
170030
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170031
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
170032
|
+
};
|
|
169705
170033
|
export type MarketplaceStoreSearchHitDistribution = {
|
|
169706
170034
|
__typename?: 'MarketplaceStoreSearchHitDistribution';
|
|
169707
170035
|
activeInstalls?: Maybe<Scalars['Int']['output']>;
|
|
@@ -170404,7 +170732,6 @@ export type MercuryAsk = Node & {
|
|
|
170404
170732
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
170405
170733
|
askStatus: MercuryAskStatusEnum;
|
|
170406
170734
|
askType?: Maybe<MercuryAskType>;
|
|
170407
|
-
askTypeId?: Maybe<Scalars['ID']['output']>;
|
|
170408
170735
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
170409
170736
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
170410
170737
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -170412,6 +170739,7 @@ export type MercuryAsk = Node & {
|
|
|
170412
170739
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
170413
170740
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
170414
170741
|
description?: Maybe<Scalars['String']['output']>;
|
|
170742
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
170415
170743
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
170416
170744
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
170417
170745
|
id: Scalars['ID']['output'];
|
|
@@ -170732,6 +171060,13 @@ export declare enum MercuryAskField {
|
|
|
170732
171060
|
TargetDate = "TARGET_DATE",
|
|
170733
171061
|
TargetDateType = "TARGET_DATE_TYPE"
|
|
170734
171062
|
}
|
|
171063
|
+
export type MercuryAskGlobalConfiguration = MercuryConfiguration & {
|
|
171064
|
+
__typename?: 'MercuryAskGlobalConfiguration';
|
|
171065
|
+
askPromotionSettings?: Maybe<MercuryAskPromotionSettings>;
|
|
171066
|
+
connectedWorkEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
171067
|
+
enforceAtlassianWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
171068
|
+
id: Scalars['ID']['output'];
|
|
171069
|
+
};
|
|
170735
171070
|
export type MercuryAskLink = Node & {
|
|
170736
171071
|
__typename?: 'MercuryAskLink';
|
|
170737
171072
|
askId: Scalars['ID']['output'];
|
|
@@ -170762,6 +171097,15 @@ export declare enum MercuryAskPriority {
|
|
|
170762
171097
|
Medium = "MEDIUM"
|
|
170763
171098
|
}
|
|
170764
171099
|
export type MercuryAskPromotedItem = JiraIssue | MercuryFocusArea;
|
|
171100
|
+
export type MercuryAskPromotionSettings = {
|
|
171101
|
+
__typename?: 'MercuryAskPromotionSettings';
|
|
171102
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
171103
|
+
targetTypes?: Maybe<Array<MercuryAskPromotionTarget>>;
|
|
171104
|
+
};
|
|
171105
|
+
export declare enum MercuryAskPromotionTarget {
|
|
171106
|
+
FocusArea = "FOCUS_AREA",
|
|
171107
|
+
Jira = "JIRA"
|
|
171108
|
+
}
|
|
170765
171109
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
170766
171110
|
export declare enum MercuryAskStatusEnum {
|
|
170767
171111
|
Accepted = "ACCEPTED",
|
|
@@ -170839,6 +171183,7 @@ export type MercuryAskTransition = {
|
|
|
170839
171183
|
export type MercuryAskType = Node & {
|
|
170840
171184
|
__typename?: 'MercuryAskType';
|
|
170841
171185
|
description?: Maybe<Scalars['String']['output']>;
|
|
171186
|
+
globalConfiguration?: Maybe<MercuryAskGlobalConfiguration>;
|
|
170842
171187
|
id: Scalars['ID']['output'];
|
|
170843
171188
|
isActive: Scalars['Boolean']['output'];
|
|
170844
171189
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -171756,6 +172101,7 @@ export type MercuryCreateAskInput = {
|
|
|
171756
172101
|
cloudId: Scalars['ID']['input'];
|
|
171757
172102
|
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171758
172103
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
172104
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
171759
172105
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171760
172106
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171761
172107
|
name: Scalars['String']['input'];
|
|
@@ -172112,6 +172458,7 @@ export type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
|
172112
172458
|
export type MercuryCreateMilestoneInput = {
|
|
172113
172459
|
cloudId: Scalars['ID']['input'];
|
|
172114
172460
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
172461
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
172115
172462
|
name: Scalars['String']['input'];
|
|
172116
172463
|
targetDate?: InputMaybe<MercuryMilestoneTargetDateInput>;
|
|
172117
172464
|
};
|
|
@@ -173318,7 +173665,10 @@ export type MercuryFocusArea = Node & {
|
|
|
173318
173665
|
owner?: Maybe<User>;
|
|
173319
173666
|
parent?: Maybe<MercuryFocusArea>;
|
|
173320
173667
|
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
173668
|
+
promotedFromAsk?: Maybe<MercuryAsk>;
|
|
173669
|
+
promotedFromAskId?: Maybe<Scalars['ID']['output']>;
|
|
173321
173670
|
ranks?: Maybe<MercuryFocusAreaRankConnection>;
|
|
173671
|
+
sharedUsers?: Maybe<MercuryFocusAreaUserAccessConnection>;
|
|
173322
173672
|
sponsorOrganization?: Maybe<MercuryOrganization>;
|
|
173323
173673
|
sponsorOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
173324
173674
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -173332,6 +173682,7 @@ export type MercuryFocusArea = Node & {
|
|
|
173332
173682
|
url?: Maybe<Scalars['String']['output']>;
|
|
173333
173683
|
userPermissions?: Maybe<Array<MercuryFocusAreaPermission>>;
|
|
173334
173684
|
uuid: Scalars['UUID']['output'];
|
|
173685
|
+
views?: Maybe<Array<MercuryPortfolio>>;
|
|
173335
173686
|
watchers?: Maybe<MercuryUserConnection>;
|
|
173336
173687
|
watching: Scalars['Boolean']['output'];
|
|
173337
173688
|
};
|
|
@@ -173394,6 +173745,10 @@ export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
|
173394
173745
|
export type MercuryFocusAreaRanksArgs = {
|
|
173395
173746
|
containerFilters: Array<MercuryFocusAreaContainerFilter>;
|
|
173396
173747
|
};
|
|
173748
|
+
export type MercuryFocusAreaSharedUsersArgs = {
|
|
173749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173751
|
+
};
|
|
173397
173752
|
export type MercuryFocusAreaSubFocusAreasArgs = {
|
|
173398
173753
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
173399
173754
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173781,7 +174136,8 @@ export type MercuryFocusAreaRankingValidationError = {
|
|
|
173781
174136
|
};
|
|
173782
174137
|
export declare enum MercuryFocusAreaRankingValidationErrorCode {
|
|
173783
174138
|
FaRanked = "FA_RANKED",
|
|
173784
|
-
FaTypeMismatch = "FA_TYPE_MISMATCH"
|
|
174139
|
+
FaTypeMismatch = "FA_TYPE_MISMATCH",
|
|
174140
|
+
FaVersionMismatch = "FA_VERSION_MISMATCH"
|
|
173785
174141
|
}
|
|
173786
174142
|
export type MercuryFocusAreaSort = {
|
|
173787
174143
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
@@ -173934,9 +174290,21 @@ export type MercuryFocusAreaUserAccess = {
|
|
|
173934
174290
|
__typename?: 'MercuryFocusAreaUserAccess';
|
|
173935
174291
|
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
173936
174292
|
accessReason?: Maybe<MercuryFocusAreaUserAccessReason>;
|
|
174293
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
173937
174294
|
hasAccess: Scalars['Boolean']['output'];
|
|
173938
174295
|
user?: Maybe<User>;
|
|
173939
174296
|
};
|
|
174297
|
+
export type MercuryFocusAreaUserAccessConnection = {
|
|
174298
|
+
__typename?: 'MercuryFocusAreaUserAccessConnection';
|
|
174299
|
+
edges?: Maybe<Array<MercuryFocusAreaUserAccessEdge>>;
|
|
174300
|
+
pageInfo: PageInfo;
|
|
174301
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
174302
|
+
};
|
|
174303
|
+
export type MercuryFocusAreaUserAccessEdge = {
|
|
174304
|
+
__typename?: 'MercuryFocusAreaUserAccessEdge';
|
|
174305
|
+
cursor: Scalars['String']['output'];
|
|
174306
|
+
node?: Maybe<MercuryFocusAreaUserAccess>;
|
|
174307
|
+
};
|
|
173940
174308
|
export type MercuryFocusAreaUserAccessInput = {
|
|
173941
174309
|
accessLevel?: InputMaybe<MercuryFocusAreaUserAccessLevel>;
|
|
173942
174310
|
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -175095,6 +175463,7 @@ export type MercuryMilestone = Node & {
|
|
|
175095
175463
|
createdBy?: Maybe<User>;
|
|
175096
175464
|
createdDate: Scalars['String']['output'];
|
|
175097
175465
|
description?: Maybe<Scalars['String']['output']>;
|
|
175466
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
175098
175467
|
id: Scalars['ID']['output'];
|
|
175099
175468
|
name: Scalars['String']['output'];
|
|
175100
175469
|
targetDate?: Maybe<MercuryMilestoneTargetDate>;
|
|
@@ -175169,11 +175538,16 @@ export type MercuryMilestonesMutationApiUpdateMilestoneTargetDateArgs = {
|
|
|
175169
175538
|
export type MercuryMilestonesQueryApi = {
|
|
175170
175539
|
__typename?: 'MercuryMilestonesQueryApi';
|
|
175171
175540
|
milestones?: Maybe<Array<Maybe<MercuryMilestone>>>;
|
|
175541
|
+
milestonesByExternalIds?: Maybe<Array<Maybe<MercuryMilestone>>>;
|
|
175172
175542
|
milestonesSearch?: Maybe<MercuryMilestoneConnection>;
|
|
175173
175543
|
};
|
|
175174
175544
|
export type MercuryMilestonesQueryApiMilestonesArgs = {
|
|
175175
175545
|
ids: Array<Scalars['ID']['input']>;
|
|
175176
175546
|
};
|
|
175547
|
+
export type MercuryMilestonesQueryApiMilestonesByExternalIdsArgs = {
|
|
175548
|
+
cloudId: Scalars['ID']['input'];
|
|
175549
|
+
ids: Array<Scalars['String']['input']>;
|
|
175550
|
+
};
|
|
175177
175551
|
export type MercuryMilestonesQueryApiMilestonesSearchArgs = {
|
|
175178
175552
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175179
175553
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175369,8 +175743,10 @@ export type MercuryMutationApi = {
|
|
|
175369
175743
|
setFocusAreaOrganizationLinks?: Maybe<MercurySetFocusAreaOrganizationLinksPayload>;
|
|
175370
175744
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
175371
175745
|
starFocusArea?: Maybe<MercuryStarFocusAreaPayload>;
|
|
175746
|
+
starPortfolio?: Maybe<MercuryStarPortfolioPayload>;
|
|
175372
175747
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
175373
175748
|
unStarFocusArea?: Maybe<MercuryUnStarFocusAreaPayload>;
|
|
175749
|
+
unStarPortfolio?: Maybe<MercuryUnStarPortfolioPayload>;
|
|
175374
175750
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
175375
175751
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
175376
175752
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -175520,12 +175896,18 @@ export type MercuryMutationApiSetPreferenceArgs = {
|
|
|
175520
175896
|
export type MercuryMutationApiStarFocusAreaArgs = {
|
|
175521
175897
|
input: MercuryStarFocusAreaInput;
|
|
175522
175898
|
};
|
|
175899
|
+
export type MercuryMutationApiStarPortfolioArgs = {
|
|
175900
|
+
input: MercuryStarPortfolioInput;
|
|
175901
|
+
};
|
|
175523
175902
|
export type MercuryMutationApiTransitionFocusAreaStatusArgs = {
|
|
175524
175903
|
input: MercuryTransitionFocusAreaStatusInput;
|
|
175525
175904
|
};
|
|
175526
175905
|
export type MercuryMutationApiUnStarFocusAreaArgs = {
|
|
175527
175906
|
input: MercuryUnStarFocusAreaInput;
|
|
175528
175907
|
};
|
|
175908
|
+
export type MercuryMutationApiUnStarPortfolioArgs = {
|
|
175909
|
+
input: MercuryUnStarPortfolioInput;
|
|
175910
|
+
};
|
|
175529
175911
|
export type MercuryMutationApiUnarchiveFocusAreaArgs = {
|
|
175530
175912
|
input: MercuryUnarchiveFocusAreaInput;
|
|
175531
175913
|
};
|
|
@@ -175639,6 +176021,10 @@ export type MercuryNormalizedWorkEdge = {
|
|
|
175639
176021
|
cursor: Scalars['String']['output'];
|
|
175640
176022
|
node?: Maybe<MercuryNormalizedWorkResult>;
|
|
175641
176023
|
};
|
|
176024
|
+
export type MercuryNormalizedWorkProgressRangeInput = {
|
|
176025
|
+
progressMax?: InputMaybe<Scalars['Int']['input']>;
|
|
176026
|
+
progressMin?: InputMaybe<Scalars['Int']['input']>;
|
|
176027
|
+
};
|
|
175642
176028
|
export type MercuryNormalizedWorkProjectType = MercuryProjectType & {
|
|
175643
176029
|
__typename?: 'MercuryNormalizedWorkProjectType';
|
|
175644
176030
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -175656,7 +176042,9 @@ export type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
175656
176042
|
applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175657
176043
|
cloudId?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
175658
176044
|
owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
176045
|
+
progressRange?: InputMaybe<MercuryNormalizedWorkProgressRangeInput>;
|
|
175659
176046
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
176047
|
+
startDateRange?: InputMaybe<MercuryNormalizedWorkStartDateRangeInput>;
|
|
175660
176048
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175661
176049
|
targetDateRange?: InputMaybe<MercuryNormalizedWorkTargetDateRangeInput>;
|
|
175662
176050
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -175666,8 +176054,10 @@ export declare enum MercuryNormalizedWorkSortField {
|
|
|
175666
176054
|
FocusAreaId = "FOCUS_AREA_ID",
|
|
175667
176055
|
Key = "KEY",
|
|
175668
176056
|
Name = "NAME",
|
|
176057
|
+
Progress = "PROGRESS",
|
|
175669
176058
|
Source = "SOURCE",
|
|
175670
176059
|
SourceStatus = "SOURCE_STATUS",
|
|
176060
|
+
StartDate = "START_DATE",
|
|
175671
176061
|
Status = "STATUS",
|
|
175672
176062
|
TargetDate = "TARGET_DATE",
|
|
175673
176063
|
Type = "TYPE"
|
|
@@ -175680,6 +176070,10 @@ export type MercuryNormalizedWorkSourceStatus = MercuryOriginalProjectStatus & {
|
|
|
175680
176070
|
__typename?: 'MercuryNormalizedWorkSourceStatus';
|
|
175681
176071
|
mercuryOriginalStatusName: Scalars['String']['output'];
|
|
175682
176072
|
};
|
|
176073
|
+
export type MercuryNormalizedWorkStartDateRangeInput = {
|
|
176074
|
+
startDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
176075
|
+
startDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
176076
|
+
};
|
|
175683
176077
|
export type MercuryNormalizedWorkStatus = MercuryProjectStatus & {
|
|
175684
176078
|
__typename?: 'MercuryNormalizedWorkStatus';
|
|
175685
176079
|
mercuryColor: MercuryProjectStatusColor;
|
|
@@ -176054,6 +176448,7 @@ export type MercuryOrganizationListSummary = {
|
|
|
176054
176448
|
export type MercuryOrganizationMembership = Node & {
|
|
176055
176449
|
__typename?: 'MercuryOrganizationMembership';
|
|
176056
176450
|
availabilityRanges?: Maybe<MercuryOrganizationAvailabilityRangeConnection>;
|
|
176451
|
+
capacityAllocations?: Maybe<Array<MercuryOrganizationMembershipCapacityAllocation>>;
|
|
176057
176452
|
createdBy?: Maybe<User>;
|
|
176058
176453
|
createdDate: Scalars['DateTime']['output'];
|
|
176059
176454
|
endDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -176073,6 +176468,12 @@ export type MercuryOrganizationMembershipTeamsArgs = {
|
|
|
176073
176468
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
176074
176469
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176075
176470
|
};
|
|
176471
|
+
export type MercuryOrganizationMembershipCapacityAllocation = {
|
|
176472
|
+
__typename?: 'MercuryOrganizationMembershipCapacityAllocation';
|
|
176473
|
+
endDate: Scalars['Date']['output'];
|
|
176474
|
+
percentage: Scalars['BigDecimal']['output'];
|
|
176475
|
+
startDate: Scalars['Date']['output'];
|
|
176476
|
+
};
|
|
176076
176477
|
export type MercuryOrganizationMembershipConnection = {
|
|
176077
176478
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
176078
176479
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -176407,6 +176808,7 @@ export type MercuryOrganizationsMutationApi = {
|
|
|
176407
176808
|
setGlobalPlanAuthorityOrgLevel?: Maybe<MercurySetGlobalPlanAuthorityOrgLevelPayload>;
|
|
176408
176809
|
setOrganizationCustomFieldValue?: Maybe<MercurySetOrganizationCustomFieldPayload>;
|
|
176409
176810
|
setOrganizationCustomFieldValues?: Maybe<MercurySetOrganizationCustomFieldsPayload>;
|
|
176811
|
+
setOrganizationMembershipCapacity?: Maybe<MercurySetOrganizationMembershipCapacityPayload>;
|
|
176410
176812
|
starOrganization?: Maybe<MercuryStarOrganizationPayload>;
|
|
176411
176813
|
starOrganizationView?: Maybe<MercuryStarOrganizationViewPayload>;
|
|
176412
176814
|
transitionOrganizationStatus?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
@@ -176572,6 +176974,9 @@ export type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValueArgs =
|
|
|
176572
176974
|
export type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValuesArgs = {
|
|
176573
176975
|
input: MercurySetOrganizationCustomFieldsInput;
|
|
176574
176976
|
};
|
|
176977
|
+
export type MercuryOrganizationsMutationApiSetOrganizationMembershipCapacityArgs = {
|
|
176978
|
+
input: MercurySetOrganizationMembershipCapacityInput;
|
|
176979
|
+
};
|
|
176575
176980
|
export type MercuryOrganizationsMutationApiStarOrganizationArgs = {
|
|
176576
176981
|
input: MercuryStarOrganizationInput;
|
|
176577
176982
|
};
|
|
@@ -177035,7 +177440,9 @@ export type MercuryPortfolio = {
|
|
|
177035
177440
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
177036
177441
|
name: Scalars['String']['output'];
|
|
177037
177442
|
owner?: Maybe<User>;
|
|
177443
|
+
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
177038
177444
|
updatedBy?: Maybe<User>;
|
|
177445
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
177039
177446
|
url?: Maybe<Scalars['String']['output']>;
|
|
177040
177447
|
uuid: Scalars['ID']['output'];
|
|
177041
177448
|
version?: Maybe<Scalars['String']['output']>;
|
|
@@ -177049,6 +177456,17 @@ export type MercuryPortfolioBudgetAggregation = {
|
|
|
177049
177456
|
__typename?: 'MercuryPortfolioBudgetAggregation';
|
|
177050
177457
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177051
177458
|
};
|
|
177459
|
+
export type MercuryPortfolioConnection = {
|
|
177460
|
+
__typename?: 'MercuryPortfolioConnection';
|
|
177461
|
+
edges?: Maybe<Array<MercuryPortfolioEdge>>;
|
|
177462
|
+
pageInfo: PageInfo;
|
|
177463
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
177464
|
+
};
|
|
177465
|
+
export type MercuryPortfolioEdge = {
|
|
177466
|
+
__typename?: 'MercuryPortfolioEdge';
|
|
177467
|
+
cursor: Scalars['String']['output'];
|
|
177468
|
+
node: MercuryPortfolio;
|
|
177469
|
+
};
|
|
177052
177470
|
export type MercuryPortfolioFocusAreaSummary = {
|
|
177053
177471
|
__typename?: 'MercuryPortfolioFocusAreaSummary';
|
|
177054
177472
|
focusAreaTypeBreakdown?: Maybe<Array<Maybe<MercuryPortfolioFocusAreaTypeBreakdown>>>;
|
|
@@ -177075,6 +177493,15 @@ export type MercuryPortfolioHumanResourceAllocations = {
|
|
|
177075
177493
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177076
177494
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177077
177495
|
};
|
|
177496
|
+
export type MercuryPortfolioSort = {
|
|
177497
|
+
field: MercuryPortfolioSortField;
|
|
177498
|
+
order: SortOrder;
|
|
177499
|
+
};
|
|
177500
|
+
export declare enum MercuryPortfolioSortField {
|
|
177501
|
+
Name = "NAME",
|
|
177502
|
+
Owner = "OWNER",
|
|
177503
|
+
Starred = "STARRED"
|
|
177504
|
+
}
|
|
177078
177505
|
export type MercuryPortfolioSpendAggregation = {
|
|
177079
177506
|
__typename?: 'MercuryPortfolioSpendAggregation';
|
|
177080
177507
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -177547,6 +177974,8 @@ export type MercuryQueryApi = {
|
|
|
177547
177974
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
177548
177975
|
myPreference?: Maybe<MercuryPreference>;
|
|
177549
177976
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
177977
|
+
portfolio?: Maybe<MercuryPortfolio>;
|
|
177978
|
+
portfolios?: Maybe<MercuryPortfolioConnection>;
|
|
177550
177979
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
177551
177980
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
177552
177981
|
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
@@ -177703,6 +178132,17 @@ export type MercuryQueryApiMyPreferenceArgs = {
|
|
|
177703
178132
|
export type MercuryQueryApiMyPreferencesArgs = {
|
|
177704
178133
|
cloudId: Scalars['ID']['input'];
|
|
177705
178134
|
};
|
|
178135
|
+
export type MercuryQueryApiPortfolioArgs = {
|
|
178136
|
+
cloudId: Scalars['ID']['input'];
|
|
178137
|
+
id: Scalars['ID']['input'];
|
|
178138
|
+
};
|
|
178139
|
+
export type MercuryQueryApiPortfoliosArgs = {
|
|
178140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
178141
|
+
cloudId: Scalars['ID']['input'];
|
|
178142
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178143
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
178144
|
+
sort?: InputMaybe<Array<MercuryPortfolioSort>>;
|
|
178145
|
+
};
|
|
177706
178146
|
export type MercuryQueryApiPortfoliosByArisArgs = {
|
|
177707
178147
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
177708
178148
|
};
|
|
@@ -177756,7 +178196,7 @@ export type MercuryRateCardAttributeType = {
|
|
|
177756
178196
|
key: Scalars['String']['output'];
|
|
177757
178197
|
order: Scalars['Int']['output'];
|
|
177758
178198
|
};
|
|
177759
|
-
export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttributeValue;
|
|
178199
|
+
export type MercuryRateCardAttributeValue = MercuryRateCardFunctionalRoleAttributeValue | MercuryRateCardOrganizationAttributeValue;
|
|
177760
178200
|
export type MercuryRateCardAttributeValueInput = {
|
|
177761
178201
|
attributeId: Scalars['ID']['input'];
|
|
177762
178202
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -177791,6 +178231,12 @@ export type MercuryRateCardEdge = {
|
|
|
177791
178231
|
cursor: Scalars['String']['output'];
|
|
177792
178232
|
node?: Maybe<MercuryRateCard>;
|
|
177793
178233
|
};
|
|
178234
|
+
export type MercuryRateCardFunctionalRoleAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
178235
|
+
__typename?: 'MercuryRateCardFunctionalRoleAttributeValue';
|
|
178236
|
+
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
178237
|
+
functionalRole?: Maybe<MercuryFunctionalRole>;
|
|
178238
|
+
id: Scalars['ID']['output'];
|
|
178239
|
+
};
|
|
177794
178240
|
export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
177795
178241
|
__typename?: 'MercuryRateCardOrganizationAttributeValue';
|
|
177796
178242
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
@@ -178567,6 +179013,19 @@ export type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
|
178567
179013
|
errors?: Maybe<Array<MutationError>>;
|
|
178568
179014
|
success: Scalars['Boolean']['output'];
|
|
178569
179015
|
};
|
|
179016
|
+
export type MercurySetOrganizationMembershipCapacityInput = {
|
|
179017
|
+
endDate: Scalars['Date']['input'];
|
|
179018
|
+
id: Scalars['ID']['input'];
|
|
179019
|
+
percentage: Scalars['BigDecimal']['input'];
|
|
179020
|
+
startDate: Scalars['Date']['input'];
|
|
179021
|
+
};
|
|
179022
|
+
export type MercurySetOrganizationMembershipCapacityPayload = Payload & {
|
|
179023
|
+
__typename?: 'MercurySetOrganizationMembershipCapacityPayload';
|
|
179024
|
+
capacityAllocations: Array<MercuryOrganizationMembershipCapacityAllocation>;
|
|
179025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179026
|
+
organizationMembershipId: Scalars['ID']['output'];
|
|
179027
|
+
success: Scalars['Boolean']['output'];
|
|
179028
|
+
};
|
|
178570
179029
|
export type MercurySetPlanBaselineInput = {
|
|
178571
179030
|
planId: Scalars['ID']['input'];
|
|
178572
179031
|
};
|
|
@@ -178701,6 +179160,14 @@ export type MercuryStarOrganizationViewPayload = Payload & {
|
|
|
178701
179160
|
errors?: Maybe<Array<MutationError>>;
|
|
178702
179161
|
success: Scalars['Boolean']['output'];
|
|
178703
179162
|
};
|
|
179163
|
+
export type MercuryStarPortfolioInput = {
|
|
179164
|
+
portfolioAri: Scalars['ID']['input'];
|
|
179165
|
+
};
|
|
179166
|
+
export type MercuryStarPortfolioPayload = Payload & {
|
|
179167
|
+
__typename?: 'MercuryStarPortfolioPayload';
|
|
179168
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179169
|
+
success: Scalars['Boolean']['output'];
|
|
179170
|
+
};
|
|
178704
179171
|
export type MercuryStarViewInput = {
|
|
178705
179172
|
id: Scalars['ID']['input'];
|
|
178706
179173
|
};
|
|
@@ -179379,6 +179846,14 @@ export type MercuryUnStarOrganizationViewPayload = Payload & {
|
|
|
179379
179846
|
errors?: Maybe<Array<MutationError>>;
|
|
179380
179847
|
success: Scalars['Boolean']['output'];
|
|
179381
179848
|
};
|
|
179849
|
+
export type MercuryUnStarPortfolioInput = {
|
|
179850
|
+
portfolioAri: Scalars['ID']['input'];
|
|
179851
|
+
};
|
|
179852
|
+
export type MercuryUnStarPortfolioPayload = Payload & {
|
|
179853
|
+
__typename?: 'MercuryUnStarPortfolioPayload';
|
|
179854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179855
|
+
success: Scalars['Boolean']['output'];
|
|
179856
|
+
};
|
|
179382
179857
|
export type MercuryUnarchiveFocusAreaInput = {
|
|
179383
179858
|
cloudId: Scalars['ID']['input'];
|
|
179384
179859
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -179557,6 +180032,25 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
179557
180032
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
179558
180033
|
id: Scalars['ID']['input'];
|
|
179559
180034
|
};
|
|
180035
|
+
export type MercuryUpdateAskGlobalConfigurationAskPromotionSettingsInput = {
|
|
180036
|
+
askTypeId: Scalars['ID']['input'];
|
|
180037
|
+
enabled: Scalars['Boolean']['input'];
|
|
180038
|
+
targetTypes: Array<MercuryAskPromotionTarget>;
|
|
180039
|
+
};
|
|
180040
|
+
export type MercuryUpdateAskGlobalConfigurationConnectedWorkEnabledInput = {
|
|
180041
|
+
askTypeId: Scalars['ID']['input'];
|
|
180042
|
+
connectedWorkEnabled: Scalars['Boolean']['input'];
|
|
180043
|
+
};
|
|
180044
|
+
export type MercuryUpdateAskGlobalConfigurationEnforceAtlassianWorkflowInput = {
|
|
180045
|
+
askTypeId: Scalars['ID']['input'];
|
|
180046
|
+
enforceAtlassianWorkflow: Scalars['Boolean']['input'];
|
|
180047
|
+
};
|
|
180048
|
+
export type MercuryUpdateAskGlobalConfigurationPayload = Payload & {
|
|
180049
|
+
__typename?: 'MercuryUpdateAskGlobalConfigurationPayload';
|
|
180050
|
+
configuration?: Maybe<MercuryAskGlobalConfiguration>;
|
|
180051
|
+
errors?: Maybe<Array<MutationError>>;
|
|
180052
|
+
success: Scalars['Boolean']['output'];
|
|
180053
|
+
};
|
|
179560
180054
|
export type MercuryUpdateAskGlobalFieldConfigurationInput = {
|
|
179561
180055
|
cloudId: Scalars['ID']['input'];
|
|
179562
180056
|
searchKey: Scalars['ID']['input'];
|
|
@@ -181022,7 +181516,6 @@ export type Mutation = {
|
|
|
181022
181516
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
181023
181517
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
181024
181518
|
agentStudio_upgradeSchema?: Maybe<AgentStudioUpgradeSchemaPayload>;
|
|
181025
|
-
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
181026
181519
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
181027
181520
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
181028
181521
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
@@ -182195,6 +182688,7 @@ export type Mutation = {
|
|
|
182195
182688
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
182196
182689
|
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
182197
182690
|
jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
|
|
182691
|
+
jira_upsertAgentSpaceInstructionV2?: Maybe<JiraUpsertAgentSpaceInstructionV2Payload>;
|
|
182198
182692
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
182199
182693
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
182200
182694
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -182227,6 +182721,7 @@ export type Mutation = {
|
|
|
182227
182721
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
182228
182722
|
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
182229
182723
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
182724
|
+
jsmSelfServe_dummy?: Maybe<Scalars['String']['output']>;
|
|
182230
182725
|
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
182231
182726
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
182232
182727
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -182399,6 +182894,9 @@ export type Mutation = {
|
|
|
182399
182894
|
mercury_updateAskCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
182400
182895
|
mercury_updateAskCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
182401
182896
|
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
182897
|
+
mercury_updateAskGlobalConfigurationAskPromotionSettings?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182898
|
+
mercury_updateAskGlobalConfigurationConnectedWorkEnabled?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182899
|
+
mercury_updateAskGlobalConfigurationEnforceAtlassianWorkflow?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182402
182900
|
mercury_updateAskGlobalFieldConfiguration?: Maybe<MercuryUpdateGlobalFieldConfigurationPayload>;
|
|
182403
182901
|
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
182404
182902
|
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
@@ -182468,12 +182966,14 @@ export type Mutation = {
|
|
|
182468
182966
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
182469
182967
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
182470
182968
|
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
182969
|
+
projects_createDraftUpdate?: Maybe<TownsquareProjectsCreateDraftUpdatePayload>;
|
|
182471
182970
|
projects_createLearning?: Maybe<TownsquareProjectsCreateLearningPayload>;
|
|
182472
182971
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
182473
182972
|
projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
|
|
182474
182973
|
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
182475
182974
|
projects_deleteComment?: Maybe<TownsquareProjectsDeleteCommentPayload>;
|
|
182476
182975
|
projects_deleteDecision?: Maybe<TownsquareProjectsDeleteDecisionPayload>;
|
|
182976
|
+
projects_deleteDraftUpdate?: Maybe<TownsquareProjectsDeleteDraftUpdatePayload>;
|
|
182477
182977
|
projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
|
|
182478
182978
|
projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
|
|
182479
182979
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
@@ -182517,6 +183017,8 @@ export type Mutation = {
|
|
|
182517
183017
|
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
182518
183018
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
182519
183019
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
183020
|
+
psm_publishUserKey?: Maybe<PsmPublishUserKeyPayload>;
|
|
183021
|
+
psm_raiseTicket?: Maybe<PsmRaiseTicketPayload>;
|
|
182520
183022
|
psm_recordUserAction?: Maybe<PsmRecordUserActionPayload>;
|
|
182521
183023
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
182522
183024
|
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
@@ -183203,12 +183705,6 @@ export type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs = {
|
|
|
183203
183705
|
export type MutationAgentStudio_UpgradeSchemaArgs = {
|
|
183204
183706
|
id: Scalars['ID']['input'];
|
|
183205
183707
|
};
|
|
183206
|
-
export type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
183207
|
-
cloudId: Scalars['String']['input'];
|
|
183208
|
-
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
183209
|
-
productType: AgentStudioProductType;
|
|
183210
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
183211
|
-
};
|
|
183212
183708
|
export type MutationAgentWorkspace_ArchiveSkillArgs = {
|
|
183213
183709
|
input: AgentWorkspaceArchiveSkillInput;
|
|
183214
183710
|
};
|
|
@@ -187244,6 +187740,10 @@ export type MutationJira_UpsertAgentSpaceInstructionArgs = {
|
|
|
187244
187740
|
cloudId: Scalars['ID']['input'];
|
|
187245
187741
|
input: JiraUpsertAgentSpaceInstructionInput;
|
|
187246
187742
|
};
|
|
187743
|
+
export type MutationJira_UpsertAgentSpaceInstructionV2Args = {
|
|
187744
|
+
cloudId: Scalars['ID']['input'];
|
|
187745
|
+
input: JiraUpsertAgentSpaceInstructionInput;
|
|
187746
|
+
};
|
|
187247
187747
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
187248
187748
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
187249
187749
|
};
|
|
@@ -187357,6 +187857,9 @@ export type MutationJsmConversation_RejectInviteArgs = {
|
|
|
187357
187857
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
187358
187858
|
input: JsmConversationSettingsInput;
|
|
187359
187859
|
};
|
|
187860
|
+
export type MutationJsmSelfServe_DummyArgs = {
|
|
187861
|
+
projectAri: Scalars['String']['input'];
|
|
187862
|
+
};
|
|
187360
187863
|
export type MutationJsmTelemetry_AddChartArgs = {
|
|
187361
187864
|
cloudId: Scalars['ID']['input'];
|
|
187362
187865
|
input: JsmTelemetryAddChartInput;
|
|
@@ -187970,6 +188473,15 @@ export type MutationMercury_UpdateAskCustomFieldDefinitionOptionArgs = {
|
|
|
187970
188473
|
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
187971
188474
|
input: MercuryUpdateAskDescriptionInput;
|
|
187972
188475
|
};
|
|
188476
|
+
export type MutationMercury_UpdateAskGlobalConfigurationAskPromotionSettingsArgs = {
|
|
188477
|
+
input: MercuryUpdateAskGlobalConfigurationAskPromotionSettingsInput;
|
|
188478
|
+
};
|
|
188479
|
+
export type MutationMercury_UpdateAskGlobalConfigurationConnectedWorkEnabledArgs = {
|
|
188480
|
+
input: MercuryUpdateAskGlobalConfigurationConnectedWorkEnabledInput;
|
|
188481
|
+
};
|
|
188482
|
+
export type MutationMercury_UpdateAskGlobalConfigurationEnforceAtlassianWorkflowArgs = {
|
|
188483
|
+
input: MercuryUpdateAskGlobalConfigurationEnforceAtlassianWorkflowInput;
|
|
188484
|
+
};
|
|
187973
188485
|
export type MutationMercury_UpdateAskGlobalFieldConfigurationArgs = {
|
|
187974
188486
|
input: MercuryUpdateAskGlobalFieldConfigurationInput;
|
|
187975
188487
|
};
|
|
@@ -188174,6 +188686,9 @@ export type MutationProjects_CreateCommentArgs = {
|
|
|
188174
188686
|
export type MutationProjects_CreateDecisionArgs = {
|
|
188175
188687
|
input: TownsquareProjectsCreateDecisionInput;
|
|
188176
188688
|
};
|
|
188689
|
+
export type MutationProjects_CreateDraftUpdateArgs = {
|
|
188690
|
+
input: TownsquareProjectsCreateDraftUpdateInput;
|
|
188691
|
+
};
|
|
188177
188692
|
export type MutationProjects_CreateLearningArgs = {
|
|
188178
188693
|
input: TownsquareProjectsCreateLearningInput;
|
|
188179
188694
|
};
|
|
@@ -188192,6 +188707,9 @@ export type MutationProjects_DeleteCommentArgs = {
|
|
|
188192
188707
|
export type MutationProjects_DeleteDecisionArgs = {
|
|
188193
188708
|
input: TownsquareProjectsDeleteDecisionInput;
|
|
188194
188709
|
};
|
|
188710
|
+
export type MutationProjects_DeleteDraftUpdateArgs = {
|
|
188711
|
+
input: TownsquareProjectsDeleteDraftUpdateInput;
|
|
188712
|
+
};
|
|
188195
188713
|
export type MutationProjects_DeleteLatestUpdateArgs = {
|
|
188196
188714
|
input?: InputMaybe<TownsquareProjectsDeleteLatestUpdateInput>;
|
|
188197
188715
|
};
|
|
@@ -188322,6 +188840,14 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
188322
188840
|
cloudId: Scalars['ID']['input'];
|
|
188323
188841
|
input: PsmOnboardTenantInput;
|
|
188324
188842
|
};
|
|
188843
|
+
export type MutationPsm_PublishUserKeyArgs = {
|
|
188844
|
+
cloudId: Scalars['ID']['input'];
|
|
188845
|
+
input: PsmPublishUserKeyInput;
|
|
188846
|
+
};
|
|
188847
|
+
export type MutationPsm_RaiseTicketArgs = {
|
|
188848
|
+
cloudId: Scalars['ID']['input'];
|
|
188849
|
+
input: PsmRaiseTicketInput;
|
|
188850
|
+
};
|
|
188325
188851
|
export type MutationPsm_RecordUserActionArgs = {
|
|
188326
188852
|
cloudId: Scalars['ID']['input'];
|
|
188327
188853
|
input: PsmRecordUserActionInput;
|
|
@@ -191619,6 +192145,7 @@ export type PremiumExtensionsFeature = {
|
|
|
191619
192145
|
isEntitled: Scalars['Boolean']['output'];
|
|
191620
192146
|
};
|
|
191621
192147
|
export declare enum PrincipalFilterType {
|
|
192148
|
+
Agent = "AGENT",
|
|
191622
192149
|
App = "APP",
|
|
191623
192150
|
Group = "GROUP",
|
|
191624
192151
|
Guest = "GUEST",
|
|
@@ -192195,6 +192722,11 @@ export type PsmDeviceIdentity = {
|
|
|
192195
192722
|
owner?: Maybe<PsmDeviceOwner>;
|
|
192196
192723
|
serialNumber: Scalars['String']['output'];
|
|
192197
192724
|
};
|
|
192725
|
+
export type PsmDeviceKeys = {
|
|
192726
|
+
__typename?: 'PsmDeviceKeys';
|
|
192727
|
+
pairingId: Scalars['String']['output'];
|
|
192728
|
+
publicKeyPins: Array<Scalars['String']['output']>;
|
|
192729
|
+
};
|
|
192198
192730
|
export type PsmDeviceOwner = {
|
|
192199
192731
|
__typename?: 'PsmDeviceOwner';
|
|
192200
192732
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -192360,6 +192892,10 @@ export type PsmLinkSensorKbArticlesPayload = Payload & {
|
|
|
192360
192892
|
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
192361
192893
|
success: Scalars['Boolean']['output'];
|
|
192362
192894
|
};
|
|
192895
|
+
export type PsmMessageMetadata = {
|
|
192896
|
+
__typename?: 'PsmMessageMetadata';
|
|
192897
|
+
link: Scalars['String']['output'];
|
|
192898
|
+
};
|
|
192363
192899
|
export declare enum PsmMessageType {
|
|
192364
192900
|
Markdown = "MARKDOWN",
|
|
192365
192901
|
Ticket = "TICKET"
|
|
@@ -192429,6 +192965,48 @@ export type PsmOnboardTenantStatusResult = {
|
|
|
192429
192965
|
spaceId: Scalars['ID']['output'];
|
|
192430
192966
|
status: PsmOnboardTenantStatus;
|
|
192431
192967
|
};
|
|
192968
|
+
export type PsmPublishUserKeyInput = {
|
|
192969
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
192970
|
+
osUserId: Scalars['String']['input'];
|
|
192971
|
+
pairingId: Scalars['String']['input'];
|
|
192972
|
+
publicKeyPin: Scalars['String']['input'];
|
|
192973
|
+
serialNumber: Scalars['String']['input'];
|
|
192974
|
+
};
|
|
192975
|
+
export type PsmPublishUserKeyPayload = Payload & {
|
|
192976
|
+
__typename?: 'PsmPublishUserKeyPayload';
|
|
192977
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192978
|
+
success: Scalars['Boolean']['output'];
|
|
192979
|
+
userKey?: Maybe<PsmUserKey>;
|
|
192980
|
+
};
|
|
192981
|
+
export type PsmRaiseTicketConversation = {
|
|
192982
|
+
__typename?: 'PsmRaiseTicketConversation';
|
|
192983
|
+
actions: Array<PsmSensorEventAction>;
|
|
192984
|
+
conversationId: Scalars['ID']['output'];
|
|
192985
|
+
directive: PsmEventDirective;
|
|
192986
|
+
messages: Array<PsmSensorEventMessage>;
|
|
192987
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
192988
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
192989
|
+
};
|
|
192990
|
+
export type PsmRaiseTicketInput = {
|
|
192991
|
+
accountId: Scalars['ID']['input'];
|
|
192992
|
+
conversationId: Scalars['ID']['input'];
|
|
192993
|
+
deviceId: Scalars['ID']['input'];
|
|
192994
|
+
};
|
|
192995
|
+
export type PsmRaiseTicketPayload = Payload & {
|
|
192996
|
+
__typename?: 'PsmRaiseTicketPayload';
|
|
192997
|
+
conversation?: Maybe<PsmRaiseTicketConversation>;
|
|
192998
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192999
|
+
success: Scalars['Boolean']['output'];
|
|
193000
|
+
};
|
|
193001
|
+
export type PsmRecordUserActionConversation = {
|
|
193002
|
+
__typename?: 'PsmRecordUserActionConversation';
|
|
193003
|
+
actions: Array<PsmSensorEventAction>;
|
|
193004
|
+
conversationId: Scalars['ID']['output'];
|
|
193005
|
+
directive: PsmEventDirective;
|
|
193006
|
+
messages: Array<PsmSensorEventMessage>;
|
|
193007
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
193008
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
193009
|
+
};
|
|
192432
193010
|
export type PsmRecordUserActionInput = {
|
|
192433
193011
|
accountId: Scalars['ID']['input'];
|
|
192434
193012
|
action: PsmUserActionType;
|
|
@@ -192438,6 +193016,7 @@ export type PsmRecordUserActionInput = {
|
|
|
192438
193016
|
};
|
|
192439
193017
|
export type PsmRecordUserActionPayload = Payload & {
|
|
192440
193018
|
__typename?: 'PsmRecordUserActionPayload';
|
|
193019
|
+
conversation?: Maybe<PsmRecordUserActionConversation>;
|
|
192441
193020
|
errors?: Maybe<Array<MutationError>>;
|
|
192442
193021
|
success: Scalars['Boolean']['output'];
|
|
192443
193022
|
};
|
|
@@ -192488,6 +193067,7 @@ export type PsmRemediationCategoryInfo = {
|
|
|
192488
193067
|
};
|
|
192489
193068
|
export type PsmRemediationHistoryEvent = {
|
|
192490
193069
|
__typename?: 'PsmRemediationHistoryEvent';
|
|
193070
|
+
detailMessage?: Maybe<Scalars['String']['output']>;
|
|
192491
193071
|
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
192492
193072
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
192493
193073
|
executedAt: Scalars['DateTime']['output'];
|
|
@@ -192526,6 +193106,7 @@ export type PsmRemediationResultInfo = {
|
|
|
192526
193106
|
export type PsmRemediationSensor = {
|
|
192527
193107
|
__typename?: 'PsmRemediationSensor';
|
|
192528
193108
|
events?: Maybe<Array<PsmRemediationHistoryEvent>>;
|
|
193109
|
+
faultId?: Maybe<Scalars['ID']['output']>;
|
|
192529
193110
|
name?: Maybe<Scalars['String']['output']>;
|
|
192530
193111
|
providerSensorId: Scalars['ID']['output'];
|
|
192531
193112
|
sensorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -192654,6 +193235,7 @@ export type PsmSensorEventMessage = {
|
|
|
192654
193235
|
detail: Scalars['String']['output'];
|
|
192655
193236
|
lastActivityTime?: Maybe<Scalars['DateTime']['output']>;
|
|
192656
193237
|
messageType: PsmMessageType;
|
|
193238
|
+
metadata?: Maybe<PsmMessageMetadata>;
|
|
192657
193239
|
summary: Scalars['String']['output'];
|
|
192658
193240
|
title: Scalars['String']['output'];
|
|
192659
193241
|
};
|
|
@@ -192674,6 +193256,7 @@ export declare enum PsmSensorEventType {
|
|
|
192674
193256
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
192675
193257
|
Lagged = "LAGGED",
|
|
192676
193258
|
Shutdown = "SHUTDOWN",
|
|
193259
|
+
TicketRaised = "TICKET_RAISED",
|
|
192677
193260
|
UserResolved = "USER_RESOLVED",
|
|
192678
193261
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
192679
193262
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
@@ -192799,6 +193382,17 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
|
|
|
192799
193382
|
export declare enum PsmUserActionType {
|
|
192800
193383
|
Resolved = "RESOLVED"
|
|
192801
193384
|
}
|
|
193385
|
+
export type PsmUserKey = {
|
|
193386
|
+
__typename?: 'PsmUserKey';
|
|
193387
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
193388
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
193389
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
193390
|
+
osUserId?: Maybe<Scalars['String']['output']>;
|
|
193391
|
+
pairingId: Scalars['String']['output'];
|
|
193392
|
+
publicKeyPins?: Maybe<Array<Scalars['String']['output']>>;
|
|
193393
|
+
serialNumber?: Maybe<Scalars['String']['output']>;
|
|
193394
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
193395
|
+
};
|
|
192802
193396
|
export type PublicLink = {
|
|
192803
193397
|
__typename?: 'PublicLink';
|
|
192804
193398
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -193118,7 +193712,8 @@ export type Query = {
|
|
|
193118
193712
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
193119
193713
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
193120
193714
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
193121
|
-
|
|
193715
|
+
admin_appActivationPreview?: Maybe<AdminAppActivationPreviewResponse>;
|
|
193716
|
+
admin_appActivationStatus?: Maybe<AdminAppActivationStatusResponse>;
|
|
193122
193717
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
193123
193718
|
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
193124
193719
|
admin_auditLogBackgroundQueries?: Maybe<AdminAuditLogBackgroundQueryConnection>;
|
|
@@ -193782,6 +194377,7 @@ export type Query = {
|
|
|
193782
194377
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
193783
194378
|
confluence_topic?: Maybe<ConfluenceTopic>;
|
|
193784
194379
|
confluence_topics?: Maybe<ConfluenceTopicConnection>;
|
|
194380
|
+
confluence_updateModeChangeAsyncStatus?: Maybe<ConfluenceUpdateModeChangeAsyncStatus>;
|
|
193785
194381
|
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
193786
194382
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
193787
194383
|
confluence_userSetup?: Maybe<ConfluenceUserSetupResult>;
|
|
@@ -193996,6 +194592,7 @@ export type Query = {
|
|
|
193996
194592
|
dlp_getFalsePositive?: Maybe<DlpFalsePositive>;
|
|
193997
194593
|
dlp_getFalsePositives?: Maybe<DlpFalsePositivesListResponse>;
|
|
193998
194594
|
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
194595
|
+
dlp_getFindingsSummary?: Maybe<DlpFindingsSummaryResponse>;
|
|
193999
194596
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
194000
194597
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
194001
194598
|
dvcs?: Maybe<DvcsQuery>;
|
|
@@ -196334,6 +196931,7 @@ export type Query = {
|
|
|
196334
196931
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
196335
196932
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
196336
196933
|
growthUnifiedProfile_siteProfile?: Maybe<GrowthUnifiedProfileSiteProfileResult>;
|
|
196934
|
+
gtm_customer?: Maybe<GtmCustomer>;
|
|
196337
196935
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
196338
196936
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
196339
196937
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
@@ -196381,6 +196979,8 @@ export type Query = {
|
|
|
196381
196979
|
jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
196382
196980
|
jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
196383
196981
|
jira_agentSpaceInstructionsByIds?: Maybe<Array<Maybe<JiraAgentSpaceInstruction>>>;
|
|
196982
|
+
jira_agentSpaceInstructionsByIdsV2?: Maybe<Array<Maybe<JiraAgentSpaceInstructionV2>>>;
|
|
196983
|
+
jira_agentSpaceInstructionsV2?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
196384
196984
|
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
196385
196985
|
jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
196386
196986
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
@@ -196477,6 +197077,7 @@ export type Query = {
|
|
|
196477
197077
|
jsmConversation_myClosedConversations?: Maybe<JsmConversationConnection>;
|
|
196478
197078
|
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
196479
197079
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
197080
|
+
jsmSelfServe_conversationStarters?: Maybe<JsmSelfServeConversationStartersResult>;
|
|
196480
197081
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
196481
197082
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
196482
197083
|
jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
|
|
@@ -196504,6 +197105,7 @@ export type Query = {
|
|
|
196504
197105
|
kitsune_connectorConfigs?: Maybe<Array<KitsuneConnectorConfig>>;
|
|
196505
197106
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
196506
197107
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
197108
|
+
kitsune_customersByAri?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
196507
197109
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
196508
197110
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
196509
197111
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
@@ -196514,6 +197116,7 @@ export type Query = {
|
|
|
196514
197116
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
196515
197117
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
196516
197118
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
197119
|
+
kitsune_organizationsByAri?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
196517
197120
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
196518
197121
|
kitsune_rollupCustomers?: Maybe<KitsuneCustomersRollup>;
|
|
196519
197122
|
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
@@ -196608,6 +197211,7 @@ export type Query = {
|
|
|
196608
197211
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
196609
197212
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
196610
197213
|
marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
|
|
197214
|
+
marketplaceStore_dynamicRecommendations?: Maybe<MarketplaceStoreDynamicRecommendationsResponse>;
|
|
196611
197215
|
marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
|
|
196612
197216
|
marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
|
|
196613
197217
|
marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
@@ -196633,6 +197237,7 @@ export type Query = {
|
|
|
196633
197237
|
mercury_askTypes?: Maybe<MercuryAskTypeConnection>;
|
|
196634
197238
|
mercury_askTypesByIds?: Maybe<Array<Maybe<MercuryAskType>>>;
|
|
196635
197239
|
mercury_asks?: Maybe<MercuryAskConnection>;
|
|
197240
|
+
mercury_asksByExternalIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
196636
197241
|
mercury_asksByIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
196637
197242
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
196638
197243
|
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
@@ -196753,6 +197358,7 @@ export type Query = {
|
|
|
196753
197358
|
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
196754
197359
|
psm_device?: Maybe<PsmDevice>;
|
|
196755
197360
|
psm_deviceHealthTrend?: Maybe<PsmDeviceHealthTrend>;
|
|
197361
|
+
psm_deviceKeys?: Maybe<PsmDeviceKeys>;
|
|
196756
197362
|
psm_deviceRemediationHistory?: Maybe<PsmDeviceRemediationHistory>;
|
|
196757
197363
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
196758
197364
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
@@ -196982,6 +197588,7 @@ export type Query = {
|
|
|
196982
197588
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
196983
197589
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
196984
197590
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
197591
|
+
surveys_surveysByProject?: Maybe<SurveysListResult>;
|
|
196985
197592
|
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
196986
197593
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
196987
197594
|
tags_getTag?: Maybe<TagsResponse>;
|
|
@@ -197027,6 +197634,7 @@ export type Query = {
|
|
|
197027
197634
|
traceTiming?: Maybe<TraceTiming>;
|
|
197028
197635
|
trello: TrelloQueryApi;
|
|
197029
197636
|
unified?: Maybe<UnifiedQuery>;
|
|
197637
|
+
unitsRolloutSettings?: Maybe<UnitsRolloutSettings>;
|
|
197030
197638
|
user?: Maybe<User>;
|
|
197031
197639
|
userAccessStatus?: Maybe<AccessStatus>;
|
|
197032
197640
|
userCanCreateContent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -197084,8 +197692,12 @@ export type QueryAdmin_AiPoliciesArgs = {
|
|
|
197084
197692
|
orgId: Scalars['ID']['input'];
|
|
197085
197693
|
searchInput?: InputMaybe<AdminAiPoliciesSearchInput>;
|
|
197086
197694
|
};
|
|
197695
|
+
export type QueryAdmin_AppActivationPreviewArgs = {
|
|
197696
|
+
input: AdminAppActivationPreviewInput;
|
|
197697
|
+
};
|
|
197087
197698
|
export type QueryAdmin_AppActivationStatusArgs = {
|
|
197088
197699
|
activationId: Scalars['ID']['input'];
|
|
197700
|
+
orgId: Scalars['ID']['input'];
|
|
197089
197701
|
};
|
|
197090
197702
|
export type QueryAdmin_AppModulesArgs = {
|
|
197091
197703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -200372,6 +200984,10 @@ export type QueryConfluence_TopicsArgs = {
|
|
|
200372
200984
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
200373
200985
|
namePattern?: InputMaybe<Scalars['String']['input']>;
|
|
200374
200986
|
};
|
|
200987
|
+
export type QueryConfluence_UpdateModeChangeAsyncStatusArgs = {
|
|
200988
|
+
cloudId: Scalars['ID']['input'];
|
|
200989
|
+
longTaskId: Scalars['ID']['input'];
|
|
200990
|
+
};
|
|
200375
200991
|
export type QueryConfluence_UserClassesArgs = {
|
|
200376
200992
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
200377
200993
|
cloudId: Scalars['ID']['input'];
|
|
@@ -201434,6 +202050,10 @@ export type QueryDlp_GetFindingsArgs = {
|
|
|
201434
202050
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
201435
202051
|
scope?: InputMaybe<DlpScopeInput>;
|
|
201436
202052
|
};
|
|
202053
|
+
export type QueryDlp_GetFindingsSummaryArgs = {
|
|
202054
|
+
orgId: Scalars['String']['input'];
|
|
202055
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
202056
|
+
};
|
|
201437
202057
|
export type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
201438
202058
|
orgId: Scalars['String']['input'];
|
|
201439
202059
|
taskId: Scalars['String']['input'];
|
|
@@ -201564,15 +202184,18 @@ export type QueryGetAppInstallationFacetsArgs = {
|
|
|
201564
202184
|
filterName: InstallationFacetFilter;
|
|
201565
202185
|
};
|
|
201566
202186
|
export type QueryGetAppInstallationsArgs = {
|
|
202187
|
+
analyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201567
202188
|
appId: Scalars['ID']['input'];
|
|
201568
202189
|
atlassianApp?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201569
202190
|
contexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201570
202191
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
202192
|
+
customMetricsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201571
202193
|
edition?: InputMaybe<Array<InstallationEditionInput>>;
|
|
201572
202194
|
environmentId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201573
202195
|
installedOn?: InputMaybe<DateSearchInput>;
|
|
201574
202196
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
201575
202197
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
202198
|
+
logsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201576
202199
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
201577
202200
|
sort?: InputMaybe<InstallationSortInput>;
|
|
201578
202201
|
status?: InputMaybe<InstallationStatus>;
|
|
@@ -201872,6 +202495,7 @@ export type QueryGraphIntegration_GlobalMcpToolsArgs = {
|
|
|
201872
202495
|
};
|
|
201873
202496
|
export type QueryGraphIntegration_McpAdminManagementCuratedMcpServerTemplatesArgs = {
|
|
201874
202497
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202498
|
+
authTypes?: InputMaybe<Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>>;
|
|
201875
202499
|
cloudId: Scalars['ID']['input'];
|
|
201876
202500
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
201877
202501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -218233,6 +218857,10 @@ export type QueryGrowthUnifiedProfile_GetUnifiedUserProfileArgs = {
|
|
|
218233
218857
|
export type QueryGrowthUnifiedProfile_SiteProfileArgs = {
|
|
218234
218858
|
tenantId: Scalars['ID']['input'];
|
|
218235
218859
|
};
|
|
218860
|
+
export type QueryGtm_CustomerArgs = {
|
|
218861
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
218862
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
218863
|
+
};
|
|
218236
218864
|
export type QueryHasUserCommentedArgs = {
|
|
218237
218865
|
accountId: Scalars['String']['input'];
|
|
218238
218866
|
};
|
|
@@ -218394,6 +219022,13 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
218394
219022
|
export type QueryJira_AgentSpaceInstructionsByIdsArgs = {
|
|
218395
219023
|
ids: Array<Scalars['ID']['input']>;
|
|
218396
219024
|
};
|
|
219025
|
+
export type QueryJira_AgentSpaceInstructionsByIdsV2Args = {
|
|
219026
|
+
ids: Array<Scalars['ID']['input']>;
|
|
219027
|
+
};
|
|
219028
|
+
export type QueryJira_AgentSpaceInstructionsV2Args = {
|
|
219029
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
219030
|
+
projectAri: Scalars['ID']['input'];
|
|
219031
|
+
};
|
|
218397
219032
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
218398
219033
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
218399
219034
|
cloudId: Scalars['ID']['input'];
|
|
@@ -218839,6 +219474,10 @@ export type QueryJsmConversation_SettingArgs = {
|
|
|
218839
219474
|
export type QueryJsmConversation_SettingsArgs = {
|
|
218840
219475
|
projectAri: Scalars['String']['input'];
|
|
218841
219476
|
};
|
|
219477
|
+
export type QueryJsmSelfServe_ConversationStartersArgs = {
|
|
219478
|
+
cloudId: Scalars['ID']['input'];
|
|
219479
|
+
projectKey: Scalars['String']['input'];
|
|
219480
|
+
};
|
|
218842
219481
|
export type QueryJsmTelemetry_AiPromptArgs = {
|
|
218843
219482
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
218844
219483
|
prompt: Scalars['String']['input'];
|
|
@@ -218957,6 +219596,9 @@ export type QueryKitsune_CustomersArgs = {
|
|
|
218957
219596
|
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
218958
219597
|
workspaceAri: Scalars['ID']['input'];
|
|
218959
219598
|
};
|
|
219599
|
+
export type QueryKitsune_CustomersByAriArgs = {
|
|
219600
|
+
aris: Array<Scalars['ID']['input']>;
|
|
219601
|
+
};
|
|
218960
219602
|
export type QueryKitsune_EntitlementsArgs = {
|
|
218961
219603
|
workspaceAri: Scalars['ID']['input'];
|
|
218962
219604
|
};
|
|
@@ -218995,6 +219637,9 @@ export type QueryKitsune_OrganizationsArgs = {
|
|
|
218995
219637
|
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
218996
219638
|
workspaceAri: Scalars['ID']['input'];
|
|
218997
219639
|
};
|
|
219640
|
+
export type QueryKitsune_OrganizationsByAriArgs = {
|
|
219641
|
+
aris: Array<Scalars['ID']['input']>;
|
|
219642
|
+
};
|
|
218998
219643
|
export type QueryKitsune_OrganizationsByNameArgs = {
|
|
218999
219644
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
219000
219645
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -219006,6 +219651,7 @@ export type QueryKitsune_SearchChunkArgs = {
|
|
|
219006
219651
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
219007
219652
|
options?: InputMaybe<KitsuneSearchChunkOptions>;
|
|
219008
219653
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
219654
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
219009
219655
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
219010
219656
|
workspaceAri: Scalars['ID']['input'];
|
|
219011
219657
|
};
|
|
@@ -219349,6 +219995,9 @@ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
|
|
|
219349
219995
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
219350
219996
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
219351
219997
|
};
|
|
219998
|
+
export type QueryMarketplaceStore_DynamicRecommendationsArgs = {
|
|
219999
|
+
input: MarketplaceStoreDynamicRecommendationsInput;
|
|
220000
|
+
};
|
|
219352
220001
|
export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
|
|
219353
220002
|
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
219354
220003
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
@@ -219436,6 +220085,10 @@ export type QueryMercury_AsksArgs = {
|
|
|
219436
220085
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
219437
220086
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
219438
220087
|
};
|
|
220088
|
+
export type QueryMercury_AsksByExternalIdsArgs = {
|
|
220089
|
+
cloudId: Scalars['ID']['input'];
|
|
220090
|
+
ids: Array<Scalars['String']['input']>;
|
|
220091
|
+
};
|
|
219439
220092
|
export type QueryMercury_AsksByIdsArgs = {
|
|
219440
220093
|
ids: Array<Scalars['ID']['input']>;
|
|
219441
220094
|
};
|
|
@@ -219873,6 +220526,10 @@ export type QueryPsm_DeviceHealthTrendArgs = {
|
|
|
219873
220526
|
spaceId: Scalars['ID']['input'];
|
|
219874
220527
|
timeWindow?: PsmTimeWindow;
|
|
219875
220528
|
};
|
|
220529
|
+
export type QueryPsm_DeviceKeysArgs = {
|
|
220530
|
+
cloudId: Scalars['ID']['input'];
|
|
220531
|
+
pairingId: Scalars['String']['input'];
|
|
220532
|
+
};
|
|
219876
220533
|
export type QueryPsm_DeviceRemediationHistoryArgs = {
|
|
219877
220534
|
cloudId: Scalars['ID']['input'];
|
|
219878
220535
|
serialNumber: Scalars['String']['input'];
|
|
@@ -220860,6 +221517,9 @@ export type QuerySuggestedSpacesArgs = {
|
|
|
220860
221517
|
export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
220861
221518
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
220862
221519
|
};
|
|
221520
|
+
export type QuerySurveys_SurveysByProjectArgs = {
|
|
221521
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
221522
|
+
};
|
|
220863
221523
|
export type QueryTags_GetAssignedLabelsArgs = {
|
|
220864
221524
|
entityAri: Scalars['String']['input'];
|
|
220865
221525
|
kind: Scalars['String']['input'];
|
|
@@ -221048,6 +221708,9 @@ export type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
221048
221708
|
export type QueryTownsquareUnsharded_FusionConfigByJiraIssueArisArgs = {
|
|
221049
221709
|
jiraIssueAris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
221050
221710
|
};
|
|
221711
|
+
export type QueryUnitsRolloutSettingsArgs = {
|
|
221712
|
+
orgId: Scalars['ID']['input'];
|
|
221713
|
+
};
|
|
221051
221714
|
export type QueryUserArgs = {
|
|
221052
221715
|
accountId: Scalars['ID']['input'];
|
|
221053
221716
|
};
|
|
@@ -221824,7 +222487,9 @@ export declare enum RadarNotificationType {
|
|
|
221824
222487
|
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
221825
222488
|
DataIngestionSuccess = "DATA_INGESTION_SUCCESS",
|
|
221826
222489
|
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE",
|
|
221827
|
-
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST"
|
|
222490
|
+
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST",
|
|
222491
|
+
TaxonomyGenerationFailure = "TAXONOMY_GENERATION_FAILURE",
|
|
222492
|
+
TaxonomyGenerationSuccess = "TAXONOMY_GENERATION_SUCCESS"
|
|
221828
222493
|
}
|
|
221829
222494
|
export declare enum RadarNumericAppearance {
|
|
221830
222495
|
Duration = "DURATION",
|
|
@@ -222005,12 +222670,19 @@ export type RadarSkillAssignmentInput = {
|
|
|
222005
222670
|
};
|
|
222006
222671
|
export type RadarSkillAssignmentMetadata = {
|
|
222007
222672
|
__typename?: 'RadarSkillAssignmentMetadata';
|
|
222673
|
+
classificationType?: Maybe<RadarSkillClassificationType>;
|
|
222008
222674
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
222009
222675
|
skillId: Scalars['ID']['output'];
|
|
222010
222676
|
verificationStatus?: Maybe<RadarSkillVerificationStatus>;
|
|
222011
222677
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
222678
|
+
verifiedByAaid?: Maybe<Scalars['ID']['output']>;
|
|
222679
|
+
verifiedByUser?: Maybe<User>;
|
|
222012
222680
|
workerId: Scalars['ID']['output'];
|
|
222013
222681
|
};
|
|
222682
|
+
export declare enum RadarSkillClassificationType {
|
|
222683
|
+
AiInferred = "AI_INFERRED",
|
|
222684
|
+
Manual = "MANUAL"
|
|
222685
|
+
}
|
|
222014
222686
|
export type RadarSkillConnection = RadarConnection & {
|
|
222015
222687
|
__typename?: 'RadarSkillConnection';
|
|
222016
222688
|
edges?: Maybe<Array<RadarSkillEdge>>;
|
|
@@ -224359,6 +225031,7 @@ export type SearchConfigurationSiteMetadata = {
|
|
|
224359
225031
|
};
|
|
224360
225032
|
export type SearchConfigurationUnitMetadata = {
|
|
224361
225033
|
__typename?: 'SearchConfigurationUnitMetadata';
|
|
225034
|
+
firstPartyProducts: Array<SearchFirstPartyMetadata>;
|
|
224362
225035
|
id: Scalars['String']['output'];
|
|
224363
225036
|
siteName: Scalars['String']['output'];
|
|
224364
225037
|
url: Scalars['String']['output'];
|
|
@@ -224714,9 +225387,15 @@ export declare enum SearchLinkedResultCategory {
|
|
|
224714
225387
|
export type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
224715
225388
|
export type SearchLoomFilters = {
|
|
224716
225389
|
folderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225390
|
+
playlistIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
224717
225391
|
spaceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
224718
225392
|
tagNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225393
|
+
videoTypes?: InputMaybe<Array<SearchLoomVideoType>>;
|
|
224719
225394
|
};
|
|
225395
|
+
export declare enum SearchLoomVideoType {
|
|
225396
|
+
AsyncVideo = "ASYNC_VIDEO",
|
|
225397
|
+
MeetingRecording = "MEETING_RECORDING"
|
|
225398
|
+
}
|
|
224720
225399
|
export type SearchMatchingLayer = {
|
|
224721
225400
|
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
224722
225401
|
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -225383,6 +226062,27 @@ export type SearchResultLoomFolder = SearchResult & {
|
|
|
225383
226062
|
type: SearchResultType;
|
|
225384
226063
|
url: Scalars['String']['output'];
|
|
225385
226064
|
};
|
|
226065
|
+
export type SearchResultLoomPlaylist = SearchResult & {
|
|
226066
|
+
__typename?: 'SearchResultLoomPlaylist';
|
|
226067
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
226068
|
+
creatorAaid?: Maybe<Scalars['String']['output']>;
|
|
226069
|
+
description: Scalars['String']['output'];
|
|
226070
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
226071
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
226072
|
+
id: Scalars['ID']['output'];
|
|
226073
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
226074
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
226075
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
226076
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
226077
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
226078
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
226079
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
226080
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
226081
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
226082
|
+
title: Scalars['String']['output'];
|
|
226083
|
+
type: SearchResultType;
|
|
226084
|
+
url: Scalars['String']['output'];
|
|
226085
|
+
};
|
|
225386
226086
|
export type SearchResultLoomSpace = SearchResult & {
|
|
225387
226087
|
__typename?: 'SearchResultLoomSpace';
|
|
225388
226088
|
description: Scalars['String']['output'];
|
|
@@ -225447,6 +226147,7 @@ export type SearchResultLoomVideo = SearchResult & {
|
|
|
225447
226147
|
title: Scalars['String']['output'];
|
|
225448
226148
|
type: SearchResultType;
|
|
225449
226149
|
url: Scalars['String']['output'];
|
|
226150
|
+
videoType: SearchLoomVideoType;
|
|
225450
226151
|
};
|
|
225451
226152
|
export type SearchResultMercuryAsk = SearchResult & {
|
|
225452
226153
|
__typename?: 'SearchResultMercuryAsk';
|
|
@@ -225690,6 +226391,7 @@ export declare enum SearchResultType {
|
|
|
225690
226391
|
OrganizationStatusUpdate = "organization_status_update",
|
|
225691
226392
|
Page = "page",
|
|
225692
226393
|
Plan = "plan",
|
|
226394
|
+
Playlist = "playlist",
|
|
225693
226395
|
Position = "position",
|
|
225694
226396
|
Presentation = "presentation",
|
|
225695
226397
|
Project = "project",
|
|
@@ -232629,6 +233331,7 @@ export type Subscription = {
|
|
|
232629
233331
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
232630
233332
|
jsmConversation_updatesByProject?: Maybe<JsmConversationUpdate>;
|
|
232631
233333
|
jsmConversation_updatesByUser?: Maybe<JsmConversationUpdate>;
|
|
233334
|
+
jsmSelfServe_dummy?: Maybe<Scalars['String']['output']>;
|
|
232632
233335
|
kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
|
|
232633
233336
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
232634
233337
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
@@ -232758,6 +233461,9 @@ export type SubscriptionJsmConversation_UpdatesByProjectArgs = {
|
|
|
232758
233461
|
export type SubscriptionJsmConversation_UpdatesByUserArgs = {
|
|
232759
233462
|
projectAri: Scalars['ID']['input'];
|
|
232760
233463
|
};
|
|
233464
|
+
export type SubscriptionJsmSelfServe_DummyArgs = {
|
|
233465
|
+
projectAri: Scalars['String']['input'];
|
|
233466
|
+
};
|
|
232761
233467
|
export type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
232762
233468
|
spaceAri: Scalars['ID']['input'];
|
|
232763
233469
|
};
|
|
@@ -233288,6 +233994,104 @@ export type SupportRequests = {
|
|
|
233288
233994
|
page: Array<SupportRequest>;
|
|
233289
233995
|
total: Scalars['Int']['output'];
|
|
233290
233996
|
};
|
|
233997
|
+
export declare enum SurveysAccess {
|
|
233998
|
+
Open = "OPEN",
|
|
233999
|
+
ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
|
|
234000
|
+
ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
|
|
234001
|
+
}
|
|
234002
|
+
export type SurveysDetailsResponse = {
|
|
234003
|
+
__typename?: 'SurveysDetailsResponse';
|
|
234004
|
+
captureEmail: Scalars['Boolean']['output'];
|
|
234005
|
+
categories?: Maybe<Array<Scalars['String']['output']>>;
|
|
234006
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
234007
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
234008
|
+
currentUserPermissionLevel?: Maybe<SurveysEffectivePermissionLevel>;
|
|
234009
|
+
distributionUrl?: Maybe<Scalars['String']['output']>;
|
|
234010
|
+
goal?: Maybe<Scalars['String']['output']>;
|
|
234011
|
+
id: Scalars['ID']['output'];
|
|
234012
|
+
isAnonymous: Scalars['Boolean']['output'];
|
|
234013
|
+
isWorkItemEnabled: Scalars['Boolean']['output'];
|
|
234014
|
+
permissions?: Maybe<SurveysPermissions>;
|
|
234015
|
+
projectId: Scalars['ID']['output'];
|
|
234016
|
+
restrictions: SurveysFormRestrictions;
|
|
234017
|
+
stats: SurveysStats;
|
|
234018
|
+
status: SurveysStatus;
|
|
234019
|
+
surveyCompletionMessage?: Maybe<Scalars['String']['output']>;
|
|
234020
|
+
surveyCompletionMessageTranslations: Array<SurveysTranslationEntry>;
|
|
234021
|
+
templateForm?: Maybe<Scalars['String']['output']>;
|
|
234022
|
+
templateFormId: Scalars['ID']['output'];
|
|
234023
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
234024
|
+
uniqueResponses: Scalars['Boolean']['output'];
|
|
234025
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
234026
|
+
};
|
|
234027
|
+
export declare enum SurveysEffectivePermissionLevel {
|
|
234028
|
+
Edit = "EDIT",
|
|
234029
|
+
None = "NONE",
|
|
234030
|
+
View = "VIEW"
|
|
234031
|
+
}
|
|
234032
|
+
export type SurveysFormRestrictions = {
|
|
234033
|
+
__typename?: 'SurveysFormRestrictions';
|
|
234034
|
+
access: SurveysRestrictionAccess;
|
|
234035
|
+
accessIds: Array<Scalars['String']['output']>;
|
|
234036
|
+
};
|
|
234037
|
+
export type SurveysGenericQueryErrorExtension = SurveysQueryErrorExtension & {
|
|
234038
|
+
__typename?: 'SurveysGenericQueryErrorExtension';
|
|
234039
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
234040
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
234041
|
+
};
|
|
234042
|
+
export type SurveysListResponse = {
|
|
234043
|
+
__typename?: 'SurveysListResponse';
|
|
234044
|
+
surveys: Array<SurveysDetailsResponse>;
|
|
234045
|
+
};
|
|
234046
|
+
export type SurveysListResult = SurveysListResponse | SurveysQueryError;
|
|
234047
|
+
export type SurveysPermissionEntity = {
|
|
234048
|
+
__typename?: 'SurveysPermissionEntity';
|
|
234049
|
+
id: Scalars['String']['output'];
|
|
234050
|
+
level: SurveysPermissionEntityLevel;
|
|
234051
|
+
type: SurveysPermissionEntityType;
|
|
234052
|
+
};
|
|
234053
|
+
export declare enum SurveysPermissionEntityLevel {
|
|
234054
|
+
Edit = "EDIT",
|
|
234055
|
+
View = "VIEW"
|
|
234056
|
+
}
|
|
234057
|
+
export declare enum SurveysPermissionEntityType {
|
|
234058
|
+
Group = "GROUP",
|
|
234059
|
+
User = "USER"
|
|
234060
|
+
}
|
|
234061
|
+
export type SurveysPermissions = {
|
|
234062
|
+
__typename?: 'SurveysPermissions';
|
|
234063
|
+
access: SurveysAccess;
|
|
234064
|
+
entities: Array<SurveysPermissionEntity>;
|
|
234065
|
+
};
|
|
234066
|
+
export type SurveysQueryError = {
|
|
234067
|
+
__typename?: 'SurveysQueryError';
|
|
234068
|
+
extensions?: Maybe<Array<SurveysQueryErrorExtension>>;
|
|
234069
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
234070
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
234071
|
+
};
|
|
234072
|
+
export type SurveysQueryErrorExtension = {
|
|
234073
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
234074
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
234075
|
+
};
|
|
234076
|
+
export declare enum SurveysRestrictionAccess {
|
|
234077
|
+
Restricted = "RESTRICTED",
|
|
234078
|
+
Unrestricted = "UNRESTRICTED"
|
|
234079
|
+
}
|
|
234080
|
+
export type SurveysStats = {
|
|
234081
|
+
__typename?: 'SurveysStats';
|
|
234082
|
+
responseCount: Scalars['Int']['output'];
|
|
234083
|
+
viewCount: Scalars['Int']['output'];
|
|
234084
|
+
};
|
|
234085
|
+
export declare enum SurveysStatus {
|
|
234086
|
+
Completed = "COMPLETED",
|
|
234087
|
+
Draft = "DRAFT",
|
|
234088
|
+
Published = "PUBLISHED"
|
|
234089
|
+
}
|
|
234090
|
+
export type SurveysTranslationEntry = {
|
|
234091
|
+
__typename?: 'SurveysTranslationEntry';
|
|
234092
|
+
locale: Scalars['String']['output'];
|
|
234093
|
+
message: Scalars['String']['output'];
|
|
234094
|
+
};
|
|
233291
234095
|
export type Swimlane = {
|
|
233292
234096
|
__typename?: 'Swimlane';
|
|
233293
234097
|
allowedCardTypes?: Maybe<Array<CardType>>;
|
|
@@ -235289,6 +236093,43 @@ export type TownsquareCompletionProjectState = {
|
|
|
235289
236093
|
export type TownsquareConnectSlackChannelInputMetadata = {
|
|
235290
236094
|
fieldTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
235291
236095
|
};
|
|
236096
|
+
export type TownsquareConnectedUpdateConnection = {
|
|
236097
|
+
__typename?: 'TownsquareConnectedUpdateConnection';
|
|
236098
|
+
edges?: Maybe<Array<Maybe<TownsquareConnectedUpdateEdge>>>;
|
|
236099
|
+
pageInfo: PageInfo;
|
|
236100
|
+
};
|
|
236101
|
+
export type TownsquareConnectedUpdateEdge = {
|
|
236102
|
+
__typename?: 'TownsquareConnectedUpdateEdge';
|
|
236103
|
+
cursor: Scalars['String']['output'];
|
|
236104
|
+
node?: Maybe<TownsquareUpdate>;
|
|
236105
|
+
nodeMissingReason?: Maybe<TownsquareConnectedUpdateNodeMissingReason>;
|
|
236106
|
+
sourceGoal?: Maybe<TownsquareGoal>;
|
|
236107
|
+
sourceProject?: Maybe<TownsquareProject>;
|
|
236108
|
+
};
|
|
236109
|
+
export declare enum TownsquareConnectedUpdateNodeMissingReason {
|
|
236110
|
+
Archived = "ARCHIVED",
|
|
236111
|
+
Deleted = "DELETED",
|
|
236112
|
+
NotPermitted = "NOT_PERMITTED",
|
|
236113
|
+
NoUpdate = "NO_UPDATE"
|
|
236114
|
+
}
|
|
236115
|
+
export type TownsquareConnectedUpdates = {
|
|
236116
|
+
__typename?: 'TownsquareConnectedUpdates';
|
|
236117
|
+
projectUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
236118
|
+
subGoalUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
236119
|
+
successMeasureUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
236120
|
+
};
|
|
236121
|
+
export type TownsquareConnectedUpdatesProjectUpdatesArgs = {
|
|
236122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
236123
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
236124
|
+
};
|
|
236125
|
+
export type TownsquareConnectedUpdatesSubGoalUpdatesArgs = {
|
|
236126
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
236127
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
236128
|
+
};
|
|
236129
|
+
export type TownsquareConnectedUpdatesSuccessMeasureUpdatesArgs = {
|
|
236130
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
236131
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
236132
|
+
};
|
|
235292
236133
|
export type TownsquareContributor = {
|
|
235293
236134
|
__typename?: 'TownsquareContributor';
|
|
235294
236135
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -235661,6 +236502,7 @@ export type TownsquareGoal = Node & {
|
|
|
235661
236502
|
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
235662
236503
|
capabilities?: Maybe<TownsquareGoalCapabilities>;
|
|
235663
236504
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
236505
|
+
connectedUpdates?: Maybe<TownsquareConnectedUpdates>;
|
|
235664
236506
|
creationDate: Scalars['DateTime']['output'];
|
|
235665
236507
|
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
235666
236508
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -235961,6 +236803,7 @@ export type TownsquareGoalDraftUpdate = Node & {
|
|
|
235961
236803
|
__typename?: 'TownsquareGoalDraftUpdate';
|
|
235962
236804
|
author?: Maybe<User>;
|
|
235963
236805
|
goal: TownsquareGoal;
|
|
236806
|
+
highlights?: Maybe<Array<TownsquareUpdateHighlightInputDraft>>;
|
|
235964
236807
|
id: Scalars['ID']['output'];
|
|
235965
236808
|
metricUpdate?: Maybe<Array<TownsquareMetricUpdateInputDraft>>;
|
|
235966
236809
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -238322,6 +239165,15 @@ export type TownsquareProjectsCreateDecisionPayload = {
|
|
|
238322
239165
|
errors?: Maybe<Array<MutationError>>;
|
|
238323
239166
|
success: Scalars['Boolean']['output'];
|
|
238324
239167
|
};
|
|
239168
|
+
export type TownsquareProjectsCreateDraftUpdateInput = {
|
|
239169
|
+
values: TownsquareProjectsCreateUpdateInput;
|
|
239170
|
+
};
|
|
239171
|
+
export type TownsquareProjectsCreateDraftUpdatePayload = {
|
|
239172
|
+
__typename?: 'TownsquareProjectsCreateDraftUpdatePayload';
|
|
239173
|
+
draftUpdate?: Maybe<TownsquareProjectDraftUpdate>;
|
|
239174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239175
|
+
success: Scalars['Boolean']['output'];
|
|
239176
|
+
};
|
|
238325
239177
|
export type TownsquareProjectsCreateInput = {
|
|
238326
239178
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
238327
239179
|
containerId: Scalars['String']['input'];
|
|
@@ -238411,6 +239263,15 @@ export type TownsquareProjectsDeleteDecisionPayload = {
|
|
|
238411
239263
|
errors?: Maybe<Array<MutationError>>;
|
|
238412
239264
|
success: Scalars['Boolean']['output'];
|
|
238413
239265
|
};
|
|
239266
|
+
export type TownsquareProjectsDeleteDraftUpdateInput = {
|
|
239267
|
+
draftId: Scalars['ID']['input'];
|
|
239268
|
+
};
|
|
239269
|
+
export type TownsquareProjectsDeleteDraftUpdatePayload = {
|
|
239270
|
+
__typename?: 'TownsquareProjectsDeleteDraftUpdatePayload';
|
|
239271
|
+
deletedDraftUpdateId?: Maybe<Scalars['ID']['output']>;
|
|
239272
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239273
|
+
success: Scalars['Boolean']['output'];
|
|
239274
|
+
};
|
|
238414
239275
|
export type TownsquareProjectsDeleteLatestUpdateInput = {
|
|
238415
239276
|
updateId: Scalars['ID']['input'];
|
|
238416
239277
|
};
|
|
@@ -239883,6 +240744,7 @@ export type TrelloAgentMessageUpdatedConnection = {
|
|
|
239883
240744
|
};
|
|
239884
240745
|
export type TrelloAgentSession = {
|
|
239885
240746
|
__typename?: 'TrelloAgentSession';
|
|
240747
|
+
creator?: Maybe<TrelloAgentSessionCreator>;
|
|
239886
240748
|
id: Scalars['ID']['output'];
|
|
239887
240749
|
objectId: Scalars['ID']['output'];
|
|
239888
240750
|
tasks: TrelloAgentTaskConnection;
|
|
@@ -239891,6 +240753,10 @@ export type TrelloAgentSessionTasksArgs = {
|
|
|
239891
240753
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
239892
240754
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
239893
240755
|
};
|
|
240756
|
+
export type TrelloAgentSessionCreator = {
|
|
240757
|
+
__typename?: 'TrelloAgentSessionCreator';
|
|
240758
|
+
user?: Maybe<TrelloMember>;
|
|
240759
|
+
};
|
|
239894
240760
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
239895
240761
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
239896
240762
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -242004,6 +242870,16 @@ export type TrelloCreateBoardBackgroundInput = {
|
|
|
242004
242870
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
242005
242871
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
242006
242872
|
};
|
|
242873
|
+
export type TrelloCreateBoardFromRecommendationInput = {
|
|
242874
|
+
recommendationId: Scalars['ID']['input'];
|
|
242875
|
+
};
|
|
242876
|
+
export type TrelloCreateBoardFromRecommendationPayload = Payload & {
|
|
242877
|
+
__typename?: 'TrelloCreateBoardFromRecommendationPayload';
|
|
242878
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
242879
|
+
errors?: Maybe<Array<MutationError>>;
|
|
242880
|
+
session?: Maybe<TrelloAgentSession>;
|
|
242881
|
+
success: Scalars['Boolean']['output'];
|
|
242882
|
+
};
|
|
242007
242883
|
export type TrelloCreateBoardInput = {
|
|
242008
242884
|
creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
|
|
242009
242885
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -243841,6 +244717,7 @@ export type TrelloMutationApi = {
|
|
|
243841
244717
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
243842
244718
|
createAutomationFromPrompt?: Maybe<TrelloCreateAutomationFromPromptPayload>;
|
|
243843
244719
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
244720
|
+
createBoardFromRecommendation?: Maybe<TrelloCreateBoardFromRecommendationPayload>;
|
|
243844
244721
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
243845
244722
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
243846
244723
|
createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
|
|
@@ -244056,6 +244933,9 @@ export type TrelloMutationApiCreateAutomationFromPromptArgs = {
|
|
|
244056
244933
|
export type TrelloMutationApiCreateBoardArgs = {
|
|
244057
244934
|
input: TrelloCreateBoardInput;
|
|
244058
244935
|
};
|
|
244936
|
+
export type TrelloMutationApiCreateBoardFromRecommendationArgs = {
|
|
244937
|
+
input: TrelloCreateBoardFromRecommendationInput;
|
|
244938
|
+
};
|
|
244059
244939
|
export type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
244060
244940
|
input: TrelloCreateBoardWithAiInput;
|
|
244061
244941
|
};
|
|
@@ -245699,6 +246579,7 @@ export type TrelloRefreshManifestInput = {
|
|
|
245699
246579
|
export type TrelloRefreshManifestPayload = Payload & {
|
|
245700
246580
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
245701
246581
|
errors?: Maybe<Array<MutationError>>;
|
|
246582
|
+
job?: Maybe<TrelloJob>;
|
|
245702
246583
|
manifest?: Maybe<TrelloCardManifest>;
|
|
245703
246584
|
success: Scalars['Boolean']['output'];
|
|
245704
246585
|
};
|
|
@@ -248856,6 +249737,10 @@ export type UnifiedUctToken = UnifiedINode & {
|
|
|
248856
249737
|
id: Scalars['ID']['output'];
|
|
248857
249738
|
token: Scalars['String']['output'];
|
|
248858
249739
|
};
|
|
249740
|
+
export type UnitsRolloutSettings = {
|
|
249741
|
+
__typename?: 'UnitsRolloutSettings';
|
|
249742
|
+
boundaryEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
249743
|
+
};
|
|
248859
249744
|
export type UnknownUser = Person & {
|
|
248860
249745
|
__typename?: 'UnknownUser';
|
|
248861
249746
|
accountId?: Maybe<Scalars['String']['output']>;
|