@forge/cli-shared 9.5.1-next.2 → 9.5.1-next.3
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 +8 -0
- package/out/graphql/graphql-types.d.ts +673 -50
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +155 -69
- package/package.json +2 -2
|
@@ -4021,30 +4021,6 @@ export type AdminActivateUserInput = {
|
|
|
4021
4021
|
directoryId: Scalars['String']['input'];
|
|
4022
4022
|
orgId: Scalars['String']['input'];
|
|
4023
4023
|
};
|
|
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
4024
|
export type AdminActiveUserResponsePayload = AdminPayload & {
|
|
4049
4025
|
__typename?: 'AdminActiveUserResponsePayload';
|
|
4050
4026
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
@@ -4115,6 +4091,52 @@ export type AdminApiTokenConfig = {
|
|
|
4115
4091
|
__typename?: 'AdminApiTokenConfig';
|
|
4116
4092
|
isApiTokenAllowed?: Maybe<Scalars['Boolean']['output']>;
|
|
4117
4093
|
};
|
|
4094
|
+
export type AdminAppActivationBlockedError = {
|
|
4095
|
+
__typename?: 'AdminAppActivationBlockedError';
|
|
4096
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4097
|
+
reason?: Maybe<AdminAppActivationBlockedReason>;
|
|
4098
|
+
};
|
|
4099
|
+
export declare enum AdminAppActivationBlockedReason {
|
|
4100
|
+
SiteBehindPayments = "SITE_BEHIND_PAYMENTS"
|
|
4101
|
+
}
|
|
4102
|
+
export type AdminAppActivationError = {
|
|
4103
|
+
__typename?: 'AdminAppActivationError';
|
|
4104
|
+
code: AdminAppActivationErrorCode;
|
|
4105
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4106
|
+
};
|
|
4107
|
+
export declare enum AdminAppActivationErrorCode {
|
|
4108
|
+
Payment = "PAYMENT",
|
|
4109
|
+
Permission = "PERMISSION",
|
|
4110
|
+
ProvisioningFailed = "PROVISIONING_FAILED",
|
|
4111
|
+
Recaptcha = "RECAPTCHA",
|
|
4112
|
+
TimedOut = "TIMED_OUT",
|
|
4113
|
+
Unknown = "UNKNOWN"
|
|
4114
|
+
}
|
|
4115
|
+
export type AdminAppActivationPreviewInput = {
|
|
4116
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
4117
|
+
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
4118
|
+
orgId: Scalars['ID']['input'];
|
|
4119
|
+
productKey: Scalars['String']['input'];
|
|
4120
|
+
};
|
|
4121
|
+
export type AdminAppActivationPreviewResponse = {
|
|
4122
|
+
__typename?: 'AdminAppActivationPreviewResponse';
|
|
4123
|
+
error?: Maybe<AdminAppActivationBlockedError>;
|
|
4124
|
+
hasPaymentDetails?: Maybe<Scalars['Boolean']['output']>;
|
|
4125
|
+
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
4126
|
+
offering?: Maybe<CcpOffering>;
|
|
4127
|
+
success: Scalars['Boolean']['output'];
|
|
4128
|
+
};
|
|
4129
|
+
export declare enum AdminAppActivationStatus {
|
|
4130
|
+
Completed = "COMPLETED",
|
|
4131
|
+
Failed = "FAILED",
|
|
4132
|
+
InProgress = "IN_PROGRESS"
|
|
4133
|
+
}
|
|
4134
|
+
export type AdminAppActivationStatusResponse = {
|
|
4135
|
+
__typename?: 'AdminAppActivationStatusResponse';
|
|
4136
|
+
error?: Maybe<AdminAppActivationError>;
|
|
4137
|
+
redirectUrl?: Maybe<Scalars['String']['output']>;
|
|
4138
|
+
status: AdminAppActivationStatus;
|
|
4139
|
+
};
|
|
4118
4140
|
export type AdminAppFilter = {
|
|
4119
4141
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
4120
4142
|
parentType?: InputMaybe<AdminAppParentType>;
|
|
@@ -6223,6 +6245,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6223
6245
|
agent?: Maybe<User>;
|
|
6224
6246
|
agentAccountId?: Maybe<Scalars['String']['output']>;
|
|
6225
6247
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
6248
|
+
associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
|
|
6226
6249
|
author?: Maybe<User>;
|
|
6227
6250
|
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
6228
6251
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -7172,7 +7195,6 @@ export type AgentStudioEvaluationResult = {
|
|
|
7172
7195
|
judgeDecision?: Maybe<AgentStudioJudgementDecision>;
|
|
7173
7196
|
judgeErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
7174
7197
|
judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
|
|
7175
|
-
judgeMode?: Maybe<AgentStudioJudgeMode>;
|
|
7176
7198
|
judgeReasoning?: Maybe<Scalars['String']['output']>;
|
|
7177
7199
|
responseTimeMs?: Maybe<Scalars['Int']['output']>;
|
|
7178
7200
|
runId: Scalars['ID']['output'];
|
|
@@ -7627,7 +7649,6 @@ export type AgentStudioScenarioValidateOutput = {
|
|
|
7627
7649
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
7628
7650
|
isDefault: Scalars['Boolean']['output'];
|
|
7629
7651
|
isValid: AgentStudioScenarioValidation;
|
|
7630
|
-
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
7631
7652
|
name: Scalars['String']['output'];
|
|
7632
7653
|
};
|
|
7633
7654
|
export type AgentStudioScenarioValidation = {
|
|
@@ -8170,9 +8191,9 @@ export type AgentStudioUpdateDatasetItemPayload = Payload & {
|
|
|
8170
8191
|
};
|
|
8171
8192
|
export type AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload = Payload & {
|
|
8172
8193
|
__typename?: 'AgentStudioUpdateKnowledgeGapSuggestionArticleStatusPayload';
|
|
8194
|
+
article?: Maybe<AgentStudioKnowledgeGapSuggestionArticle>;
|
|
8173
8195
|
errors?: Maybe<Array<MutationError>>;
|
|
8174
8196
|
success: Scalars['Boolean']['output'];
|
|
8175
|
-
suggestionArticle?: Maybe<AgentStudioKnowledgeGapSuggestionArticle>;
|
|
8176
8197
|
};
|
|
8177
8198
|
export type AgentStudioUpdateScenarioInput = {
|
|
8178
8199
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
@@ -8214,11 +8235,6 @@ export type AgentStudioUpgradeSchemaPayload = Payload & {
|
|
|
8214
8235
|
errors?: Maybe<Array<MutationError>>;
|
|
8215
8236
|
success: Scalars['Boolean']['output'];
|
|
8216
8237
|
};
|
|
8217
|
-
export type AgentStudioUploadBatchEvaluationDatasetInput = {
|
|
8218
|
-
datasetName: Scalars['String']['input'];
|
|
8219
|
-
file: Scalars['Upload']['input'];
|
|
8220
|
-
projectId: Scalars['String']['input'];
|
|
8221
|
-
};
|
|
8222
8238
|
export declare enum AgentStudioUsePermissionMode {
|
|
8223
8239
|
Open = "OPEN",
|
|
8224
8240
|
Restricted = "RESTRICTED"
|
|
@@ -38419,6 +38435,12 @@ export type ConfluenceSpaceReportPayload = Payload & {
|
|
|
38419
38435
|
success: Scalars['Boolean']['output'];
|
|
38420
38436
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
38421
38437
|
};
|
|
38438
|
+
export type ConfluenceSpaceRoleAgentPrincipal = SpaceRolePrincipal & {
|
|
38439
|
+
__typename?: 'ConfluenceSpaceRoleAgentPrincipal';
|
|
38440
|
+
displayName: Scalars['String']['output'];
|
|
38441
|
+
principalId: Scalars['ID']['output'];
|
|
38442
|
+
profilePicture?: Maybe<Icon>;
|
|
38443
|
+
};
|
|
38422
38444
|
export type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
38423
38445
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
38424
38446
|
displayName: Scalars['String']['output'];
|
|
@@ -39326,6 +39348,16 @@ export type ConfluenceUpdateModeChangeAsyncPayload = Payload & {
|
|
|
39326
39348
|
longTaskId?: Maybe<Scalars['ID']['output']>;
|
|
39327
39349
|
success: Scalars['Boolean']['output'];
|
|
39328
39350
|
};
|
|
39351
|
+
export type ConfluenceUpdateModeChangeAsyncStatus = {
|
|
39352
|
+
__typename?: 'ConfluenceUpdateModeChangeAsyncStatus';
|
|
39353
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
39354
|
+
status: ConfluenceUpdateModeChangeAsyncTaskState;
|
|
39355
|
+
};
|
|
39356
|
+
export declare enum ConfluenceUpdateModeChangeAsyncTaskState {
|
|
39357
|
+
Failed = "FAILED",
|
|
39358
|
+
InProgress = "IN_PROGRESS",
|
|
39359
|
+
Succeeded = "SUCCEEDED"
|
|
39360
|
+
}
|
|
39329
39361
|
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
39330
39362
|
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
39331
39363
|
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
@@ -39844,6 +39876,7 @@ export type ConfluenceUserSetupCountryData = {
|
|
|
39844
39876
|
__typename?: 'ConfluenceUserSetupCountryData';
|
|
39845
39877
|
cohorts: Array<ConfluenceUserSetupCountryCohort>;
|
|
39846
39878
|
countryCode: Scalars['String']['output'];
|
|
39879
|
+
countryName?: Maybe<Scalars['String']['output']>;
|
|
39847
39880
|
pageLoadCount: Scalars['Long']['output'];
|
|
39848
39881
|
};
|
|
39849
39882
|
export declare enum ConfluenceUserSetupMetric {
|
|
@@ -41597,7 +41630,9 @@ export type CplsAddAllContributorScopeAssociationsFromWorkViewInput = {
|
|
|
41597
41630
|
};
|
|
41598
41631
|
export type CplsAddAllContributorScopeAssociationsFromWorkViewPayload = Payload & {
|
|
41599
41632
|
__typename?: 'CplsAddAllContributorScopeAssociationsFromWorkViewPayload';
|
|
41633
|
+
contributors?: Maybe<Array<CplsContributor>>;
|
|
41600
41634
|
errors?: Maybe<Array<MutationError>>;
|
|
41635
|
+
numberOfWorksToAddToWorkView?: Maybe<Scalars['Int']['output']>;
|
|
41601
41636
|
success: Scalars['Boolean']['output'];
|
|
41602
41637
|
};
|
|
41603
41638
|
export type CplsAddAllWorkScopeAssociationsFromPeopleViewInput = {
|
|
@@ -41607,7 +41642,9 @@ export type CplsAddAllWorkScopeAssociationsFromPeopleViewInput = {
|
|
|
41607
41642
|
export type CplsAddAllWorkScopeAssociationsFromPeopleViewPayload = Payload & {
|
|
41608
41643
|
__typename?: 'CplsAddAllWorkScopeAssociationsFromPeopleViewPayload';
|
|
41609
41644
|
errors?: Maybe<Array<MutationError>>;
|
|
41645
|
+
numberOfContributorsToAddToPeopleView?: Maybe<Scalars['Int']['output']>;
|
|
41610
41646
|
success: Scalars['Boolean']['output'];
|
|
41647
|
+
works?: Maybe<Array<CplsWork>>;
|
|
41611
41648
|
};
|
|
41612
41649
|
export type CplsAddContributionInput = {
|
|
41613
41650
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -50612,6 +50649,7 @@ export type DlpFindingOccurrence = {
|
|
|
50612
50649
|
__typename?: 'DlpFindingOccurrence';
|
|
50613
50650
|
bootstrapId?: Maybe<Scalars['String']['output']>;
|
|
50614
50651
|
category?: Maybe<Scalars['String']['output']>;
|
|
50652
|
+
confidenceBand?: Maybe<DlpConfidenceBand>;
|
|
50615
50653
|
contentAudit?: Maybe<Scalars['String']['output']>;
|
|
50616
50654
|
contentHash?: Maybe<Scalars['String']['output']>;
|
|
50617
50655
|
contentType?: Maybe<Scalars['String']['output']>;
|
|
@@ -58590,10 +58628,12 @@ export type GraphIntegrationSkillConsumerVisibilityInput = {
|
|
|
58590
58628
|
optIn?: InputMaybe<Array<GraphIntegrationSkillConsumer>>;
|
|
58591
58629
|
};
|
|
58592
58630
|
export declare enum GraphIntegrationSkillDimension {
|
|
58631
|
+
ForgeApps = "FORGE_APPS",
|
|
58593
58632
|
Products = "PRODUCTS"
|
|
58594
58633
|
}
|
|
58595
58634
|
export type GraphIntegrationSkillDimensionItem = {
|
|
58596
58635
|
displayName: Scalars['String']['output'];
|
|
58636
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58597
58637
|
id: Scalars['String']['output'];
|
|
58598
58638
|
};
|
|
58599
58639
|
export type GraphIntegrationSkillDimensionMetadata = {
|
|
@@ -58620,6 +58660,12 @@ export type GraphIntegrationSkillFile = {
|
|
|
58620
58660
|
fileId: Scalars['String']['output'];
|
|
58621
58661
|
fileSize: Scalars['Int']['output'];
|
|
58622
58662
|
};
|
|
58663
|
+
export type GraphIntegrationSkillForgeAppItem = GraphIntegrationSkillDimensionItem & {
|
|
58664
|
+
__typename?: 'GraphIntegrationSkillForgeAppItem';
|
|
58665
|
+
displayName: Scalars['String']['output'];
|
|
58666
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
58667
|
+
id: Scalars['String']['output'];
|
|
58668
|
+
};
|
|
58623
58669
|
export type GraphIntegrationSkillItem = {
|
|
58624
58670
|
__typename?: 'GraphIntegrationSkillItem';
|
|
58625
58671
|
description: Scalars['String']['output'];
|
|
@@ -123148,6 +123194,12 @@ export type GrowthUnifiedProfileViewSeries = {
|
|
|
123148
123194
|
date?: Maybe<Scalars['String']['output']>;
|
|
123149
123195
|
value?: Maybe<Scalars['Int']['output']>;
|
|
123150
123196
|
};
|
|
123197
|
+
export type GtmCustomer = {
|
|
123198
|
+
__typename?: 'GtmCustomer';
|
|
123199
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
123200
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
123201
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
123202
|
+
};
|
|
123151
123203
|
export type HamsAccountDetails = CommerceAccountDetails & {
|
|
123152
123204
|
__typename?: 'HamsAccountDetails';
|
|
123153
123205
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -123942,6 +123994,7 @@ export type HelpCenterPage = Node & {
|
|
|
123942
123994
|
name?: Maybe<HelpCenterPageName>;
|
|
123943
123995
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
123944
123996
|
pageType?: Maybe<HelpCenterPageType>;
|
|
123997
|
+
parents?: Maybe<Array<HelpCenterPageParentReference>>;
|
|
123945
123998
|
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
123946
123999
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
123947
124000
|
};
|
|
@@ -123952,6 +124005,7 @@ export type HelpCenterPageCreateInput = {
|
|
|
123952
124005
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
123953
124006
|
name: Scalars['String']['input'];
|
|
123954
124007
|
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
124008
|
+
pageType?: InputMaybe<HelpCenterPageType>;
|
|
123955
124009
|
};
|
|
123956
124010
|
export type HelpCenterPageCreatePayload = Payload & {
|
|
123957
124011
|
__typename?: 'HelpCenterPageCreatePayload';
|
|
@@ -123987,6 +124041,15 @@ export type HelpCenterPageName = {
|
|
|
123987
124041
|
__typename?: 'HelpCenterPageName';
|
|
123988
124042
|
default: Scalars['String']['output'];
|
|
123989
124043
|
};
|
|
124044
|
+
export type HelpCenterPageParentReference = {
|
|
124045
|
+
__typename?: 'HelpCenterPageParentReference';
|
|
124046
|
+
id: Scalars['ID']['output'];
|
|
124047
|
+
name: Scalars['String']['output'];
|
|
124048
|
+
type: HelpCenterPageParentType;
|
|
124049
|
+
};
|
|
124050
|
+
export declare enum HelpCenterPageParentType {
|
|
124051
|
+
Folder = "FOLDER"
|
|
124052
|
+
}
|
|
123990
124053
|
export type HelpCenterPageQueryResult = HelpCenterPage | QueryError;
|
|
123991
124054
|
export type HelpCenterPageQueryResultConnection = {
|
|
123992
124055
|
__typename?: 'HelpCenterPageQueryResultConnection';
|
|
@@ -127520,6 +127583,7 @@ export type JiraAgentInSpace = {
|
|
|
127520
127583
|
sources: Array<JiraAgentInSpaceSource>;
|
|
127521
127584
|
spaceAri: Scalars['ID']['output'];
|
|
127522
127585
|
spaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
127586
|
+
spaceInstructionsV2?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
127523
127587
|
triggers?: Maybe<JiraAgentInSpaceTriggerConnection>;
|
|
127524
127588
|
};
|
|
127525
127589
|
export type JiraAgentInSpaceContextCuratedSourcesArgs = {
|
|
@@ -127746,6 +127810,23 @@ export declare enum JiraAgentSpaceInstructionScopeType {
|
|
|
127746
127810
|
Agent = "AGENT",
|
|
127747
127811
|
Space = "SPACE"
|
|
127748
127812
|
}
|
|
127813
|
+
export type JiraAgentSpaceInstructionV2 = Node & {
|
|
127814
|
+
__typename?: 'JiraAgentSpaceInstructionV2';
|
|
127815
|
+
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
127816
|
+
createdAt: Scalars['String']['output'];
|
|
127817
|
+
createdBy?: Maybe<User>;
|
|
127818
|
+
creatorAccountId: Scalars['ID']['output'];
|
|
127819
|
+
id: Scalars['ID']['output'];
|
|
127820
|
+
instructionAri: Scalars['ID']['output'];
|
|
127821
|
+
instructionId: Scalars['ID']['output'];
|
|
127822
|
+
prompt: Scalars['String']['output'];
|
|
127823
|
+
scopeType: JiraAgentSpaceInstructionScopeType;
|
|
127824
|
+
spaceAri: Scalars['ID']['output'];
|
|
127825
|
+
updatedAt: Scalars['String']['output'];
|
|
127826
|
+
updatedBy?: Maybe<User>;
|
|
127827
|
+
updaterAccountId: Scalars['ID']['output'];
|
|
127828
|
+
version: Scalars['String']['output'];
|
|
127829
|
+
};
|
|
127749
127830
|
export declare enum JiraAgentStateCategory {
|
|
127750
127831
|
Finished = "FINISHED",
|
|
127751
127832
|
NeedsInput = "NEEDS_INPUT",
|
|
@@ -129886,12 +129967,14 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
129886
129967
|
availableTransitionsForIssues?: Maybe<JiraTransitionConnection>;
|
|
129887
129968
|
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
129888
129969
|
board?: Maybe<JiraBoard>;
|
|
129970
|
+
canAddStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129889
129971
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
129890
129972
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
129891
129973
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
129892
129974
|
canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129893
129975
|
canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
129894
129976
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
129977
|
+
canInlineAddStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129895
129978
|
canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129896
129979
|
canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
129897
129980
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136785,22 +136868,21 @@ export type JiraHydrateJqlInput = {
|
|
|
136785
136868
|
};
|
|
136786
136869
|
export type JiraIccActivityValue = {
|
|
136787
136870
|
__typename?: 'JiraIccActivityValue';
|
|
136788
|
-
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
136789
136871
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
136790
136872
|
failureReason?: Maybe<Scalars['String']['output']>;
|
|
136791
136873
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
136792
136874
|
groupId?: Maybe<Scalars['String']['output']>;
|
|
136793
136875
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
136794
136876
|
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
136877
|
+
hypothesisTitle?: Maybe<Scalars['String']['output']>;
|
|
136795
136878
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
136796
|
-
mitigationVersion?: Maybe<Scalars['String']['output']>;
|
|
136797
136879
|
pirIssueKey?: Maybe<Scalars['String']['output']>;
|
|
136798
136880
|
planName?: Maybe<Scalars['String']['output']>;
|
|
136799
136881
|
status?: Maybe<Scalars['String']['output']>;
|
|
136800
136882
|
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
136801
|
-
|
|
136802
|
-
|
|
136803
|
-
|
|
136883
|
+
statusPageName?: Maybe<Scalars['String']['output']>;
|
|
136884
|
+
statusPageUrl?: Maybe<Scalars['String']['output']>;
|
|
136885
|
+
stepName?: Maybe<Scalars['String']['output']>;
|
|
136804
136886
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
136805
136887
|
triggerType?: Maybe<Scalars['String']['output']>;
|
|
136806
136888
|
updateMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -141131,6 +141213,13 @@ export declare enum JiraJqlViewContext {
|
|
|
141131
141213
|
Jwm = "JWM",
|
|
141132
141214
|
ShadowRequest = "SHADOW_REQUEST"
|
|
141133
141215
|
}
|
|
141216
|
+
export type JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload = Payload & {
|
|
141217
|
+
__typename?: 'JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload';
|
|
141218
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141219
|
+
jsmAiRiskAssessmentNudgeDismissCount?: Maybe<Scalars['Int']['output']>;
|
|
141220
|
+
jsmAiRiskAssessmentNudgeLastDismissedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
141221
|
+
success: Scalars['Boolean']['output'];
|
|
141222
|
+
};
|
|
141134
141223
|
export type JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload = Payload & {
|
|
141135
141224
|
__typename?: 'JiraJsmIssueViewAIPanelForServiceDeskEnabledMutationPayload';
|
|
141136
141225
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -151893,9 +151982,13 @@ export type JiraSetBoardViewStatusColumnMappingInput = {
|
|
|
151893
151982
|
export type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
|
|
151894
151983
|
__typename?: 'JiraSetBoardViewStatusColumnMappingPayload';
|
|
151895
151984
|
boardView?: Maybe<JiraBoardView>;
|
|
151985
|
+
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
151896
151986
|
errors?: Maybe<Array<MutationError>>;
|
|
151897
151987
|
success: Scalars['Boolean']['output'];
|
|
151898
151988
|
};
|
|
151989
|
+
export type JiraSetBoardViewStatusColumnMappingPayloadContainerNavigationArgs = {
|
|
151990
|
+
input: JiraContainerNavigationQueryInput;
|
|
151991
|
+
};
|
|
151899
151992
|
export type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
|
|
151900
151993
|
name: Scalars['String']['input'];
|
|
151901
151994
|
statusId: Scalars['ID']['input'];
|
|
@@ -155176,6 +155269,12 @@ export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
|
|
|
155176
155269
|
instruction?: Maybe<JiraAgentSpaceInstruction>;
|
|
155177
155270
|
success: Scalars['Boolean']['output'];
|
|
155178
155271
|
};
|
|
155272
|
+
export type JiraUpsertAgentSpaceInstructionV2Payload = Payload & {
|
|
155273
|
+
__typename?: 'JiraUpsertAgentSpaceInstructionV2Payload';
|
|
155274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
155275
|
+
instruction?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
155276
|
+
success: Scalars['Boolean']['output'];
|
|
155277
|
+
};
|
|
155179
155278
|
export type JiraUpsertIssueTypePayload = Payload & {
|
|
155180
155279
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
155181
155280
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -155360,6 +155459,8 @@ export type JiraUserPreferences = {
|
|
|
155360
155459
|
issueViewUWSTabPreference?: Maybe<JiraIssueViewUwsTabPreference>;
|
|
155361
155460
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
155362
155461
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
155462
|
+
jsmAiRiskAssessmentNudgeDismissCount?: Maybe<Scalars['Int']['output']>;
|
|
155463
|
+
jsmAiRiskAssessmentNudgeLastDismissedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
155363
155464
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
155364
155465
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
155365
155466
|
shouldShowFullIssueCreateModal?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -155430,6 +155531,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
155430
155531
|
setIssuePreviewMode?: Maybe<JiraIssuePreviewModeMutationPayload>;
|
|
155431
155532
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
155432
155533
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
155534
|
+
setJsmAiRiskAssessmentNudgeDismissed?: Maybe<JiraJsmAiRiskAssessmentNudgeDismissedMutationPayload>;
|
|
155433
155535
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
155434
155536
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
155435
155537
|
setShouldShowFullIssueCreateModal?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -155471,6 +155573,9 @@ export type JiraUserPreferencesMutationSetIssueViewTimestampDisplayModeArgs = {
|
|
|
155471
155573
|
export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
155472
155574
|
searchMode?: InputMaybe<JiraJqlBuilderSearchMode>;
|
|
155473
155575
|
};
|
|
155576
|
+
export type JiraUserPreferencesMutationSetJsmAiRiskAssessmentNudgeDismissedArgs = {
|
|
155577
|
+
dismissCount: Scalars['Int']['input'];
|
|
155578
|
+
};
|
|
155474
155579
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
155475
155580
|
isEnabled: Scalars['Boolean']['input'];
|
|
155476
155581
|
};
|
|
@@ -157247,7 +157352,6 @@ export type JpdTableViewConfig = {
|
|
|
157247
157352
|
export type JpdTableViewConfigInput = {
|
|
157248
157353
|
colorConfig?: InputMaybe<JpdViewColorConfigSimpleInput>;
|
|
157249
157354
|
columnSizes?: InputMaybe<Array<JpdViewTableColumnSizeInput>>;
|
|
157250
|
-
columns?: InputMaybe<JpdViewLayoutConfigInput>;
|
|
157251
157355
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157252
157356
|
enabledAutoSave?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157253
157357
|
fieldRollups?: InputMaybe<Array<JpdViewFieldRollupInput>>;
|
|
@@ -157282,12 +157386,12 @@ export type JpdTimelineViewConfig = {
|
|
|
157282
157386
|
issueLayoutWithSummary?: Maybe<JpdViewIssueLayoutTypeWithSummary>;
|
|
157283
157387
|
jql?: Maybe<Scalars['String']['output']>;
|
|
157284
157388
|
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
157285
|
-
scale
|
|
157389
|
+
scale?: Maybe<JpdViewTimelineScale>;
|
|
157286
157390
|
startDateField?: Maybe<Scalars['String']['output']>;
|
|
157287
157391
|
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
157288
157392
|
summaryCardField?: Maybe<Scalars['String']['output']>;
|
|
157289
157393
|
swimlanes?: Maybe<JpdViewLayoutConfig>;
|
|
157290
|
-
todayMarker
|
|
157394
|
+
todayMarker?: Maybe<JpdViewTodayMarker>;
|
|
157291
157395
|
};
|
|
157292
157396
|
export type JpdTimelineViewConfigInput = {
|
|
157293
157397
|
colorConfig?: InputMaybe<JpdViewColorConfigWithBoldInput>;
|
|
@@ -157494,7 +157598,7 @@ export type JpdViewLayoutConfig = {
|
|
|
157494
157598
|
};
|
|
157495
157599
|
export type JpdViewLayoutConfigInput = {
|
|
157496
157600
|
connectionsFilters?: InputMaybe<JpdViewFiltersInput>;
|
|
157497
|
-
field
|
|
157601
|
+
field: Scalars['String']['input'];
|
|
157498
157602
|
hideEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157499
157603
|
showMatchingConnections?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157500
157604
|
valuesAndOrder?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -159779,6 +159883,11 @@ export type JsmConversationSystemMessageMetadataEntry = {
|
|
|
159779
159883
|
value: Scalars['String']['output'];
|
|
159780
159884
|
};
|
|
159781
159885
|
export type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
159886
|
+
export type JsmSelfServeConversationStarters = {
|
|
159887
|
+
__typename?: 'JsmSelfServeConversationStarters';
|
|
159888
|
+
starters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159889
|
+
};
|
|
159890
|
+
export type JsmSelfServeConversationStartersResult = JsmSelfServeConversationStarters | QueryError;
|
|
159782
159891
|
export type JsmSolutionComposerFollowupTask = {
|
|
159783
159892
|
__typename?: 'JsmSolutionComposerFollowupTask';
|
|
159784
159893
|
items?: Maybe<Array<JsmSolutionComposerFollowupTaskItem>>;
|
|
@@ -161218,6 +161327,7 @@ export type KitsuneCustomerNode = {
|
|
|
161218
161327
|
__typename?: 'KitsuneCustomerNode';
|
|
161219
161328
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161220
161329
|
customerId: Scalars['ID']['output'];
|
|
161330
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161221
161331
|
};
|
|
161222
161332
|
export type KitsuneCustomersRollup = {
|
|
161223
161333
|
__typename?: 'KitsuneCustomersRollup';
|
|
@@ -161294,9 +161404,11 @@ export type KitsuneFeedback = Node & {
|
|
|
161294
161404
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
161295
161405
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161296
161406
|
customerId?: Maybe<Scalars['ID']['output']>;
|
|
161407
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161297
161408
|
id: Scalars['ID']['output'];
|
|
161298
161409
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161299
161410
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
161411
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161300
161412
|
reporter?: Maybe<User>;
|
|
161301
161413
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
161302
161414
|
snippets: KitsuneSnippetConnection;
|
|
@@ -161654,6 +161766,7 @@ export type KitsuneOrganizationNode = {
|
|
|
161654
161766
|
__typename?: 'KitsuneOrganizationNode';
|
|
161655
161767
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161656
161768
|
organizationId: Scalars['ID']['output'];
|
|
161769
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161657
161770
|
};
|
|
161658
161771
|
export type KitsunePaginationInput = {
|
|
161659
161772
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161789,12 +161902,14 @@ export type KitsuneSnippet = Node & {
|
|
|
161789
161902
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
161790
161903
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
161791
161904
|
customerId?: Maybe<Scalars['ID']['output']>;
|
|
161905
|
+
customerV2?: Maybe<KitsuneCustomer>;
|
|
161792
161906
|
feedback?: Maybe<KitsuneFeedback>;
|
|
161793
161907
|
id: Scalars['ID']['output'];
|
|
161794
161908
|
insight?: Maybe<KitsuneInsight>;
|
|
161795
161909
|
markId?: Maybe<Scalars['ID']['output']>;
|
|
161796
161910
|
organization?: Maybe<CustomerServiceCsmOrganization>;
|
|
161797
161911
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
161912
|
+
organizationV2?: Maybe<KitsuneOrganization>;
|
|
161798
161913
|
};
|
|
161799
161914
|
export type KitsuneSnippetConnection = KitsuneConnection & {
|
|
161800
161915
|
__typename?: 'KitsuneSnippetConnection';
|
|
@@ -165186,6 +165301,20 @@ export type MarkCommentsAsReadPayload = {
|
|
|
165186
165301
|
errors: Array<Maybe<Scalars['String']['output']>>;
|
|
165187
165302
|
success: Scalars['Boolean']['output'];
|
|
165188
165303
|
};
|
|
165304
|
+
export type MarketplaceAgentCapabilities = {
|
|
165305
|
+
__typename?: 'MarketplaceAgentCapabilities';
|
|
165306
|
+
tools?: Maybe<Array<MarketplaceAgentTool>>;
|
|
165307
|
+
};
|
|
165308
|
+
export type MarketplaceAgentTool = {
|
|
165309
|
+
__typename?: 'MarketplaceAgentTool';
|
|
165310
|
+
accessType: MarketplaceAgentToolAccessType;
|
|
165311
|
+
description: Scalars['String']['output'];
|
|
165312
|
+
name: Scalars['String']['output'];
|
|
165313
|
+
};
|
|
165314
|
+
export declare enum MarketplaceAgentToolAccessType {
|
|
165315
|
+
Read = "READ",
|
|
165316
|
+
Write = "WRITE"
|
|
165317
|
+
}
|
|
165189
165318
|
export type MarketplaceApp = {
|
|
165190
165319
|
__typename?: 'MarketplaceApp';
|
|
165191
165320
|
appId: Scalars['ID']['output'];
|
|
@@ -165204,6 +165333,7 @@ export type MarketplaceApp = {
|
|
|
165204
165333
|
logo?: Maybe<MarketplaceListingImage>;
|
|
165205
165334
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
165206
165335
|
name: Scalars['String']['output'];
|
|
165336
|
+
objectType?: Maybe<MarketplaceObjectType>;
|
|
165207
165337
|
partner?: Maybe<MarketplacePartner>;
|
|
165208
165338
|
partnerId: Scalars['ID']['output'];
|
|
165209
165339
|
privacyPolicyUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -165306,6 +165436,7 @@ export type MarketplaceAppTrustInformation = {
|
|
|
165306
165436
|
export type MarketplaceAppTrustInformationResult = MarketplaceAppTrustInformation | QueryError;
|
|
165307
165437
|
export type MarketplaceAppVersion = {
|
|
165308
165438
|
__typename?: 'MarketplaceAppVersion';
|
|
165439
|
+
agentCapabilities?: Maybe<MarketplaceAgentCapabilities>;
|
|
165309
165440
|
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
165310
165441
|
buildNumber: Scalars['ID']['output'];
|
|
165311
165442
|
deployment: MarketplaceAppDeployment;
|
|
@@ -165320,6 +165451,7 @@ export type MarketplaceAppVersion = {
|
|
|
165320
165451
|
learnMoreUrl?: Maybe<Scalars['URL']['output']>;
|
|
165321
165452
|
licenseType?: Maybe<MarketplaceAppVersionLicenseType>;
|
|
165322
165453
|
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
165454
|
+
objectTypeSnapshot?: Maybe<MarketplaceObjectType>;
|
|
165323
165455
|
partnerSpecificTerms?: Maybe<Scalars['String']['output']>;
|
|
165324
165456
|
paymentModel: MarketplaceAppPaymentModel;
|
|
165325
165457
|
productHostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -167896,6 +168028,11 @@ export type MarketplaceMcpTool = {
|
|
|
167896
168028
|
name: Scalars['String']['output'];
|
|
167897
168029
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
167898
168030
|
};
|
|
168031
|
+
export declare enum MarketplaceObjectType {
|
|
168032
|
+
Agent = "AGENT",
|
|
168033
|
+
App = "APP",
|
|
168034
|
+
Mcp = "MCP"
|
|
168035
|
+
}
|
|
167899
168036
|
export type MarketplacePartner = {
|
|
167900
168037
|
__typename?: 'MarketplacePartner';
|
|
167901
168038
|
address?: Maybe<MarketplacePartnerAddress>;
|
|
@@ -170412,6 +170549,7 @@ export type MercuryAsk = Node & {
|
|
|
170412
170549
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
170413
170550
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
170414
170551
|
description?: Maybe<Scalars['String']['output']>;
|
|
170552
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
170415
170553
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
170416
170554
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
170417
170555
|
id: Scalars['ID']['output'];
|
|
@@ -170732,6 +170870,13 @@ export declare enum MercuryAskField {
|
|
|
170732
170870
|
TargetDate = "TARGET_DATE",
|
|
170733
170871
|
TargetDateType = "TARGET_DATE_TYPE"
|
|
170734
170872
|
}
|
|
170873
|
+
export type MercuryAskGlobalConfiguration = MercuryConfiguration & {
|
|
170874
|
+
__typename?: 'MercuryAskGlobalConfiguration';
|
|
170875
|
+
askPromotionSettings?: Maybe<MercuryAskPromotionSettings>;
|
|
170876
|
+
connectedWorkEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
170877
|
+
enforceAtlassianWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
170878
|
+
id: Scalars['ID']['output'];
|
|
170879
|
+
};
|
|
170735
170880
|
export type MercuryAskLink = Node & {
|
|
170736
170881
|
__typename?: 'MercuryAskLink';
|
|
170737
170882
|
askId: Scalars['ID']['output'];
|
|
@@ -170762,6 +170907,15 @@ export declare enum MercuryAskPriority {
|
|
|
170762
170907
|
Medium = "MEDIUM"
|
|
170763
170908
|
}
|
|
170764
170909
|
export type MercuryAskPromotedItem = JiraIssue | MercuryFocusArea;
|
|
170910
|
+
export type MercuryAskPromotionSettings = {
|
|
170911
|
+
__typename?: 'MercuryAskPromotionSettings';
|
|
170912
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
170913
|
+
targetTypes?: Maybe<Array<MercuryAskPromotionTarget>>;
|
|
170914
|
+
};
|
|
170915
|
+
export declare enum MercuryAskPromotionTarget {
|
|
170916
|
+
FocusArea = "FOCUS_AREA",
|
|
170917
|
+
Jira = "JIRA"
|
|
170918
|
+
}
|
|
170765
170919
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
170766
170920
|
export declare enum MercuryAskStatusEnum {
|
|
170767
170921
|
Accepted = "ACCEPTED",
|
|
@@ -170839,6 +170993,7 @@ export type MercuryAskTransition = {
|
|
|
170839
170993
|
export type MercuryAskType = Node & {
|
|
170840
170994
|
__typename?: 'MercuryAskType';
|
|
170841
170995
|
description?: Maybe<Scalars['String']['output']>;
|
|
170996
|
+
globalConfiguration?: Maybe<MercuryAskGlobalConfiguration>;
|
|
170842
170997
|
id: Scalars['ID']['output'];
|
|
170843
170998
|
isActive: Scalars['Boolean']['output'];
|
|
170844
170999
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -171756,6 +171911,7 @@ export type MercuryCreateAskInput = {
|
|
|
171756
171911
|
cloudId: Scalars['ID']['input'];
|
|
171757
171912
|
customFields?: InputMaybe<Array<MercuryCreateAskCustomFieldInput>>;
|
|
171758
171913
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
171914
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
171759
171915
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
171760
171916
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
171761
171917
|
name: Scalars['String']['input'];
|
|
@@ -172112,6 +172268,7 @@ export type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
|
172112
172268
|
export type MercuryCreateMilestoneInput = {
|
|
172113
172269
|
cloudId: Scalars['ID']['input'];
|
|
172114
172270
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
172271
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
172115
172272
|
name: Scalars['String']['input'];
|
|
172116
172273
|
targetDate?: InputMaybe<MercuryMilestoneTargetDateInput>;
|
|
172117
172274
|
};
|
|
@@ -173318,7 +173475,10 @@ export type MercuryFocusArea = Node & {
|
|
|
173318
173475
|
owner?: Maybe<User>;
|
|
173319
173476
|
parent?: Maybe<MercuryFocusArea>;
|
|
173320
173477
|
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
173478
|
+
promotedFromAsk?: Maybe<MercuryAsk>;
|
|
173479
|
+
promotedFromAskId?: Maybe<Scalars['ID']['output']>;
|
|
173321
173480
|
ranks?: Maybe<MercuryFocusAreaRankConnection>;
|
|
173481
|
+
sharedUsers?: Maybe<MercuryFocusAreaUserAccessConnection>;
|
|
173322
173482
|
sponsorOrganization?: Maybe<MercuryOrganization>;
|
|
173323
173483
|
sponsorOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
173324
173484
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -173332,6 +173492,7 @@ export type MercuryFocusArea = Node & {
|
|
|
173332
173492
|
url?: Maybe<Scalars['String']['output']>;
|
|
173333
173493
|
userPermissions?: Maybe<Array<MercuryFocusAreaPermission>>;
|
|
173334
173494
|
uuid: Scalars['UUID']['output'];
|
|
173495
|
+
views?: Maybe<Array<MercuryPortfolio>>;
|
|
173335
173496
|
watchers?: Maybe<MercuryUserConnection>;
|
|
173336
173497
|
watching: Scalars['Boolean']['output'];
|
|
173337
173498
|
};
|
|
@@ -173394,6 +173555,10 @@ export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
|
173394
173555
|
export type MercuryFocusAreaRanksArgs = {
|
|
173395
173556
|
containerFilters: Array<MercuryFocusAreaContainerFilter>;
|
|
173396
173557
|
};
|
|
173558
|
+
export type MercuryFocusAreaSharedUsersArgs = {
|
|
173559
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173561
|
+
};
|
|
173397
173562
|
export type MercuryFocusAreaSubFocusAreasArgs = {
|
|
173398
173563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
173399
173564
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -173781,7 +173946,8 @@ export type MercuryFocusAreaRankingValidationError = {
|
|
|
173781
173946
|
};
|
|
173782
173947
|
export declare enum MercuryFocusAreaRankingValidationErrorCode {
|
|
173783
173948
|
FaRanked = "FA_RANKED",
|
|
173784
|
-
FaTypeMismatch = "FA_TYPE_MISMATCH"
|
|
173949
|
+
FaTypeMismatch = "FA_TYPE_MISMATCH",
|
|
173950
|
+
FaVersionMismatch = "FA_VERSION_MISMATCH"
|
|
173785
173951
|
}
|
|
173786
173952
|
export type MercuryFocusAreaSort = {
|
|
173787
173953
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
@@ -173934,9 +174100,21 @@ export type MercuryFocusAreaUserAccess = {
|
|
|
173934
174100
|
__typename?: 'MercuryFocusAreaUserAccess';
|
|
173935
174101
|
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
173936
174102
|
accessReason?: Maybe<MercuryFocusAreaUserAccessReason>;
|
|
174103
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
173937
174104
|
hasAccess: Scalars['Boolean']['output'];
|
|
173938
174105
|
user?: Maybe<User>;
|
|
173939
174106
|
};
|
|
174107
|
+
export type MercuryFocusAreaUserAccessConnection = {
|
|
174108
|
+
__typename?: 'MercuryFocusAreaUserAccessConnection';
|
|
174109
|
+
edges?: Maybe<Array<MercuryFocusAreaUserAccessEdge>>;
|
|
174110
|
+
pageInfo: PageInfo;
|
|
174111
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
174112
|
+
};
|
|
174113
|
+
export type MercuryFocusAreaUserAccessEdge = {
|
|
174114
|
+
__typename?: 'MercuryFocusAreaUserAccessEdge';
|
|
174115
|
+
cursor: Scalars['String']['output'];
|
|
174116
|
+
node?: Maybe<MercuryFocusAreaUserAccess>;
|
|
174117
|
+
};
|
|
173940
174118
|
export type MercuryFocusAreaUserAccessInput = {
|
|
173941
174119
|
accessLevel?: InputMaybe<MercuryFocusAreaUserAccessLevel>;
|
|
173942
174120
|
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -175095,6 +175273,7 @@ export type MercuryMilestone = Node & {
|
|
|
175095
175273
|
createdBy?: Maybe<User>;
|
|
175096
175274
|
createdDate: Scalars['String']['output'];
|
|
175097
175275
|
description?: Maybe<Scalars['String']['output']>;
|
|
175276
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
175098
175277
|
id: Scalars['ID']['output'];
|
|
175099
175278
|
name: Scalars['String']['output'];
|
|
175100
175279
|
targetDate?: Maybe<MercuryMilestoneTargetDate>;
|
|
@@ -175169,11 +175348,16 @@ export type MercuryMilestonesMutationApiUpdateMilestoneTargetDateArgs = {
|
|
|
175169
175348
|
export type MercuryMilestonesQueryApi = {
|
|
175170
175349
|
__typename?: 'MercuryMilestonesQueryApi';
|
|
175171
175350
|
milestones?: Maybe<Array<Maybe<MercuryMilestone>>>;
|
|
175351
|
+
milestonesByExternalIds?: Maybe<Array<Maybe<MercuryMilestone>>>;
|
|
175172
175352
|
milestonesSearch?: Maybe<MercuryMilestoneConnection>;
|
|
175173
175353
|
};
|
|
175174
175354
|
export type MercuryMilestonesQueryApiMilestonesArgs = {
|
|
175175
175355
|
ids: Array<Scalars['ID']['input']>;
|
|
175176
175356
|
};
|
|
175357
|
+
export type MercuryMilestonesQueryApiMilestonesByExternalIdsArgs = {
|
|
175358
|
+
cloudId: Scalars['ID']['input'];
|
|
175359
|
+
ids: Array<Scalars['String']['input']>;
|
|
175360
|
+
};
|
|
175177
175361
|
export type MercuryMilestonesQueryApiMilestonesSearchArgs = {
|
|
175178
175362
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
175179
175363
|
cloudId: Scalars['ID']['input'];
|
|
@@ -175369,8 +175553,10 @@ export type MercuryMutationApi = {
|
|
|
175369
175553
|
setFocusAreaOrganizationLinks?: Maybe<MercurySetFocusAreaOrganizationLinksPayload>;
|
|
175370
175554
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
175371
175555
|
starFocusArea?: Maybe<MercuryStarFocusAreaPayload>;
|
|
175556
|
+
starPortfolio?: Maybe<MercuryStarPortfolioPayload>;
|
|
175372
175557
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
175373
175558
|
unStarFocusArea?: Maybe<MercuryUnStarFocusAreaPayload>;
|
|
175559
|
+
unStarPortfolio?: Maybe<MercuryUnStarPortfolioPayload>;
|
|
175374
175560
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
175375
175561
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
175376
175562
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -175520,12 +175706,18 @@ export type MercuryMutationApiSetPreferenceArgs = {
|
|
|
175520
175706
|
export type MercuryMutationApiStarFocusAreaArgs = {
|
|
175521
175707
|
input: MercuryStarFocusAreaInput;
|
|
175522
175708
|
};
|
|
175709
|
+
export type MercuryMutationApiStarPortfolioArgs = {
|
|
175710
|
+
input: MercuryStarPortfolioInput;
|
|
175711
|
+
};
|
|
175523
175712
|
export type MercuryMutationApiTransitionFocusAreaStatusArgs = {
|
|
175524
175713
|
input: MercuryTransitionFocusAreaStatusInput;
|
|
175525
175714
|
};
|
|
175526
175715
|
export type MercuryMutationApiUnStarFocusAreaArgs = {
|
|
175527
175716
|
input: MercuryUnStarFocusAreaInput;
|
|
175528
175717
|
};
|
|
175718
|
+
export type MercuryMutationApiUnStarPortfolioArgs = {
|
|
175719
|
+
input: MercuryUnStarPortfolioInput;
|
|
175720
|
+
};
|
|
175529
175721
|
export type MercuryMutationApiUnarchiveFocusAreaArgs = {
|
|
175530
175722
|
input: MercuryUnarchiveFocusAreaInput;
|
|
175531
175723
|
};
|
|
@@ -175639,6 +175831,10 @@ export type MercuryNormalizedWorkEdge = {
|
|
|
175639
175831
|
cursor: Scalars['String']['output'];
|
|
175640
175832
|
node?: Maybe<MercuryNormalizedWorkResult>;
|
|
175641
175833
|
};
|
|
175834
|
+
export type MercuryNormalizedWorkProgressRangeInput = {
|
|
175835
|
+
progressMax?: InputMaybe<Scalars['Int']['input']>;
|
|
175836
|
+
progressMin?: InputMaybe<Scalars['Int']['input']>;
|
|
175837
|
+
};
|
|
175642
175838
|
export type MercuryNormalizedWorkProjectType = MercuryProjectType & {
|
|
175643
175839
|
__typename?: 'MercuryNormalizedWorkProjectType';
|
|
175644
175840
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -175656,7 +175852,9 @@ export type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
175656
175852
|
applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175657
175853
|
cloudId?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
175658
175854
|
owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175855
|
+
progressRange?: InputMaybe<MercuryNormalizedWorkProgressRangeInput>;
|
|
175659
175856
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175857
|
+
startDateRange?: InputMaybe<MercuryNormalizedWorkStartDateRangeInput>;
|
|
175660
175858
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
175661
175859
|
targetDateRange?: InputMaybe<MercuryNormalizedWorkTargetDateRangeInput>;
|
|
175662
175860
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -175666,8 +175864,10 @@ export declare enum MercuryNormalizedWorkSortField {
|
|
|
175666
175864
|
FocusAreaId = "FOCUS_AREA_ID",
|
|
175667
175865
|
Key = "KEY",
|
|
175668
175866
|
Name = "NAME",
|
|
175867
|
+
Progress = "PROGRESS",
|
|
175669
175868
|
Source = "SOURCE",
|
|
175670
175869
|
SourceStatus = "SOURCE_STATUS",
|
|
175870
|
+
StartDate = "START_DATE",
|
|
175671
175871
|
Status = "STATUS",
|
|
175672
175872
|
TargetDate = "TARGET_DATE",
|
|
175673
175873
|
Type = "TYPE"
|
|
@@ -175680,6 +175880,10 @@ export type MercuryNormalizedWorkSourceStatus = MercuryOriginalProjectStatus & {
|
|
|
175680
175880
|
__typename?: 'MercuryNormalizedWorkSourceStatus';
|
|
175681
175881
|
mercuryOriginalStatusName: Scalars['String']['output'];
|
|
175682
175882
|
};
|
|
175883
|
+
export type MercuryNormalizedWorkStartDateRangeInput = {
|
|
175884
|
+
startDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
175885
|
+
startDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
175886
|
+
};
|
|
175683
175887
|
export type MercuryNormalizedWorkStatus = MercuryProjectStatus & {
|
|
175684
175888
|
__typename?: 'MercuryNormalizedWorkStatus';
|
|
175685
175889
|
mercuryColor: MercuryProjectStatusColor;
|
|
@@ -176054,6 +176258,7 @@ export type MercuryOrganizationListSummary = {
|
|
|
176054
176258
|
export type MercuryOrganizationMembership = Node & {
|
|
176055
176259
|
__typename?: 'MercuryOrganizationMembership';
|
|
176056
176260
|
availabilityRanges?: Maybe<MercuryOrganizationAvailabilityRangeConnection>;
|
|
176261
|
+
capacityAllocations?: Maybe<Array<MercuryOrganizationMembershipCapacityAllocation>>;
|
|
176057
176262
|
createdBy?: Maybe<User>;
|
|
176058
176263
|
createdDate: Scalars['DateTime']['output'];
|
|
176059
176264
|
endDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -176073,6 +176278,12 @@ export type MercuryOrganizationMembershipTeamsArgs = {
|
|
|
176073
176278
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
176074
176279
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
176075
176280
|
};
|
|
176281
|
+
export type MercuryOrganizationMembershipCapacityAllocation = {
|
|
176282
|
+
__typename?: 'MercuryOrganizationMembershipCapacityAllocation';
|
|
176283
|
+
endDate: Scalars['Date']['output'];
|
|
176284
|
+
percentage: Scalars['BigDecimal']['output'];
|
|
176285
|
+
startDate: Scalars['Date']['output'];
|
|
176286
|
+
};
|
|
176076
176287
|
export type MercuryOrganizationMembershipConnection = {
|
|
176077
176288
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
176078
176289
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -176407,6 +176618,7 @@ export type MercuryOrganizationsMutationApi = {
|
|
|
176407
176618
|
setGlobalPlanAuthorityOrgLevel?: Maybe<MercurySetGlobalPlanAuthorityOrgLevelPayload>;
|
|
176408
176619
|
setOrganizationCustomFieldValue?: Maybe<MercurySetOrganizationCustomFieldPayload>;
|
|
176409
176620
|
setOrganizationCustomFieldValues?: Maybe<MercurySetOrganizationCustomFieldsPayload>;
|
|
176621
|
+
setOrganizationMembershipCapacity?: Maybe<MercurySetOrganizationMembershipCapacityPayload>;
|
|
176410
176622
|
starOrganization?: Maybe<MercuryStarOrganizationPayload>;
|
|
176411
176623
|
starOrganizationView?: Maybe<MercuryStarOrganizationViewPayload>;
|
|
176412
176624
|
transitionOrganizationStatus?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
@@ -176572,6 +176784,9 @@ export type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValueArgs =
|
|
|
176572
176784
|
export type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValuesArgs = {
|
|
176573
176785
|
input: MercurySetOrganizationCustomFieldsInput;
|
|
176574
176786
|
};
|
|
176787
|
+
export type MercuryOrganizationsMutationApiSetOrganizationMembershipCapacityArgs = {
|
|
176788
|
+
input: MercurySetOrganizationMembershipCapacityInput;
|
|
176789
|
+
};
|
|
176575
176790
|
export type MercuryOrganizationsMutationApiStarOrganizationArgs = {
|
|
176576
176791
|
input: MercuryStarOrganizationInput;
|
|
176577
176792
|
};
|
|
@@ -177035,7 +177250,9 @@ export type MercuryPortfolio = {
|
|
|
177035
177250
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
177036
177251
|
name: Scalars['String']['output'];
|
|
177037
177252
|
owner?: Maybe<User>;
|
|
177253
|
+
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
177038
177254
|
updatedBy?: Maybe<User>;
|
|
177255
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
177039
177256
|
url?: Maybe<Scalars['String']['output']>;
|
|
177040
177257
|
uuid: Scalars['ID']['output'];
|
|
177041
177258
|
version?: Maybe<Scalars['String']['output']>;
|
|
@@ -177049,6 +177266,17 @@ export type MercuryPortfolioBudgetAggregation = {
|
|
|
177049
177266
|
__typename?: 'MercuryPortfolioBudgetAggregation';
|
|
177050
177267
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177051
177268
|
};
|
|
177269
|
+
export type MercuryPortfolioConnection = {
|
|
177270
|
+
__typename?: 'MercuryPortfolioConnection';
|
|
177271
|
+
edges?: Maybe<Array<MercuryPortfolioEdge>>;
|
|
177272
|
+
pageInfo: PageInfo;
|
|
177273
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
177274
|
+
};
|
|
177275
|
+
export type MercuryPortfolioEdge = {
|
|
177276
|
+
__typename?: 'MercuryPortfolioEdge';
|
|
177277
|
+
cursor: Scalars['String']['output'];
|
|
177278
|
+
node: MercuryPortfolio;
|
|
177279
|
+
};
|
|
177052
177280
|
export type MercuryPortfolioFocusAreaSummary = {
|
|
177053
177281
|
__typename?: 'MercuryPortfolioFocusAreaSummary';
|
|
177054
177282
|
focusAreaTypeBreakdown?: Maybe<Array<Maybe<MercuryPortfolioFocusAreaTypeBreakdown>>>;
|
|
@@ -177075,6 +177303,15 @@ export type MercuryPortfolioHumanResourceAllocations = {
|
|
|
177075
177303
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177076
177304
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
177077
177305
|
};
|
|
177306
|
+
export type MercuryPortfolioSort = {
|
|
177307
|
+
field: MercuryPortfolioSortField;
|
|
177308
|
+
order: SortOrder;
|
|
177309
|
+
};
|
|
177310
|
+
export declare enum MercuryPortfolioSortField {
|
|
177311
|
+
Name = "NAME",
|
|
177312
|
+
Owner = "OWNER",
|
|
177313
|
+
Starred = "STARRED"
|
|
177314
|
+
}
|
|
177078
177315
|
export type MercuryPortfolioSpendAggregation = {
|
|
177079
177316
|
__typename?: 'MercuryPortfolioSpendAggregation';
|
|
177080
177317
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -177547,6 +177784,8 @@ export type MercuryQueryApi = {
|
|
|
177547
177784
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
177548
177785
|
myPreference?: Maybe<MercuryPreference>;
|
|
177549
177786
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
177787
|
+
portfolio?: Maybe<MercuryPortfolio>;
|
|
177788
|
+
portfolios?: Maybe<MercuryPortfolioConnection>;
|
|
177550
177789
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
177551
177790
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
177552
177791
|
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
@@ -177703,6 +177942,17 @@ export type MercuryQueryApiMyPreferenceArgs = {
|
|
|
177703
177942
|
export type MercuryQueryApiMyPreferencesArgs = {
|
|
177704
177943
|
cloudId: Scalars['ID']['input'];
|
|
177705
177944
|
};
|
|
177945
|
+
export type MercuryQueryApiPortfolioArgs = {
|
|
177946
|
+
cloudId: Scalars['ID']['input'];
|
|
177947
|
+
id: Scalars['ID']['input'];
|
|
177948
|
+
};
|
|
177949
|
+
export type MercuryQueryApiPortfoliosArgs = {
|
|
177950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
177951
|
+
cloudId: Scalars['ID']['input'];
|
|
177952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
177953
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
177954
|
+
sort?: InputMaybe<Array<MercuryPortfolioSort>>;
|
|
177955
|
+
};
|
|
177706
177956
|
export type MercuryQueryApiPortfoliosByArisArgs = {
|
|
177707
177957
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
177708
177958
|
};
|
|
@@ -178567,6 +178817,19 @@ export type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
|
178567
178817
|
errors?: Maybe<Array<MutationError>>;
|
|
178568
178818
|
success: Scalars['Boolean']['output'];
|
|
178569
178819
|
};
|
|
178820
|
+
export type MercurySetOrganizationMembershipCapacityInput = {
|
|
178821
|
+
endDate: Scalars['Date']['input'];
|
|
178822
|
+
id: Scalars['ID']['input'];
|
|
178823
|
+
percentage: Scalars['BigDecimal']['input'];
|
|
178824
|
+
startDate: Scalars['Date']['input'];
|
|
178825
|
+
};
|
|
178826
|
+
export type MercurySetOrganizationMembershipCapacityPayload = Payload & {
|
|
178827
|
+
__typename?: 'MercurySetOrganizationMembershipCapacityPayload';
|
|
178828
|
+
capacityAllocations: Array<MercuryOrganizationMembershipCapacityAllocation>;
|
|
178829
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178830
|
+
organizationMembershipId: Scalars['ID']['output'];
|
|
178831
|
+
success: Scalars['Boolean']['output'];
|
|
178832
|
+
};
|
|
178570
178833
|
export type MercurySetPlanBaselineInput = {
|
|
178571
178834
|
planId: Scalars['ID']['input'];
|
|
178572
178835
|
};
|
|
@@ -178701,6 +178964,14 @@ export type MercuryStarOrganizationViewPayload = Payload & {
|
|
|
178701
178964
|
errors?: Maybe<Array<MutationError>>;
|
|
178702
178965
|
success: Scalars['Boolean']['output'];
|
|
178703
178966
|
};
|
|
178967
|
+
export type MercuryStarPortfolioInput = {
|
|
178968
|
+
portfolioAri: Scalars['ID']['input'];
|
|
178969
|
+
};
|
|
178970
|
+
export type MercuryStarPortfolioPayload = Payload & {
|
|
178971
|
+
__typename?: 'MercuryStarPortfolioPayload';
|
|
178972
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178973
|
+
success: Scalars['Boolean']['output'];
|
|
178974
|
+
};
|
|
178704
178975
|
export type MercuryStarViewInput = {
|
|
178705
178976
|
id: Scalars['ID']['input'];
|
|
178706
178977
|
};
|
|
@@ -179379,6 +179650,14 @@ export type MercuryUnStarOrganizationViewPayload = Payload & {
|
|
|
179379
179650
|
errors?: Maybe<Array<MutationError>>;
|
|
179380
179651
|
success: Scalars['Boolean']['output'];
|
|
179381
179652
|
};
|
|
179653
|
+
export type MercuryUnStarPortfolioInput = {
|
|
179654
|
+
portfolioAri: Scalars['ID']['input'];
|
|
179655
|
+
};
|
|
179656
|
+
export type MercuryUnStarPortfolioPayload = Payload & {
|
|
179657
|
+
__typename?: 'MercuryUnStarPortfolioPayload';
|
|
179658
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179659
|
+
success: Scalars['Boolean']['output'];
|
|
179660
|
+
};
|
|
179382
179661
|
export type MercuryUnarchiveFocusAreaInput = {
|
|
179383
179662
|
cloudId: Scalars['ID']['input'];
|
|
179384
179663
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -179557,6 +179836,25 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
179557
179836
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
179558
179837
|
id: Scalars['ID']['input'];
|
|
179559
179838
|
};
|
|
179839
|
+
export type MercuryUpdateAskGlobalConfigurationAskPromotionSettingsInput = {
|
|
179840
|
+
askTypeId: Scalars['ID']['input'];
|
|
179841
|
+
enabled: Scalars['Boolean']['input'];
|
|
179842
|
+
targetTypes: Array<MercuryAskPromotionTarget>;
|
|
179843
|
+
};
|
|
179844
|
+
export type MercuryUpdateAskGlobalConfigurationConnectedWorkEnabledInput = {
|
|
179845
|
+
askTypeId: Scalars['ID']['input'];
|
|
179846
|
+
connectedWorkEnabled: Scalars['Boolean']['input'];
|
|
179847
|
+
};
|
|
179848
|
+
export type MercuryUpdateAskGlobalConfigurationEnforceAtlassianWorkflowInput = {
|
|
179849
|
+
askTypeId: Scalars['ID']['input'];
|
|
179850
|
+
enforceAtlassianWorkflow: Scalars['Boolean']['input'];
|
|
179851
|
+
};
|
|
179852
|
+
export type MercuryUpdateAskGlobalConfigurationPayload = Payload & {
|
|
179853
|
+
__typename?: 'MercuryUpdateAskGlobalConfigurationPayload';
|
|
179854
|
+
configuration?: Maybe<MercuryAskGlobalConfiguration>;
|
|
179855
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179856
|
+
success: Scalars['Boolean']['output'];
|
|
179857
|
+
};
|
|
179560
179858
|
export type MercuryUpdateAskGlobalFieldConfigurationInput = {
|
|
179561
179859
|
cloudId: Scalars['ID']['input'];
|
|
179562
179860
|
searchKey: Scalars['ID']['input'];
|
|
@@ -181022,7 +181320,6 @@ export type Mutation = {
|
|
|
181022
181320
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
181023
181321
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
181024
181322
|
agentStudio_upgradeSchema?: Maybe<AgentStudioUpgradeSchemaPayload>;
|
|
181025
|
-
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
181026
181323
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
181027
181324
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
181028
181325
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
@@ -182195,6 +182492,7 @@ export type Mutation = {
|
|
|
182195
182492
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
182196
182493
|
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
182197
182494
|
jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
|
|
182495
|
+
jira_upsertAgentSpaceInstructionV2?: Maybe<JiraUpsertAgentSpaceInstructionV2Payload>;
|
|
182198
182496
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
182199
182497
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
182200
182498
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -182227,6 +182525,7 @@ export type Mutation = {
|
|
|
182227
182525
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
182228
182526
|
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
182229
182527
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
182528
|
+
jsmSelfServe_dummy?: Maybe<Scalars['String']['output']>;
|
|
182230
182529
|
jsmTelemetry_addChart?: Maybe<JsmTelemetryAddChartResult>;
|
|
182231
182530
|
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
182232
182531
|
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -182399,6 +182698,9 @@ export type Mutation = {
|
|
|
182399
182698
|
mercury_updateAskCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
182400
182699
|
mercury_updateAskCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
182401
182700
|
mercury_updateAskDescription?: Maybe<MercuryUpsertAskPayload>;
|
|
182701
|
+
mercury_updateAskGlobalConfigurationAskPromotionSettings?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182702
|
+
mercury_updateAskGlobalConfigurationConnectedWorkEnabled?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182703
|
+
mercury_updateAskGlobalConfigurationEnforceAtlassianWorkflow?: Maybe<MercuryUpdateAskGlobalConfigurationPayload>;
|
|
182402
182704
|
mercury_updateAskGlobalFieldConfiguration?: Maybe<MercuryUpdateGlobalFieldConfigurationPayload>;
|
|
182403
182705
|
mercury_updateAskImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
182404
182706
|
mercury_updateAskJustification?: Maybe<MercuryUpsertAskPayload>;
|
|
@@ -182468,12 +182770,14 @@ export type Mutation = {
|
|
|
182468
182770
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
182469
182771
|
projects_createComment?: Maybe<TownsquareProjectsCreateCommentPayload>;
|
|
182470
182772
|
projects_createDecision?: Maybe<TownsquareProjectsCreateDecisionPayload>;
|
|
182773
|
+
projects_createDraftUpdate?: Maybe<TownsquareProjectsCreateDraftUpdatePayload>;
|
|
182471
182774
|
projects_createLearning?: Maybe<TownsquareProjectsCreateLearningPayload>;
|
|
182472
182775
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
182473
182776
|
projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
|
|
182474
182777
|
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
182475
182778
|
projects_deleteComment?: Maybe<TownsquareProjectsDeleteCommentPayload>;
|
|
182476
182779
|
projects_deleteDecision?: Maybe<TownsquareProjectsDeleteDecisionPayload>;
|
|
182780
|
+
projects_deleteDraftUpdate?: Maybe<TownsquareProjectsDeleteDraftUpdatePayload>;
|
|
182477
182781
|
projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
|
|
182478
182782
|
projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
|
|
182479
182783
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
@@ -182517,6 +182821,8 @@ export type Mutation = {
|
|
|
182517
182821
|
psm_ingestSensorEvent?: Maybe<PsmIngestSensorEventPayload>;
|
|
182518
182822
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
182519
182823
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
182824
|
+
psm_publishUserKey?: Maybe<PsmPublishUserKeyPayload>;
|
|
182825
|
+
psm_raiseTicket?: Maybe<PsmRaiseTicketPayload>;
|
|
182520
182826
|
psm_recordUserAction?: Maybe<PsmRecordUserActionPayload>;
|
|
182521
182827
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
182522
182828
|
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
@@ -183203,12 +183509,6 @@ export type MutationAgentStudio_UpdateScenarioMappingsForContainerArgs = {
|
|
|
183203
183509
|
export type MutationAgentStudio_UpgradeSchemaArgs = {
|
|
183204
183510
|
id: Scalars['ID']['input'];
|
|
183205
183511
|
};
|
|
183206
|
-
export type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
183207
|
-
cloudId: Scalars['String']['input'];
|
|
183208
|
-
input?: InputMaybe<AgentStudioUploadBatchEvaluationDatasetInput>;
|
|
183209
|
-
productType: AgentStudioProductType;
|
|
183210
|
-
projectContainerAri: Scalars['ID']['input'];
|
|
183211
|
-
};
|
|
183212
183512
|
export type MutationAgentWorkspace_ArchiveSkillArgs = {
|
|
183213
183513
|
input: AgentWorkspaceArchiveSkillInput;
|
|
183214
183514
|
};
|
|
@@ -187244,6 +187544,10 @@ export type MutationJira_UpsertAgentSpaceInstructionArgs = {
|
|
|
187244
187544
|
cloudId: Scalars['ID']['input'];
|
|
187245
187545
|
input: JiraUpsertAgentSpaceInstructionInput;
|
|
187246
187546
|
};
|
|
187547
|
+
export type MutationJira_UpsertAgentSpaceInstructionV2Args = {
|
|
187548
|
+
cloudId: Scalars['ID']['input'];
|
|
187549
|
+
input: JiraUpsertAgentSpaceInstructionInput;
|
|
187550
|
+
};
|
|
187247
187551
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
187248
187552
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
187249
187553
|
};
|
|
@@ -187357,6 +187661,9 @@ export type MutationJsmConversation_RejectInviteArgs = {
|
|
|
187357
187661
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
187358
187662
|
input: JsmConversationSettingsInput;
|
|
187359
187663
|
};
|
|
187664
|
+
export type MutationJsmSelfServe_DummyArgs = {
|
|
187665
|
+
projectAri: Scalars['String']['input'];
|
|
187666
|
+
};
|
|
187360
187667
|
export type MutationJsmTelemetry_AddChartArgs = {
|
|
187361
187668
|
cloudId: Scalars['ID']['input'];
|
|
187362
187669
|
input: JsmTelemetryAddChartInput;
|
|
@@ -187970,6 +188277,15 @@ export type MutationMercury_UpdateAskCustomFieldDefinitionOptionArgs = {
|
|
|
187970
188277
|
export type MutationMercury_UpdateAskDescriptionArgs = {
|
|
187971
188278
|
input: MercuryUpdateAskDescriptionInput;
|
|
187972
188279
|
};
|
|
188280
|
+
export type MutationMercury_UpdateAskGlobalConfigurationAskPromotionSettingsArgs = {
|
|
188281
|
+
input: MercuryUpdateAskGlobalConfigurationAskPromotionSettingsInput;
|
|
188282
|
+
};
|
|
188283
|
+
export type MutationMercury_UpdateAskGlobalConfigurationConnectedWorkEnabledArgs = {
|
|
188284
|
+
input: MercuryUpdateAskGlobalConfigurationConnectedWorkEnabledInput;
|
|
188285
|
+
};
|
|
188286
|
+
export type MutationMercury_UpdateAskGlobalConfigurationEnforceAtlassianWorkflowArgs = {
|
|
188287
|
+
input: MercuryUpdateAskGlobalConfigurationEnforceAtlassianWorkflowInput;
|
|
188288
|
+
};
|
|
187973
188289
|
export type MutationMercury_UpdateAskGlobalFieldConfigurationArgs = {
|
|
187974
188290
|
input: MercuryUpdateAskGlobalFieldConfigurationInput;
|
|
187975
188291
|
};
|
|
@@ -188174,6 +188490,9 @@ export type MutationProjects_CreateCommentArgs = {
|
|
|
188174
188490
|
export type MutationProjects_CreateDecisionArgs = {
|
|
188175
188491
|
input: TownsquareProjectsCreateDecisionInput;
|
|
188176
188492
|
};
|
|
188493
|
+
export type MutationProjects_CreateDraftUpdateArgs = {
|
|
188494
|
+
input: TownsquareProjectsCreateDraftUpdateInput;
|
|
188495
|
+
};
|
|
188177
188496
|
export type MutationProjects_CreateLearningArgs = {
|
|
188178
188497
|
input: TownsquareProjectsCreateLearningInput;
|
|
188179
188498
|
};
|
|
@@ -188192,6 +188511,9 @@ export type MutationProjects_DeleteCommentArgs = {
|
|
|
188192
188511
|
export type MutationProjects_DeleteDecisionArgs = {
|
|
188193
188512
|
input: TownsquareProjectsDeleteDecisionInput;
|
|
188194
188513
|
};
|
|
188514
|
+
export type MutationProjects_DeleteDraftUpdateArgs = {
|
|
188515
|
+
input: TownsquareProjectsDeleteDraftUpdateInput;
|
|
188516
|
+
};
|
|
188195
188517
|
export type MutationProjects_DeleteLatestUpdateArgs = {
|
|
188196
188518
|
input?: InputMaybe<TownsquareProjectsDeleteLatestUpdateInput>;
|
|
188197
188519
|
};
|
|
@@ -188322,6 +188644,14 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
188322
188644
|
cloudId: Scalars['ID']['input'];
|
|
188323
188645
|
input: PsmOnboardTenantInput;
|
|
188324
188646
|
};
|
|
188647
|
+
export type MutationPsm_PublishUserKeyArgs = {
|
|
188648
|
+
cloudId: Scalars['ID']['input'];
|
|
188649
|
+
input: PsmPublishUserKeyInput;
|
|
188650
|
+
};
|
|
188651
|
+
export type MutationPsm_RaiseTicketArgs = {
|
|
188652
|
+
cloudId: Scalars['ID']['input'];
|
|
188653
|
+
input: PsmRaiseTicketInput;
|
|
188654
|
+
};
|
|
188325
188655
|
export type MutationPsm_RecordUserActionArgs = {
|
|
188326
188656
|
cloudId: Scalars['ID']['input'];
|
|
188327
188657
|
input: PsmRecordUserActionInput;
|
|
@@ -191619,6 +191949,7 @@ export type PremiumExtensionsFeature = {
|
|
|
191619
191949
|
isEntitled: Scalars['Boolean']['output'];
|
|
191620
191950
|
};
|
|
191621
191951
|
export declare enum PrincipalFilterType {
|
|
191952
|
+
Agent = "AGENT",
|
|
191622
191953
|
App = "APP",
|
|
191623
191954
|
Group = "GROUP",
|
|
191624
191955
|
Guest = "GUEST",
|
|
@@ -192195,6 +192526,11 @@ export type PsmDeviceIdentity = {
|
|
|
192195
192526
|
owner?: Maybe<PsmDeviceOwner>;
|
|
192196
192527
|
serialNumber: Scalars['String']['output'];
|
|
192197
192528
|
};
|
|
192529
|
+
export type PsmDeviceKeys = {
|
|
192530
|
+
__typename?: 'PsmDeviceKeys';
|
|
192531
|
+
pairingId: Scalars['String']['output'];
|
|
192532
|
+
publicKeyPins: Array<Scalars['String']['output']>;
|
|
192533
|
+
};
|
|
192198
192534
|
export type PsmDeviceOwner = {
|
|
192199
192535
|
__typename?: 'PsmDeviceOwner';
|
|
192200
192536
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -192429,6 +192765,40 @@ export type PsmOnboardTenantStatusResult = {
|
|
|
192429
192765
|
spaceId: Scalars['ID']['output'];
|
|
192430
192766
|
status: PsmOnboardTenantStatus;
|
|
192431
192767
|
};
|
|
192768
|
+
export type PsmPublishUserKeyInput = {
|
|
192769
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
192770
|
+
osUserId: Scalars['String']['input'];
|
|
192771
|
+
pairingId: Scalars['String']['input'];
|
|
192772
|
+
publicKeyPin: Scalars['String']['input'];
|
|
192773
|
+
serialNumber: Scalars['String']['input'];
|
|
192774
|
+
};
|
|
192775
|
+
export type PsmPublishUserKeyPayload = Payload & {
|
|
192776
|
+
__typename?: 'PsmPublishUserKeyPayload';
|
|
192777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192778
|
+
success: Scalars['Boolean']['output'];
|
|
192779
|
+
userKey?: Maybe<PsmUserKey>;
|
|
192780
|
+
};
|
|
192781
|
+
export type PsmRaiseTicketInput = {
|
|
192782
|
+
accountId: Scalars['ID']['input'];
|
|
192783
|
+
conversationId: Scalars['ID']['input'];
|
|
192784
|
+
deviceId: Scalars['ID']['input'];
|
|
192785
|
+
};
|
|
192786
|
+
export type PsmRaiseTicketPayload = Payload & {
|
|
192787
|
+
__typename?: 'PsmRaiseTicketPayload';
|
|
192788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
192789
|
+
success: Scalars['Boolean']['output'];
|
|
192790
|
+
ticket?: Maybe<PsmRaisedTicket>;
|
|
192791
|
+
};
|
|
192792
|
+
export type PsmRaisedTicket = {
|
|
192793
|
+
__typename?: 'PsmRaisedTicket';
|
|
192794
|
+
agentUrl?: Maybe<Scalars['String']['output']>;
|
|
192795
|
+
portalUrl?: Maybe<Scalars['String']['output']>;
|
|
192796
|
+
requestTypeId?: Maybe<Scalars['ID']['output']>;
|
|
192797
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
192798
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
192799
|
+
ticketId: Scalars['ID']['output'];
|
|
192800
|
+
ticketKey: Scalars['String']['output'];
|
|
192801
|
+
};
|
|
192432
192802
|
export type PsmRecordUserActionInput = {
|
|
192433
192803
|
accountId: Scalars['ID']['input'];
|
|
192434
192804
|
action: PsmUserActionType;
|
|
@@ -192799,6 +193169,17 @@ export type PsmUpdateSensorEnablementPayload = Payload & {
|
|
|
192799
193169
|
export declare enum PsmUserActionType {
|
|
192800
193170
|
Resolved = "RESOLVED"
|
|
192801
193171
|
}
|
|
193172
|
+
export type PsmUserKey = {
|
|
193173
|
+
__typename?: 'PsmUserKey';
|
|
193174
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
193175
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
193176
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
193177
|
+
osUserId?: Maybe<Scalars['String']['output']>;
|
|
193178
|
+
pairingId: Scalars['String']['output'];
|
|
193179
|
+
publicKeyPins?: Maybe<Array<Scalars['String']['output']>>;
|
|
193180
|
+
serialNumber?: Maybe<Scalars['String']['output']>;
|
|
193181
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
193182
|
+
};
|
|
192802
193183
|
export type PublicLink = {
|
|
192803
193184
|
__typename?: 'PublicLink';
|
|
192804
193185
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -193118,7 +193499,8 @@ export type Query = {
|
|
|
193118
193499
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
193119
193500
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
193120
193501
|
admin_aiPolicies?: Maybe<AdminAiPolicyConnection>;
|
|
193121
|
-
|
|
193502
|
+
admin_appActivationPreview?: Maybe<AdminAppActivationPreviewResponse>;
|
|
193503
|
+
admin_appActivationStatus?: Maybe<AdminAppActivationStatusResponse>;
|
|
193122
193504
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
193123
193505
|
admin_appModulesForApps?: Maybe<Array<AdminAppModulesForAppsResult>>;
|
|
193124
193506
|
admin_auditLogBackgroundQueries?: Maybe<AdminAuditLogBackgroundQueryConnection>;
|
|
@@ -193782,6 +194164,7 @@ export type Query = {
|
|
|
193782
194164
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
193783
194165
|
confluence_topic?: Maybe<ConfluenceTopic>;
|
|
193784
194166
|
confluence_topics?: Maybe<ConfluenceTopicConnection>;
|
|
194167
|
+
confluence_updateModeChangeAsyncStatus?: Maybe<ConfluenceUpdateModeChangeAsyncStatus>;
|
|
193785
194168
|
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
193786
194169
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
193787
194170
|
confluence_userSetup?: Maybe<ConfluenceUserSetupResult>;
|
|
@@ -196334,6 +196717,7 @@ export type Query = {
|
|
|
196334
196717
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
196335
196718
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
196336
196719
|
growthUnifiedProfile_siteProfile?: Maybe<GrowthUnifiedProfileSiteProfileResult>;
|
|
196720
|
+
gtm_customer?: Maybe<GtmCustomer>;
|
|
196337
196721
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
196338
196722
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
196339
196723
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
@@ -196381,6 +196765,8 @@ export type Query = {
|
|
|
196381
196765
|
jira_agentSpaceCuratedSources?: Maybe<JiraAgentContextItemConnection>;
|
|
196382
196766
|
jira_agentSpaceInstructions?: Maybe<JiraAgentSpaceInstruction>;
|
|
196383
196767
|
jira_agentSpaceInstructionsByIds?: Maybe<Array<Maybe<JiraAgentSpaceInstruction>>>;
|
|
196768
|
+
jira_agentSpaceInstructionsByIdsV2?: Maybe<Array<Maybe<JiraAgentSpaceInstructionV2>>>;
|
|
196769
|
+
jira_agentSpaceInstructionsV2?: Maybe<JiraAgentSpaceInstructionV2>;
|
|
196384
196770
|
jira_agentsInSpace?: Maybe<JiraAgentsInSpace>;
|
|
196385
196771
|
jira_agentsInSpaceByAgentAris?: Maybe<Array<Maybe<JiraAgentInSpace>>>;
|
|
196386
196772
|
jira_availableStatuses?: Maybe<JiraStatusConnection>;
|
|
@@ -196477,6 +196863,7 @@ export type Query = {
|
|
|
196477
196863
|
jsmConversation_myClosedConversations?: Maybe<JsmConversationConnection>;
|
|
196478
196864
|
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
196479
196865
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
196866
|
+
jsmSelfServe_conversationStarters?: Maybe<JsmSelfServeConversationStartersResult>;
|
|
196480
196867
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
196481
196868
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
196482
196869
|
jsmTelemetry_chartData?: Maybe<JsmTelemetryChartDataResult>;
|
|
@@ -196504,6 +196891,7 @@ export type Query = {
|
|
|
196504
196891
|
kitsune_connectorConfigs?: Maybe<Array<KitsuneConnectorConfig>>;
|
|
196505
196892
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
196506
196893
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
196894
|
+
kitsune_customersByAri?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
196507
196895
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
196508
196896
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
196509
196897
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
@@ -196514,6 +196902,7 @@ export type Query = {
|
|
|
196514
196902
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
196515
196903
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
196516
196904
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
196905
|
+
kitsune_organizationsByAri?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
196517
196906
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
196518
196907
|
kitsune_rollupCustomers?: Maybe<KitsuneCustomersRollup>;
|
|
196519
196908
|
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
@@ -196633,6 +197022,7 @@ export type Query = {
|
|
|
196633
197022
|
mercury_askTypes?: Maybe<MercuryAskTypeConnection>;
|
|
196634
197023
|
mercury_askTypesByIds?: Maybe<Array<Maybe<MercuryAskType>>>;
|
|
196635
197024
|
mercury_asks?: Maybe<MercuryAskConnection>;
|
|
197025
|
+
mercury_asksByExternalIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
196636
197026
|
mercury_asksByIds?: Maybe<Array<Maybe<MercuryAsk>>>;
|
|
196637
197027
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
196638
197028
|
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
@@ -196753,6 +197143,7 @@ export type Query = {
|
|
|
196753
197143
|
psm_dashboardOverview?: Maybe<PsmDashboardOverview>;
|
|
196754
197144
|
psm_device?: Maybe<PsmDevice>;
|
|
196755
197145
|
psm_deviceHealthTrend?: Maybe<PsmDeviceHealthTrend>;
|
|
197146
|
+
psm_deviceKeys?: Maybe<PsmDeviceKeys>;
|
|
196756
197147
|
psm_deviceRemediationHistory?: Maybe<PsmDeviceRemediationHistory>;
|
|
196757
197148
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
196758
197149
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
@@ -196982,6 +197373,7 @@ export type Query = {
|
|
|
196982
197373
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
196983
197374
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
196984
197375
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
197376
|
+
surveys_surveysByProject?: Maybe<SurveysListResult>;
|
|
196985
197377
|
tags_getAssignedLabels?: Maybe<Array<TagsAssignedLabel>>;
|
|
196986
197378
|
tags_getLabelAssignments?: Maybe<Array<TagsLabelAssignment>>;
|
|
196987
197379
|
tags_getTag?: Maybe<TagsResponse>;
|
|
@@ -197027,6 +197419,7 @@ export type Query = {
|
|
|
197027
197419
|
traceTiming?: Maybe<TraceTiming>;
|
|
197028
197420
|
trello: TrelloQueryApi;
|
|
197029
197421
|
unified?: Maybe<UnifiedQuery>;
|
|
197422
|
+
unitsRolloutSettings?: Maybe<UnitsRolloutSettings>;
|
|
197030
197423
|
user?: Maybe<User>;
|
|
197031
197424
|
userAccessStatus?: Maybe<AccessStatus>;
|
|
197032
197425
|
userCanCreateContent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -197084,8 +197477,12 @@ export type QueryAdmin_AiPoliciesArgs = {
|
|
|
197084
197477
|
orgId: Scalars['ID']['input'];
|
|
197085
197478
|
searchInput?: InputMaybe<AdminAiPoliciesSearchInput>;
|
|
197086
197479
|
};
|
|
197480
|
+
export type QueryAdmin_AppActivationPreviewArgs = {
|
|
197481
|
+
input: AdminAppActivationPreviewInput;
|
|
197482
|
+
};
|
|
197087
197483
|
export type QueryAdmin_AppActivationStatusArgs = {
|
|
197088
197484
|
activationId: Scalars['ID']['input'];
|
|
197485
|
+
orgId: Scalars['ID']['input'];
|
|
197089
197486
|
};
|
|
197090
197487
|
export type QueryAdmin_AppModulesArgs = {
|
|
197091
197488
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -200372,6 +200769,10 @@ export type QueryConfluence_TopicsArgs = {
|
|
|
200372
200769
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
200373
200770
|
namePattern?: InputMaybe<Scalars['String']['input']>;
|
|
200374
200771
|
};
|
|
200772
|
+
export type QueryConfluence_UpdateModeChangeAsyncStatusArgs = {
|
|
200773
|
+
cloudId: Scalars['ID']['input'];
|
|
200774
|
+
longTaskId: Scalars['ID']['input'];
|
|
200775
|
+
};
|
|
200375
200776
|
export type QueryConfluence_UserClassesArgs = {
|
|
200376
200777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
200377
200778
|
cloudId: Scalars['ID']['input'];
|
|
@@ -201872,6 +202273,7 @@ export type QueryGraphIntegration_GlobalMcpToolsArgs = {
|
|
|
201872
202273
|
};
|
|
201873
202274
|
export type QueryGraphIntegration_McpAdminManagementCuratedMcpServerTemplatesArgs = {
|
|
201874
202275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202276
|
+
authTypes?: InputMaybe<Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>>;
|
|
201875
202277
|
cloudId: Scalars['ID']['input'];
|
|
201876
202278
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
201877
202279
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -218233,6 +218635,10 @@ export type QueryGrowthUnifiedProfile_GetUnifiedUserProfileArgs = {
|
|
|
218233
218635
|
export type QueryGrowthUnifiedProfile_SiteProfileArgs = {
|
|
218234
218636
|
tenantId: Scalars['ID']['input'];
|
|
218235
218637
|
};
|
|
218638
|
+
export type QueryGtm_CustomerArgs = {
|
|
218639
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
218640
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
218641
|
+
};
|
|
218236
218642
|
export type QueryHasUserCommentedArgs = {
|
|
218237
218643
|
accountId: Scalars['String']['input'];
|
|
218238
218644
|
};
|
|
@@ -218394,6 +218800,13 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
218394
218800
|
export type QueryJira_AgentSpaceInstructionsByIdsArgs = {
|
|
218395
218801
|
ids: Array<Scalars['ID']['input']>;
|
|
218396
218802
|
};
|
|
218803
|
+
export type QueryJira_AgentSpaceInstructionsByIdsV2Args = {
|
|
218804
|
+
ids: Array<Scalars['ID']['input']>;
|
|
218805
|
+
};
|
|
218806
|
+
export type QueryJira_AgentSpaceInstructionsV2Args = {
|
|
218807
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
218808
|
+
projectAri: Scalars['ID']['input'];
|
|
218809
|
+
};
|
|
218397
218810
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
218398
218811
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
218399
218812
|
cloudId: Scalars['ID']['input'];
|
|
@@ -218839,6 +219252,9 @@ export type QueryJsmConversation_SettingArgs = {
|
|
|
218839
219252
|
export type QueryJsmConversation_SettingsArgs = {
|
|
218840
219253
|
projectAri: Scalars['String']['input'];
|
|
218841
219254
|
};
|
|
219255
|
+
export type QueryJsmSelfServe_ConversationStartersArgs = {
|
|
219256
|
+
projectAri: Scalars['String']['input'];
|
|
219257
|
+
};
|
|
218842
219258
|
export type QueryJsmTelemetry_AiPromptArgs = {
|
|
218843
219259
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
218844
219260
|
prompt: Scalars['String']['input'];
|
|
@@ -218957,6 +219373,9 @@ export type QueryKitsune_CustomersArgs = {
|
|
|
218957
219373
|
customerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
218958
219374
|
workspaceAri: Scalars['ID']['input'];
|
|
218959
219375
|
};
|
|
219376
|
+
export type QueryKitsune_CustomersByAriArgs = {
|
|
219377
|
+
aris: Array<Scalars['ID']['input']>;
|
|
219378
|
+
};
|
|
218960
219379
|
export type QueryKitsune_EntitlementsArgs = {
|
|
218961
219380
|
workspaceAri: Scalars['ID']['input'];
|
|
218962
219381
|
};
|
|
@@ -218995,6 +219414,9 @@ export type QueryKitsune_OrganizationsArgs = {
|
|
|
218995
219414
|
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
218996
219415
|
workspaceAri: Scalars['ID']['input'];
|
|
218997
219416
|
};
|
|
219417
|
+
export type QueryKitsune_OrganizationsByAriArgs = {
|
|
219418
|
+
aris: Array<Scalars['ID']['input']>;
|
|
219419
|
+
};
|
|
218998
219420
|
export type QueryKitsune_OrganizationsByNameArgs = {
|
|
218999
219421
|
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
219000
219422
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -219006,6 +219428,7 @@ export type QueryKitsune_SearchChunkArgs = {
|
|
|
219006
219428
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
219007
219429
|
options?: InputMaybe<KitsuneSearchChunkOptions>;
|
|
219008
219430
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
219431
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
219009
219432
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
219010
219433
|
workspaceAri: Scalars['ID']['input'];
|
|
219011
219434
|
};
|
|
@@ -219436,6 +219859,10 @@ export type QueryMercury_AsksArgs = {
|
|
|
219436
219859
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
219437
219860
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
219438
219861
|
};
|
|
219862
|
+
export type QueryMercury_AsksByExternalIdsArgs = {
|
|
219863
|
+
cloudId: Scalars['ID']['input'];
|
|
219864
|
+
ids: Array<Scalars['String']['input']>;
|
|
219865
|
+
};
|
|
219439
219866
|
export type QueryMercury_AsksByIdsArgs = {
|
|
219440
219867
|
ids: Array<Scalars['ID']['input']>;
|
|
219441
219868
|
};
|
|
@@ -219873,6 +220300,10 @@ export type QueryPsm_DeviceHealthTrendArgs = {
|
|
|
219873
220300
|
spaceId: Scalars['ID']['input'];
|
|
219874
220301
|
timeWindow?: PsmTimeWindow;
|
|
219875
220302
|
};
|
|
220303
|
+
export type QueryPsm_DeviceKeysArgs = {
|
|
220304
|
+
cloudId: Scalars['ID']['input'];
|
|
220305
|
+
pairingId: Scalars['String']['input'];
|
|
220306
|
+
};
|
|
219876
220307
|
export type QueryPsm_DeviceRemediationHistoryArgs = {
|
|
219877
220308
|
cloudId: Scalars['ID']['input'];
|
|
219878
220309
|
serialNumber: Scalars['String']['input'];
|
|
@@ -220860,6 +221291,9 @@ export type QuerySuggestedSpacesArgs = {
|
|
|
220860
221291
|
export type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
220861
221292
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
220862
221293
|
};
|
|
221294
|
+
export type QuerySurveys_SurveysByProjectArgs = {
|
|
221295
|
+
jiraProjectARI: Scalars['ID']['input'];
|
|
221296
|
+
};
|
|
220863
221297
|
export type QueryTags_GetAssignedLabelsArgs = {
|
|
220864
221298
|
entityAri: Scalars['String']['input'];
|
|
220865
221299
|
kind: Scalars['String']['input'];
|
|
@@ -221048,6 +221482,9 @@ export type QueryTownsquareUnsharded_AllWorkspaceSummariesForOrgArgs = {
|
|
|
221048
221482
|
export type QueryTownsquareUnsharded_FusionConfigByJiraIssueArisArgs = {
|
|
221049
221483
|
jiraIssueAris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
221050
221484
|
};
|
|
221485
|
+
export type QueryUnitsRolloutSettingsArgs = {
|
|
221486
|
+
orgId: Scalars['ID']['input'];
|
|
221487
|
+
};
|
|
221051
221488
|
export type QueryUserArgs = {
|
|
221052
221489
|
accountId: Scalars['ID']['input'];
|
|
221053
221490
|
};
|
|
@@ -222005,12 +222442,19 @@ export type RadarSkillAssignmentInput = {
|
|
|
222005
222442
|
};
|
|
222006
222443
|
export type RadarSkillAssignmentMetadata = {
|
|
222007
222444
|
__typename?: 'RadarSkillAssignmentMetadata';
|
|
222445
|
+
classificationType?: Maybe<RadarSkillClassificationType>;
|
|
222008
222446
|
reasoning?: Maybe<Scalars['String']['output']>;
|
|
222009
222447
|
skillId: Scalars['ID']['output'];
|
|
222010
222448
|
verificationStatus?: Maybe<RadarSkillVerificationStatus>;
|
|
222011
222449
|
verifiedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
222450
|
+
verifiedByAaid?: Maybe<Scalars['ID']['output']>;
|
|
222451
|
+
verifiedByUser?: Maybe<User>;
|
|
222012
222452
|
workerId: Scalars['ID']['output'];
|
|
222013
222453
|
};
|
|
222454
|
+
export declare enum RadarSkillClassificationType {
|
|
222455
|
+
AiInferred = "AI_INFERRED",
|
|
222456
|
+
Manual = "MANUAL"
|
|
222457
|
+
}
|
|
222014
222458
|
export type RadarSkillConnection = RadarConnection & {
|
|
222015
222459
|
__typename?: 'RadarSkillConnection';
|
|
222016
222460
|
edges?: Maybe<Array<RadarSkillEdge>>;
|
|
@@ -224359,6 +224803,7 @@ export type SearchConfigurationSiteMetadata = {
|
|
|
224359
224803
|
};
|
|
224360
224804
|
export type SearchConfigurationUnitMetadata = {
|
|
224361
224805
|
__typename?: 'SearchConfigurationUnitMetadata';
|
|
224806
|
+
firstPartyProducts: Array<SearchFirstPartyMetadata>;
|
|
224362
224807
|
id: Scalars['String']['output'];
|
|
224363
224808
|
siteName: Scalars['String']['output'];
|
|
224364
224809
|
url: Scalars['String']['output'];
|
|
@@ -232629,6 +233074,7 @@ export type Subscription = {
|
|
|
232629
233074
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
232630
233075
|
jsmConversation_updatesByProject?: Maybe<JsmConversationUpdate>;
|
|
232631
233076
|
jsmConversation_updatesByUser?: Maybe<JsmConversationUpdate>;
|
|
233077
|
+
jsmSelfServe_dummy?: Maybe<Scalars['String']['output']>;
|
|
232632
233078
|
kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
|
|
232633
233079
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
232634
233080
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
@@ -232758,6 +233204,9 @@ export type SubscriptionJsmConversation_UpdatesByProjectArgs = {
|
|
|
232758
233204
|
export type SubscriptionJsmConversation_UpdatesByUserArgs = {
|
|
232759
233205
|
projectAri: Scalars['ID']['input'];
|
|
232760
233206
|
};
|
|
233207
|
+
export type SubscriptionJsmSelfServe_DummyArgs = {
|
|
233208
|
+
projectAri: Scalars['String']['input'];
|
|
233209
|
+
};
|
|
232761
233210
|
export type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
232762
233211
|
spaceAri: Scalars['ID']['input'];
|
|
232763
233212
|
};
|
|
@@ -233288,6 +233737,104 @@ export type SupportRequests = {
|
|
|
233288
233737
|
page: Array<SupportRequest>;
|
|
233289
233738
|
total: Scalars['Int']['output'];
|
|
233290
233739
|
};
|
|
233740
|
+
export declare enum SurveysAccess {
|
|
233741
|
+
Open = "OPEN",
|
|
233742
|
+
ViewEditRestricted = "VIEW_EDIT_RESTRICTED",
|
|
233743
|
+
ViewOpenEditRestricted = "VIEW_OPEN_EDIT_RESTRICTED"
|
|
233744
|
+
}
|
|
233745
|
+
export type SurveysDetailsResponse = {
|
|
233746
|
+
__typename?: 'SurveysDetailsResponse';
|
|
233747
|
+
captureEmail: Scalars['Boolean']['output'];
|
|
233748
|
+
categories?: Maybe<Array<Scalars['String']['output']>>;
|
|
233749
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
233750
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
233751
|
+
currentUserPermissionLevel?: Maybe<SurveysEffectivePermissionLevel>;
|
|
233752
|
+
distributionUrl?: Maybe<Scalars['String']['output']>;
|
|
233753
|
+
goal?: Maybe<Scalars['String']['output']>;
|
|
233754
|
+
id: Scalars['ID']['output'];
|
|
233755
|
+
isAnonymous: Scalars['Boolean']['output'];
|
|
233756
|
+
isWorkItemEnabled: Scalars['Boolean']['output'];
|
|
233757
|
+
permissions?: Maybe<SurveysPermissions>;
|
|
233758
|
+
projectId: Scalars['ID']['output'];
|
|
233759
|
+
restrictions: SurveysFormRestrictions;
|
|
233760
|
+
stats: SurveysStats;
|
|
233761
|
+
status: SurveysStatus;
|
|
233762
|
+
surveyCompletionMessage?: Maybe<Scalars['String']['output']>;
|
|
233763
|
+
surveyCompletionMessageTranslations: Array<SurveysTranslationEntry>;
|
|
233764
|
+
templateForm?: Maybe<Scalars['String']['output']>;
|
|
233765
|
+
templateFormId: Scalars['ID']['output'];
|
|
233766
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
233767
|
+
uniqueResponses: Scalars['Boolean']['output'];
|
|
233768
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
233769
|
+
};
|
|
233770
|
+
export declare enum SurveysEffectivePermissionLevel {
|
|
233771
|
+
Edit = "EDIT",
|
|
233772
|
+
None = "NONE",
|
|
233773
|
+
View = "VIEW"
|
|
233774
|
+
}
|
|
233775
|
+
export type SurveysFormRestrictions = {
|
|
233776
|
+
__typename?: 'SurveysFormRestrictions';
|
|
233777
|
+
access: SurveysRestrictionAccess;
|
|
233778
|
+
accessIds: Array<Scalars['String']['output']>;
|
|
233779
|
+
};
|
|
233780
|
+
export type SurveysGenericQueryErrorExtension = SurveysQueryErrorExtension & {
|
|
233781
|
+
__typename?: 'SurveysGenericQueryErrorExtension';
|
|
233782
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
233783
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
233784
|
+
};
|
|
233785
|
+
export type SurveysListResponse = {
|
|
233786
|
+
__typename?: 'SurveysListResponse';
|
|
233787
|
+
surveys: Array<SurveysDetailsResponse>;
|
|
233788
|
+
};
|
|
233789
|
+
export type SurveysListResult = SurveysListResponse | SurveysQueryError;
|
|
233790
|
+
export type SurveysPermissionEntity = {
|
|
233791
|
+
__typename?: 'SurveysPermissionEntity';
|
|
233792
|
+
id: Scalars['String']['output'];
|
|
233793
|
+
level: SurveysPermissionEntityLevel;
|
|
233794
|
+
type: SurveysPermissionEntityType;
|
|
233795
|
+
};
|
|
233796
|
+
export declare enum SurveysPermissionEntityLevel {
|
|
233797
|
+
Edit = "EDIT",
|
|
233798
|
+
View = "VIEW"
|
|
233799
|
+
}
|
|
233800
|
+
export declare enum SurveysPermissionEntityType {
|
|
233801
|
+
Group = "GROUP",
|
|
233802
|
+
User = "USER"
|
|
233803
|
+
}
|
|
233804
|
+
export type SurveysPermissions = {
|
|
233805
|
+
__typename?: 'SurveysPermissions';
|
|
233806
|
+
access: SurveysAccess;
|
|
233807
|
+
entities: Array<SurveysPermissionEntity>;
|
|
233808
|
+
};
|
|
233809
|
+
export type SurveysQueryError = {
|
|
233810
|
+
__typename?: 'SurveysQueryError';
|
|
233811
|
+
extensions?: Maybe<Array<SurveysQueryErrorExtension>>;
|
|
233812
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
233813
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
233814
|
+
};
|
|
233815
|
+
export type SurveysQueryErrorExtension = {
|
|
233816
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
233817
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
233818
|
+
};
|
|
233819
|
+
export declare enum SurveysRestrictionAccess {
|
|
233820
|
+
Restricted = "RESTRICTED",
|
|
233821
|
+
Unrestricted = "UNRESTRICTED"
|
|
233822
|
+
}
|
|
233823
|
+
export type SurveysStats = {
|
|
233824
|
+
__typename?: 'SurveysStats';
|
|
233825
|
+
responseCount: Scalars['Int']['output'];
|
|
233826
|
+
viewCount: Scalars['Int']['output'];
|
|
233827
|
+
};
|
|
233828
|
+
export declare enum SurveysStatus {
|
|
233829
|
+
Completed = "COMPLETED",
|
|
233830
|
+
Draft = "DRAFT",
|
|
233831
|
+
Published = "PUBLISHED"
|
|
233832
|
+
}
|
|
233833
|
+
export type SurveysTranslationEntry = {
|
|
233834
|
+
__typename?: 'SurveysTranslationEntry';
|
|
233835
|
+
locale: Scalars['String']['output'];
|
|
233836
|
+
message: Scalars['String']['output'];
|
|
233837
|
+
};
|
|
233291
233838
|
export type Swimlane = {
|
|
233292
233839
|
__typename?: 'Swimlane';
|
|
233293
233840
|
allowedCardTypes?: Maybe<Array<CardType>>;
|
|
@@ -235289,6 +235836,43 @@ export type TownsquareCompletionProjectState = {
|
|
|
235289
235836
|
export type TownsquareConnectSlackChannelInputMetadata = {
|
|
235290
235837
|
fieldTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
235291
235838
|
};
|
|
235839
|
+
export type TownsquareConnectedUpdateConnection = {
|
|
235840
|
+
__typename?: 'TownsquareConnectedUpdateConnection';
|
|
235841
|
+
edges?: Maybe<Array<Maybe<TownsquareConnectedUpdateEdge>>>;
|
|
235842
|
+
pageInfo: PageInfo;
|
|
235843
|
+
};
|
|
235844
|
+
export type TownsquareConnectedUpdateEdge = {
|
|
235845
|
+
__typename?: 'TownsquareConnectedUpdateEdge';
|
|
235846
|
+
cursor: Scalars['String']['output'];
|
|
235847
|
+
node?: Maybe<TownsquareUpdate>;
|
|
235848
|
+
nodeMissingReason?: Maybe<TownsquareConnectedUpdateNodeMissingReason>;
|
|
235849
|
+
sourceGoal?: Maybe<TownsquareGoal>;
|
|
235850
|
+
sourceProject?: Maybe<TownsquareProject>;
|
|
235851
|
+
};
|
|
235852
|
+
export declare enum TownsquareConnectedUpdateNodeMissingReason {
|
|
235853
|
+
Archived = "ARCHIVED",
|
|
235854
|
+
Deleted = "DELETED",
|
|
235855
|
+
NotPermitted = "NOT_PERMITTED",
|
|
235856
|
+
NoUpdate = "NO_UPDATE"
|
|
235857
|
+
}
|
|
235858
|
+
export type TownsquareConnectedUpdates = {
|
|
235859
|
+
__typename?: 'TownsquareConnectedUpdates';
|
|
235860
|
+
projectUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
235861
|
+
subGoalUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
235862
|
+
successMeasureUpdates?: Maybe<TownsquareConnectedUpdateConnection>;
|
|
235863
|
+
};
|
|
235864
|
+
export type TownsquareConnectedUpdatesProjectUpdatesArgs = {
|
|
235865
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
235866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235867
|
+
};
|
|
235868
|
+
export type TownsquareConnectedUpdatesSubGoalUpdatesArgs = {
|
|
235869
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
235870
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235871
|
+
};
|
|
235872
|
+
export type TownsquareConnectedUpdatesSuccessMeasureUpdatesArgs = {
|
|
235873
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
235874
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235875
|
+
};
|
|
235292
235876
|
export type TownsquareContributor = {
|
|
235293
235877
|
__typename?: 'TownsquareContributor';
|
|
235294
235878
|
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
@@ -235661,6 +236245,7 @@ export type TownsquareGoal = Node & {
|
|
|
235661
236245
|
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
235662
236246
|
capabilities?: Maybe<TownsquareGoalCapabilities>;
|
|
235663
236247
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
236248
|
+
connectedUpdates?: Maybe<TownsquareConnectedUpdates>;
|
|
235664
236249
|
creationDate: Scalars['DateTime']['output'];
|
|
235665
236250
|
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
235666
236251
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -235961,6 +236546,7 @@ export type TownsquareGoalDraftUpdate = Node & {
|
|
|
235961
236546
|
__typename?: 'TownsquareGoalDraftUpdate';
|
|
235962
236547
|
author?: Maybe<User>;
|
|
235963
236548
|
goal: TownsquareGoal;
|
|
236549
|
+
highlights?: Maybe<Array<TownsquareUpdateHighlightInputDraft>>;
|
|
235964
236550
|
id: Scalars['ID']['output'];
|
|
235965
236551
|
metricUpdate?: Maybe<Array<TownsquareMetricUpdateInputDraft>>;
|
|
235966
236552
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -238322,6 +238908,15 @@ export type TownsquareProjectsCreateDecisionPayload = {
|
|
|
238322
238908
|
errors?: Maybe<Array<MutationError>>;
|
|
238323
238909
|
success: Scalars['Boolean']['output'];
|
|
238324
238910
|
};
|
|
238911
|
+
export type TownsquareProjectsCreateDraftUpdateInput = {
|
|
238912
|
+
values: TownsquareProjectsCreateUpdateInput;
|
|
238913
|
+
};
|
|
238914
|
+
export type TownsquareProjectsCreateDraftUpdatePayload = {
|
|
238915
|
+
__typename?: 'TownsquareProjectsCreateDraftUpdatePayload';
|
|
238916
|
+
draftUpdate?: Maybe<TownsquareProjectDraftUpdate>;
|
|
238917
|
+
errors?: Maybe<Array<MutationError>>;
|
|
238918
|
+
success: Scalars['Boolean']['output'];
|
|
238919
|
+
};
|
|
238325
238920
|
export type TownsquareProjectsCreateInput = {
|
|
238326
238921
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
238327
238922
|
containerId: Scalars['String']['input'];
|
|
@@ -238411,6 +239006,15 @@ export type TownsquareProjectsDeleteDecisionPayload = {
|
|
|
238411
239006
|
errors?: Maybe<Array<MutationError>>;
|
|
238412
239007
|
success: Scalars['Boolean']['output'];
|
|
238413
239008
|
};
|
|
239009
|
+
export type TownsquareProjectsDeleteDraftUpdateInput = {
|
|
239010
|
+
draftId: Scalars['ID']['input'];
|
|
239011
|
+
};
|
|
239012
|
+
export type TownsquareProjectsDeleteDraftUpdatePayload = {
|
|
239013
|
+
__typename?: 'TownsquareProjectsDeleteDraftUpdatePayload';
|
|
239014
|
+
deletedDraftUpdateId?: Maybe<Scalars['ID']['output']>;
|
|
239015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239016
|
+
success: Scalars['Boolean']['output'];
|
|
239017
|
+
};
|
|
238414
239018
|
export type TownsquareProjectsDeleteLatestUpdateInput = {
|
|
238415
239019
|
updateId: Scalars['ID']['input'];
|
|
238416
239020
|
};
|
|
@@ -242004,6 +242608,16 @@ export type TrelloCreateBoardBackgroundInput = {
|
|
|
242004
242608
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
242005
242609
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
242006
242610
|
};
|
|
242611
|
+
export type TrelloCreateBoardFromRecommendationInput = {
|
|
242612
|
+
recommendationId: Scalars['ID']['input'];
|
|
242613
|
+
};
|
|
242614
|
+
export type TrelloCreateBoardFromRecommendationPayload = Payload & {
|
|
242615
|
+
__typename?: 'TrelloCreateBoardFromRecommendationPayload';
|
|
242616
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
242617
|
+
errors?: Maybe<Array<MutationError>>;
|
|
242618
|
+
session?: Maybe<TrelloAgentSession>;
|
|
242619
|
+
success: Scalars['Boolean']['output'];
|
|
242620
|
+
};
|
|
242007
242621
|
export type TrelloCreateBoardInput = {
|
|
242008
242622
|
creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
|
|
242009
242623
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -243841,6 +244455,7 @@ export type TrelloMutationApi = {
|
|
|
243841
244455
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
243842
244456
|
createAutomationFromPrompt?: Maybe<TrelloCreateAutomationFromPromptPayload>;
|
|
243843
244457
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
244458
|
+
createBoardFromRecommendation?: Maybe<TrelloCreateBoardFromRecommendationPayload>;
|
|
243844
244459
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
243845
244460
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
243846
244461
|
createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
|
|
@@ -244056,6 +244671,9 @@ export type TrelloMutationApiCreateAutomationFromPromptArgs = {
|
|
|
244056
244671
|
export type TrelloMutationApiCreateBoardArgs = {
|
|
244057
244672
|
input: TrelloCreateBoardInput;
|
|
244058
244673
|
};
|
|
244674
|
+
export type TrelloMutationApiCreateBoardFromRecommendationArgs = {
|
|
244675
|
+
input: TrelloCreateBoardFromRecommendationInput;
|
|
244676
|
+
};
|
|
244059
244677
|
export type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
244060
244678
|
input: TrelloCreateBoardWithAiInput;
|
|
244061
244679
|
};
|
|
@@ -245699,6 +246317,7 @@ export type TrelloRefreshManifestInput = {
|
|
|
245699
246317
|
export type TrelloRefreshManifestPayload = Payload & {
|
|
245700
246318
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
245701
246319
|
errors?: Maybe<Array<MutationError>>;
|
|
246320
|
+
job?: Maybe<TrelloJob>;
|
|
245702
246321
|
manifest?: Maybe<TrelloCardManifest>;
|
|
245703
246322
|
success: Scalars['Boolean']['output'];
|
|
245704
246323
|
};
|
|
@@ -248856,6 +249475,10 @@ export type UnifiedUctToken = UnifiedINode & {
|
|
|
248856
249475
|
id: Scalars['ID']['output'];
|
|
248857
249476
|
token: Scalars['String']['output'];
|
|
248858
249477
|
};
|
|
249478
|
+
export type UnitsRolloutSettings = {
|
|
249479
|
+
__typename?: 'UnitsRolloutSettings';
|
|
249480
|
+
boundaryEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
249481
|
+
};
|
|
248859
249482
|
export type UnknownUser = Person & {
|
|
248860
249483
|
__typename?: 'UnknownUser';
|
|
248861
249484
|
accountId?: Maybe<Scalars['String']['output']>;
|