@forge/cli-shared 9.4.1-next.7 → 9.4.1-next.8
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 +7 -0
- package/out/graphql/graphql-types.d.ts +1242 -59
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +183 -60
- package/package.json +2 -2
|
@@ -3895,6 +3895,17 @@ export type AddDefaultExCoSpacePermissionsPayload = {
|
|
|
3895
3895
|
errors?: Maybe<Array<MutationError>>;
|
|
3896
3896
|
status: Scalars['Boolean']['output'];
|
|
3897
3897
|
};
|
|
3898
|
+
export type AddHypothesisMitigationPlanStepInput = {
|
|
3899
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
3900
|
+
name: Scalars['String']['input'];
|
|
3901
|
+
planId: Scalars['ID']['input'];
|
|
3902
|
+
};
|
|
3903
|
+
export type AddHypothesisMitigationPlanStepPayload = Payload & {
|
|
3904
|
+
__typename?: 'AddHypothesisMitigationPlanStepPayload';
|
|
3905
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3906
|
+
step?: Maybe<HypothesisMitigationPlanStep>;
|
|
3907
|
+
success: Scalars['Boolean']['output'];
|
|
3908
|
+
};
|
|
3898
3909
|
export type AddLabelsInput = {
|
|
3899
3910
|
contentId: Scalars['ID']['input'];
|
|
3900
3911
|
labels: Array<LabelInput>;
|
|
@@ -6402,6 +6413,7 @@ export type AgentStudioAgentEdge = {
|
|
|
6402
6413
|
};
|
|
6403
6414
|
export type AgentStudioAgentPermissions = {
|
|
6404
6415
|
__typename?: 'AgentStudioAgentPermissions';
|
|
6416
|
+
agentTriggers?: Maybe<AgentStudioAgentTriggerPermissions>;
|
|
6405
6417
|
canArchive: Scalars['Boolean']['output'];
|
|
6406
6418
|
canDelete: Scalars['Boolean']['output'];
|
|
6407
6419
|
canEdit: Scalars['Boolean']['output'];
|
|
@@ -6459,6 +6471,30 @@ export type AgentStudioAgentTemplateHowItWorksStep = {
|
|
|
6459
6471
|
role?: Maybe<AgentStudioAgentTemplateHowItWorksRole>;
|
|
6460
6472
|
text?: Maybe<Scalars['String']['output']>;
|
|
6461
6473
|
};
|
|
6474
|
+
export type AgentStudioAgentTrigger = {
|
|
6475
|
+
__typename?: 'AgentStudioAgentTrigger';
|
|
6476
|
+
author?: Maybe<User>;
|
|
6477
|
+
automationConfig?: Maybe<Scalars['JSON']['output']>;
|
|
6478
|
+
automationRuleId?: Maybe<Scalars['ID']['output']>;
|
|
6479
|
+
automationRuleName?: Maybe<Scalars['String']['output']>;
|
|
6480
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
6481
|
+
id: Scalars['ID']['output'];
|
|
6482
|
+
triggerType?: Maybe<Scalars['String']['output']>;
|
|
6483
|
+
};
|
|
6484
|
+
export type AgentStudioAgentTriggerConnection = {
|
|
6485
|
+
__typename?: 'AgentStudioAgentTriggerConnection';
|
|
6486
|
+
edges?: Maybe<Array<Maybe<AgentStudioAgentTriggerEdge>>>;
|
|
6487
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6488
|
+
};
|
|
6489
|
+
export type AgentStudioAgentTriggerEdge = {
|
|
6490
|
+
__typename?: 'AgentStudioAgentTriggerEdge';
|
|
6491
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
6492
|
+
node?: Maybe<AgentStudioAgentTrigger>;
|
|
6493
|
+
};
|
|
6494
|
+
export type AgentStudioAgentTriggerPermissions = {
|
|
6495
|
+
__typename?: 'AgentStudioAgentTriggerPermissions';
|
|
6496
|
+
canCreate?: Maybe<AgentStudioCanCreateAgentTrigger>;
|
|
6497
|
+
};
|
|
6462
6498
|
export declare enum AgentStudioAgentType {
|
|
6463
6499
|
Assistant = "ASSISTANT",
|
|
6464
6500
|
ServiceAgent = "SERVICE_AGENT"
|
|
@@ -6569,6 +6605,7 @@ export type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfigurati
|
|
|
6569
6605
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
6570
6606
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
6571
6607
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6608
|
+
triggers?: Maybe<AgentStudioAgentTriggerConnection>;
|
|
6572
6609
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6573
6610
|
version?: Maybe<AgentStudioAgentVersion>;
|
|
6574
6611
|
};
|
|
@@ -6590,6 +6627,10 @@ export type AgentStudioAssistantScenarioListArgs = {
|
|
|
6590
6627
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6591
6628
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6592
6629
|
};
|
|
6630
|
+
export type AgentStudioAssistantTriggersArgs = {
|
|
6631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6633
|
+
};
|
|
6593
6634
|
export type AgentStudioAssistantConversation = {
|
|
6594
6635
|
__typename?: 'AgentStudioAssistantConversation';
|
|
6595
6636
|
agentVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6811,6 +6852,11 @@ export type AgentStudioCanAddMcpServerSuccess = {
|
|
|
6811
6852
|
__typename?: 'AgentStudioCanAddMcpServerSuccess';
|
|
6812
6853
|
canAddMcpServer?: Maybe<Scalars['Boolean']['output']>;
|
|
6813
6854
|
};
|
|
6855
|
+
export type AgentStudioCanCreateAgentTrigger = {
|
|
6856
|
+
__typename?: 'AgentStudioCanCreateAgentTrigger';
|
|
6857
|
+
reason?: Maybe<AgentStudioCreateTriggerDenialReason>;
|
|
6858
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
6859
|
+
};
|
|
6814
6860
|
export type AgentStudioChannel = {
|
|
6815
6861
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
6816
6862
|
};
|
|
@@ -6981,6 +7027,11 @@ export type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
6981
7027
|
scenario?: Maybe<AgentStudioScenario>;
|
|
6982
7028
|
success: Scalars['Boolean']['output'];
|
|
6983
7029
|
};
|
|
7030
|
+
export declare enum AgentStudioCreateTriggerDenialReason {
|
|
7031
|
+
AgentActionsReadOnly = "AGENT_ACTIONS_READ_ONLY",
|
|
7032
|
+
AgentUpdatePermissionRequired = "AGENT_UPDATE_PERMISSION_REQUIRED",
|
|
7033
|
+
PermissionCheckUnavailable = "PERMISSION_CHECK_UNAVAILABLE"
|
|
7034
|
+
}
|
|
6984
7035
|
export type AgentStudioCustomValueConfigInput = {
|
|
6985
7036
|
customMeasurementLabel: Scalars['String']['input'];
|
|
6986
7037
|
customUnitLabel: Scalars['String']['input'];
|
|
@@ -7622,6 +7673,7 @@ export type AgentStudioSetWidgetByContainerAriInput = {
|
|
|
7622
7673
|
agentAri: Scalars['ID']['input'];
|
|
7623
7674
|
containerType?: InputMaybe<AgentStudioWidgetContainerType>;
|
|
7624
7675
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7676
|
+
useRovoChatDefaultAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7625
7677
|
};
|
|
7626
7678
|
export type AgentStudioSetWidgetByContainerAriPayload = Payload & {
|
|
7627
7679
|
__typename?: 'AgentStudioSetWidgetByContainerAriPayload';
|
|
@@ -8130,8 +8182,13 @@ export type AgentStudioWidget = {
|
|
|
8130
8182
|
container?: Maybe<AgentStudioWidgetContainerUnion>;
|
|
8131
8183
|
containerAri: Scalars['String']['output'];
|
|
8132
8184
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
8185
|
+
useRovoChatDefaultAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
8133
8186
|
widgetId?: Maybe<Scalars['ID']['output']>;
|
|
8134
8187
|
};
|
|
8188
|
+
export type AgentStudioWidgetAgentReference = {
|
|
8189
|
+
__typename?: 'AgentStudioWidgetAgentReference';
|
|
8190
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8191
|
+
};
|
|
8135
8192
|
export type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
|
|
8136
8193
|
export type AgentStudioWidgetContainer = JiraProject;
|
|
8137
8194
|
export declare enum AgentStudioWidgetContainerType {
|
|
@@ -8151,6 +8208,11 @@ export type AgentStudioWidgetInput = {
|
|
|
8151
8208
|
containerType: AgentStudioWidgetContainerType;
|
|
8152
8209
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8153
8210
|
};
|
|
8211
|
+
export type AgentStudioWidgetReference = {
|
|
8212
|
+
__typename?: 'AgentStudioWidgetReference';
|
|
8213
|
+
agent?: Maybe<AgentStudioWidgetAgentReference>;
|
|
8214
|
+
};
|
|
8215
|
+
export type AgentStudioWidgetReferenceByContainerAriResult = AgentStudioWidgetReference | QueryError;
|
|
8154
8216
|
export type AgentStudioWidgets = {
|
|
8155
8217
|
__typename?: 'AgentStudioWidgets';
|
|
8156
8218
|
totalCount: Scalars['Int']['output'];
|
|
@@ -8570,7 +8632,8 @@ export type AgentWorkspaceConfusionMatrix = {
|
|
|
8570
8632
|
export declare enum AgentWorkspaceConnectedTeamsScope {
|
|
8571
8633
|
AllConnected = "ALL_CONNECTED",
|
|
8572
8634
|
CanAdminister = "CAN_ADMINISTER",
|
|
8573
|
-
MemberOf = "MEMBER_OF"
|
|
8635
|
+
MemberOf = "MEMBER_OF",
|
|
8636
|
+
MemberOfOrCanAdminister = "MEMBER_OF_OR_CAN_ADMINISTER"
|
|
8574
8637
|
}
|
|
8575
8638
|
export type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
8576
8639
|
agentId: Scalars['ID']['input'];
|
|
@@ -9820,6 +9883,8 @@ export type AgentWorkspaceSubmitDraftedTeamRoutingTablePayload = {
|
|
|
9820
9883
|
};
|
|
9821
9884
|
export type AgentWorkspaceTeam = {
|
|
9822
9885
|
__typename?: 'AgentWorkspaceTeam';
|
|
9886
|
+
canAdminister: Scalars['Boolean']['output'];
|
|
9887
|
+
eligibleAgentIds: Array<Scalars['ID']['output']>;
|
|
9823
9888
|
team?: Maybe<TeamV2>;
|
|
9824
9889
|
teamARI: Scalars['ID']['output'];
|
|
9825
9890
|
teamId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -10862,6 +10927,7 @@ export declare enum ApiGroup {
|
|
|
10862
10927
|
Papi = "PAPI",
|
|
10863
10928
|
Polaris = "POLARIS",
|
|
10864
10929
|
Projects = "PROJECTS",
|
|
10930
|
+
Search = "SEARCH",
|
|
10865
10931
|
ServiceHubAgentConfiguration = "SERVICE_HUB_AGENT_CONFIGURATION",
|
|
10866
10932
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
10867
10933
|
Teams = "TEAMS",
|
|
@@ -12598,9 +12664,54 @@ export type Artifact = {
|
|
|
12598
12664
|
type: Scalars['String']['output'];
|
|
12599
12665
|
url: Scalars['URL']['output'];
|
|
12600
12666
|
};
|
|
12667
|
+
export declare enum ArtifactAccess {
|
|
12668
|
+
Open = "OPEN",
|
|
12669
|
+
Private = "PRIVATE",
|
|
12670
|
+
Shared = "SHARED"
|
|
12671
|
+
}
|
|
12672
|
+
export type ArtifactAuthorContentInput = {
|
|
12673
|
+
contextId: Scalars['ID']['input'];
|
|
12674
|
+
html: Scalars['String']['input'];
|
|
12675
|
+
libraries?: InputMaybe<Array<ArtifactBrowserLibraryInput>>;
|
|
12676
|
+
name: Scalars['String']['input'];
|
|
12677
|
+
tokenOverrides?: InputMaybe<Array<ArtifactTokenOverrideInput>>;
|
|
12678
|
+
};
|
|
12679
|
+
export type ArtifactAuthorContentPayload = Payload & {
|
|
12680
|
+
__typename?: 'ArtifactAuthorContentPayload';
|
|
12681
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12682
|
+
findings?: Maybe<Array<ArtifactLintFinding>>;
|
|
12683
|
+
html?: Maybe<Scalars['String']['output']>;
|
|
12684
|
+
success: Scalars['Boolean']['output'];
|
|
12685
|
+
};
|
|
12686
|
+
export type ArtifactAuthoringCatalog = {
|
|
12687
|
+
__typename?: 'ArtifactAuthoringCatalog';
|
|
12688
|
+
guidanceCategories: Array<ArtifactAuthoringReferenceEntry>;
|
|
12689
|
+
tokenFamilies: Array<ArtifactAuthoringReferenceEntry>;
|
|
12690
|
+
};
|
|
12691
|
+
export type ArtifactAuthoringCatalogInput = {
|
|
12692
|
+
contextId: Scalars['ID']['input'];
|
|
12693
|
+
};
|
|
12694
|
+
export type ArtifactAuthoringGuidanceInput = {
|
|
12695
|
+
category: Scalars['String']['input'];
|
|
12696
|
+
contextId: Scalars['ID']['input'];
|
|
12697
|
+
};
|
|
12698
|
+
export type ArtifactAuthoringReferenceEntry = {
|
|
12699
|
+
__typename?: 'ArtifactAuthoringReferenceEntry';
|
|
12700
|
+
id: Scalars['String']['output'];
|
|
12701
|
+
label: Scalars['String']['output'];
|
|
12702
|
+
};
|
|
12703
|
+
export type ArtifactBrowserLibraryInput = {
|
|
12704
|
+
id: Scalars['String']['input'];
|
|
12705
|
+
version: Scalars['String']['input'];
|
|
12706
|
+
};
|
|
12601
12707
|
export declare enum ArtifactChecksumType {
|
|
12602
12708
|
Sha256 = "SHA256"
|
|
12603
12709
|
}
|
|
12710
|
+
export declare enum ArtifactColorMode {
|
|
12711
|
+
All = "ALL",
|
|
12712
|
+
Dark = "DARK",
|
|
12713
|
+
Light = "LIGHT"
|
|
12714
|
+
}
|
|
12604
12715
|
export type ArtifactCreateContentInput = {
|
|
12605
12716
|
checksum: Scalars['String']['input'];
|
|
12606
12717
|
checksumType: ArtifactChecksumType;
|
|
@@ -12614,6 +12725,7 @@ export type ArtifactCreateContentPayload = Payload & {
|
|
|
12614
12725
|
upload?: Maybe<ArtifactUploadTarget>;
|
|
12615
12726
|
};
|
|
12616
12727
|
export type ArtifactCreateInput = {
|
|
12728
|
+
access?: InputMaybe<ArtifactAccess>;
|
|
12617
12729
|
contentId: Scalars['ID']['input'];
|
|
12618
12730
|
contextId: Scalars['ID']['input'];
|
|
12619
12731
|
name: Scalars['String']['input'];
|
|
@@ -12625,10 +12737,38 @@ export type ArtifactCreatePayload = Payload & {
|
|
|
12625
12737
|
errors?: Maybe<Array<MutationError>>;
|
|
12626
12738
|
success: Scalars['Boolean']['output'];
|
|
12627
12739
|
};
|
|
12740
|
+
export type ArtifactDesignToken = {
|
|
12741
|
+
__typename?: 'ArtifactDesignToken';
|
|
12742
|
+
name: Scalars['String']['output'];
|
|
12743
|
+
use: Scalars['String']['output'];
|
|
12744
|
+
values: Array<Scalars['String']['output']>;
|
|
12745
|
+
};
|
|
12746
|
+
export type ArtifactDesignTokensInput = {
|
|
12747
|
+
contextId: Scalars['ID']['input'];
|
|
12748
|
+
family: Scalars['String']['input'];
|
|
12749
|
+
};
|
|
12628
12750
|
export type ArtifactGetInput = {
|
|
12629
12751
|
contextId: Scalars['ID']['input'];
|
|
12630
12752
|
id: Scalars['ID']['input'];
|
|
12631
12753
|
};
|
|
12754
|
+
export type ArtifactLintFinding = {
|
|
12755
|
+
__typename?: 'ArtifactLintFinding';
|
|
12756
|
+
describe: Scalars['String']['output'];
|
|
12757
|
+
fix: Scalars['String']['output'];
|
|
12758
|
+
found?: Maybe<Scalars['String']['output']>;
|
|
12759
|
+
line: Scalars['Int']['output'];
|
|
12760
|
+
rule: Scalars['String']['output'];
|
|
12761
|
+
};
|
|
12762
|
+
export type ArtifactTokenOverrideInput = {
|
|
12763
|
+
colorMode?: InputMaybe<ArtifactColorMode>;
|
|
12764
|
+
name: Scalars['String']['input'];
|
|
12765
|
+
value: Scalars['String']['input'];
|
|
12766
|
+
};
|
|
12767
|
+
export type ArtifactTokenReference = {
|
|
12768
|
+
__typename?: 'ArtifactTokenReference';
|
|
12769
|
+
family: Scalars['String']['output'];
|
|
12770
|
+
tokens: Array<ArtifactDesignToken>;
|
|
12771
|
+
};
|
|
12632
12772
|
export type ArtifactUploadTarget = {
|
|
12633
12773
|
__typename?: 'ArtifactUploadTarget';
|
|
12634
12774
|
contentId: Scalars['ID']['output'];
|
|
@@ -22009,6 +22149,10 @@ export type CommerceExpAccountModification = {
|
|
|
22009
22149
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
22010
22150
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
22011
22151
|
};
|
|
22152
|
+
export type CommerceExpAccountModificationInput = {
|
|
22153
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
22154
|
+
transactionAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
22155
|
+
};
|
|
22012
22156
|
export type CommerceExpAccruedChargeBreakdown = {
|
|
22013
22157
|
__typename?: 'CommerceExpAccruedChargeBreakdown';
|
|
22014
22158
|
amount?: Maybe<Scalars['Float']['output']>;
|
|
@@ -22168,6 +22312,9 @@ export type CommerceExpApplicationReasonDto = {
|
|
|
22168
22312
|
__typename?: 'CommerceExpApplicationReasonDto';
|
|
22169
22313
|
id?: Maybe<Scalars['ID']['output']>;
|
|
22170
22314
|
};
|
|
22315
|
+
export type CommerceExpApplicationReasonInput = {
|
|
22316
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
22317
|
+
};
|
|
22171
22318
|
export type CommerceExpApplicationReasonResponse = {
|
|
22172
22319
|
__typename?: 'CommerceExpApplicationReasonResponse';
|
|
22173
22320
|
customisable?: Maybe<CommerceExpCustomisableApplicationReasonResponse>;
|
|
@@ -22183,14 +22330,31 @@ export declare enum CommerceExpApplicationReasonType {
|
|
|
22183
22330
|
Range = "RANGE",
|
|
22184
22331
|
Set = "SET"
|
|
22185
22332
|
}
|
|
22333
|
+
export type CommerceExpApprovalDeskCreateApprovalRequestInput = {
|
|
22334
|
+
businessKey: Scalars['String']['input'];
|
|
22335
|
+
comments?: InputMaybe<Scalars['String']['input']>;
|
|
22336
|
+
entityDefinition?: InputMaybe<Scalars['JSON']['input']>;
|
|
22337
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
22338
|
+
requestId?: InputMaybe<Scalars['String']['input']>;
|
|
22339
|
+
workflowDefinitionKey: Scalars['String']['input'];
|
|
22340
|
+
};
|
|
22341
|
+
export type CommerceExpApprovalDeskCreateApprovalRequestPayload = CommerceExpMutationPayload & {
|
|
22342
|
+
__typename?: 'CommerceExpApprovalDeskCreateApprovalRequestPayload';
|
|
22343
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22344
|
+
success: Scalars['Boolean']['output'];
|
|
22345
|
+
};
|
|
22186
22346
|
export declare enum CommerceExpApprovalDeskIssueType {
|
|
22187
22347
|
ApprovalRequest = "APPROVAL_REQUEST",
|
|
22188
22348
|
ApprovalTask = "APPROVAL_TASK"
|
|
22189
22349
|
}
|
|
22190
22350
|
export type CommerceExpApprovalDeskMutation = {
|
|
22191
22351
|
__typename?: 'CommerceExpApprovalDeskMutation';
|
|
22352
|
+
createApprovalRequest?: Maybe<CommerceExpApprovalDeskCreateApprovalRequestPayload>;
|
|
22192
22353
|
updateTask?: Maybe<CommerceExpApprovalDeskUpdateTaskPayload>;
|
|
22193
22354
|
};
|
|
22355
|
+
export type CommerceExpApprovalDeskMutationCreateApprovalRequestArgs = {
|
|
22356
|
+
input: CommerceExpApprovalDeskCreateApprovalRequestInput;
|
|
22357
|
+
};
|
|
22194
22358
|
export type CommerceExpApprovalDeskMutationUpdateTaskArgs = {
|
|
22195
22359
|
input: CommerceExpApprovalDeskUpdateTaskInput;
|
|
22196
22360
|
};
|
|
@@ -22236,6 +22400,7 @@ export type CommerceExpApprovalDeskTask = {
|
|
|
22236
22400
|
initiatorInitialComment?: Maybe<Scalars['String']['output']>;
|
|
22237
22401
|
issueType?: Maybe<Scalars['String']['output']>;
|
|
22238
22402
|
key?: Maybe<Scalars['String']['output']>;
|
|
22403
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
22239
22404
|
parentKey?: Maybe<Scalars['String']['output']>;
|
|
22240
22405
|
reporter?: Maybe<User>;
|
|
22241
22406
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -22299,6 +22464,10 @@ export type CommerceExpAvailableAddonToPurchase = {
|
|
|
22299
22464
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
22300
22465
|
orderDefault?: Maybe<CommerceExpCcpOrderDefault>;
|
|
22301
22466
|
};
|
|
22467
|
+
export declare enum CommerceExpBehaviourAtEndOfSubscription {
|
|
22468
|
+
AutoRenew = "AUTO_RENEW",
|
|
22469
|
+
Termed = "TERMED"
|
|
22470
|
+
}
|
|
22302
22471
|
export declare enum CommerceExpBehaviourAtEndOfTrial {
|
|
22303
22472
|
Cancel = "CANCEL",
|
|
22304
22473
|
ConvertToPaid = "CONVERT_TO_PAID",
|
|
@@ -22426,6 +22595,17 @@ export type CommerceExpBillingSchedule = {
|
|
|
22426
22595
|
total?: Maybe<Scalars['Float']['output']>;
|
|
22427
22596
|
};
|
|
22428
22597
|
export type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
22598
|
+
export type CommerceExpBundleCollectionEntitlementInput = {
|
|
22599
|
+
chargeQuantitiesForRecurringEstimate?: InputMaybe<Array<CommerceExpChargeQuantityInput>>;
|
|
22600
|
+
entitlementId: Scalars['ID']['input'];
|
|
22601
|
+
};
|
|
22602
|
+
export type CommerceExpBundleCollectionInput = {
|
|
22603
|
+
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
22604
|
+
chargeQuantities?: InputMaybe<Array<CommerceExpChargeElementDetails>>;
|
|
22605
|
+
collectionOfferingKey: Scalars['ID']['input'];
|
|
22606
|
+
entitlements: Array<CommerceExpBundleCollectionEntitlementInput>;
|
|
22607
|
+
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
22608
|
+
};
|
|
22429
22609
|
export type CommerceExpBuyCurrentTrialInput = {
|
|
22430
22610
|
entitlementId: Scalars['String']['input'];
|
|
22431
22611
|
};
|
|
@@ -22730,6 +22910,7 @@ export type CommerceExpCcpMutation = {
|
|
|
22730
22910
|
createInvoiceGroupForTxa?: Maybe<CommerceExpCreateInvoiceGroupForTxaPayload>;
|
|
22731
22911
|
createInvoiceGroupIfNeeded?: Maybe<CommerceExpCreateInvoiceGroupIfNeededPayload>;
|
|
22732
22912
|
createPaymentMethod?: Maybe<CommerceExpCreatePaymentMethodPayload>;
|
|
22913
|
+
createShipToParty?: Maybe<CommerceExpCreateShipToPartyPayload>;
|
|
22733
22914
|
createTransactionAccount?: Maybe<CommerceExpCreateTransactionAccountPayload>;
|
|
22734
22915
|
createTransactionAccountAndInvoiceGroup?: Maybe<CommerceExpCreateTransactionAccountPayload>;
|
|
22735
22916
|
createTxaAndIgIfNeededForCartPlaceOrder?: Maybe<CommerceExpCreateTxaAndIgIfNeededForCartPlaceOrderPayload>;
|
|
@@ -22738,14 +22919,20 @@ export type CommerceExpCcpMutation = {
|
|
|
22738
22919
|
mutateIfValidEntitlement?: Maybe<CommerceExpMutateIfValidEntitlement>;
|
|
22739
22920
|
orderBuilder?: Maybe<CommerceExpValidOrderResponse>;
|
|
22740
22921
|
patchQuote?: Maybe<CommerceExpPatchQuotePayload>;
|
|
22922
|
+
placeOrder?: Maybe<CommerceExpPlaceOrderPayload>;
|
|
22923
|
+
placeOrderV3?: Maybe<CommerceExpPlaceOrderV3Payload>;
|
|
22924
|
+
placeQuoteOrderV1?: Maybe<CommerceExpPlaceOrderPayload>;
|
|
22741
22925
|
quoteReEstimation?: Maybe<CommerceExpReEstimateQuoteResult>;
|
|
22742
22926
|
removeAdmin?: Maybe<CommerceExpRemoveAdminPayload>;
|
|
22743
22927
|
sampleMutation?: Maybe<CommerceExpGenericMutationPayload>;
|
|
22744
22928
|
setPaymentMethodDefault?: Maybe<CommerceExpSetDefaultPaymentMethodPayload>;
|
|
22745
22929
|
setupIntent?: Maybe<CommerceExpSetupIntentPayload>;
|
|
22930
|
+
updateBillToParty?: Maybe<CommerceExpUpdateBillToPartyPayload>;
|
|
22931
|
+
updateEntitlementDisplayName?: Maybe<CommerceExpUpdateEntitlementDisplayNamePayload>;
|
|
22746
22932
|
updateInvoiceGroup?: Maybe<CommerceExpUpdateInvoiceGroupPayload>;
|
|
22747
22933
|
updatePaymentMethodInInvoiceGroups?: Maybe<CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload>;
|
|
22748
22934
|
updatePrimaryContact?: Maybe<CommerceExpUpdatePrimaryContactPayload>;
|
|
22935
|
+
updateShipToParty?: Maybe<CommerceExpUpdateShipToPartyPayload>;
|
|
22749
22936
|
updateTransactionAccount?: Maybe<CommerceExpUpdateTransactionAccountPayload>;
|
|
22750
22937
|
};
|
|
22751
22938
|
export type CommerceExpCcpMutationActivateEntitlementsArgs = {
|
|
@@ -22775,6 +22962,10 @@ export type CommerceExpCcpMutationCreatePaymentMethodArgs = {
|
|
|
22775
22962
|
paymentMethodInput: CommerceExpCreatePaymentMethodInput;
|
|
22776
22963
|
txaId: Scalars['ID']['input'];
|
|
22777
22964
|
};
|
|
22965
|
+
export type CommerceExpCcpMutationCreateShipToPartyArgs = {
|
|
22966
|
+
input: CommerceExpCreateShipToPartyInput;
|
|
22967
|
+
txaId: Scalars['ID']['input'];
|
|
22968
|
+
};
|
|
22778
22969
|
export type CommerceExpCcpMutationCreateTransactionAccountArgs = {
|
|
22779
22970
|
input: CommerceExpCreateTransactionAccountInput;
|
|
22780
22971
|
};
|
|
@@ -22794,6 +22985,15 @@ export type CommerceExpCcpMutationOrderBuilderArgs = {
|
|
|
22794
22985
|
export type CommerceExpCcpMutationPatchQuoteArgs = {
|
|
22795
22986
|
input: CommerceExpPatchQuoteInput;
|
|
22796
22987
|
};
|
|
22988
|
+
export type CommerceExpCcpMutationPlaceOrderArgs = {
|
|
22989
|
+
input: CommerceExpPlaceOrderInput;
|
|
22990
|
+
};
|
|
22991
|
+
export type CommerceExpCcpMutationPlaceOrderV3Args = {
|
|
22992
|
+
input: CommerceExpPlaceOrderV3Input;
|
|
22993
|
+
};
|
|
22994
|
+
export type CommerceExpCcpMutationPlaceQuoteOrderV1Args = {
|
|
22995
|
+
input: CommerceExpOrderRequestWithQuotesInput;
|
|
22996
|
+
};
|
|
22797
22997
|
export type CommerceExpCcpMutationQuoteReEstimationArgs = {
|
|
22798
22998
|
id: Scalars['ID']['input'];
|
|
22799
22999
|
};
|
|
@@ -22811,6 +23011,15 @@ export type CommerceExpCcpMutationSetupIntentArgs = {
|
|
|
22811
23011
|
input: CommerceExpSetupIntentInput;
|
|
22812
23012
|
txaId: Scalars['ID']['input'];
|
|
22813
23013
|
};
|
|
23014
|
+
export type CommerceExpCcpMutationUpdateBillToPartyArgs = {
|
|
23015
|
+
input: CommerceExpUpdateBillToPartyInput;
|
|
23016
|
+
readOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23017
|
+
txaId: Scalars['ID']['input'];
|
|
23018
|
+
};
|
|
23019
|
+
export type CommerceExpCcpMutationUpdateEntitlementDisplayNameArgs = {
|
|
23020
|
+
entitlementId: Scalars['ID']['input'];
|
|
23021
|
+
input: CommerceExpUpdateEntitlementDisplayNameInput;
|
|
23022
|
+
};
|
|
22814
23023
|
export type CommerceExpCcpMutationUpdateInvoiceGroupArgs = {
|
|
22815
23024
|
input: CommerceExpInvoiceGroupInput;
|
|
22816
23025
|
invoiceGroupId: Scalars['ID']['input'];
|
|
@@ -22823,6 +23032,11 @@ export type CommerceExpCcpMutationUpdatePrimaryContactArgs = {
|
|
|
22823
23032
|
input: CommerceExpUpdatePrimaryContactInput;
|
|
22824
23033
|
txaId: Scalars['ID']['input'];
|
|
22825
23034
|
};
|
|
23035
|
+
export type CommerceExpCcpMutationUpdateShipToPartyArgs = {
|
|
23036
|
+
input: CommerceExpUpdateShipToPartyInput;
|
|
23037
|
+
shipToDetailsId: Scalars['ID']['input'];
|
|
23038
|
+
txaId: Scalars['ID']['input'];
|
|
23039
|
+
};
|
|
22826
23040
|
export type CommerceExpCcpMutationUpdateTransactionAccountArgs = {
|
|
22827
23041
|
input: CommerceExpTransactionAccountInput;
|
|
22828
23042
|
transactionAccountId: Scalars['ID']['input'];
|
|
@@ -22870,6 +23084,7 @@ export type CommerceExpCcpOrder = CommerceExpCcpOrderBase & {
|
|
|
22870
23084
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
22871
23085
|
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
22872
23086
|
key: Scalars['String']['output'];
|
|
23087
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
22873
23088
|
processingResult?: Maybe<CommerceExpOrderProcessingResult>;
|
|
22874
23089
|
slug?: Maybe<Scalars['String']['output']>;
|
|
22875
23090
|
status?: Maybe<CommerceExpOrderStatus>;
|
|
@@ -22882,6 +23097,7 @@ export type CommerceExpCcpOrderBase = {
|
|
|
22882
23097
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
22883
23098
|
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
22884
23099
|
key: Scalars['String']['output'];
|
|
23100
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
22885
23101
|
slug?: Maybe<Scalars['String']['output']>;
|
|
22886
23102
|
};
|
|
22887
23103
|
export type CommerceExpCcpOrderDefault = {
|
|
@@ -22902,6 +23118,7 @@ export type CommerceExpCcpOrderPreview = CommerceExpCcpOrderBase & {
|
|
|
22902
23118
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
22903
23119
|
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
22904
23120
|
key: Scalars['String']['output'];
|
|
23121
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
22905
23122
|
processingResult?: Maybe<CommerceExpOrderProcessingResult>;
|
|
22906
23123
|
slug?: Maybe<Scalars['String']['output']>;
|
|
22907
23124
|
status?: Maybe<CommerceExpOrderStatus>;
|
|
@@ -22981,6 +23198,7 @@ export type CommerceExpCcpPromotion = {
|
|
|
22981
23198
|
eligiblePromotionWindow?: Maybe<CommerceExpEligiblePromotionWindow>;
|
|
22982
23199
|
key: Scalars['String']['output'];
|
|
22983
23200
|
maxRedemptions?: Maybe<Scalars['Int']['output']>;
|
|
23201
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
22984
23202
|
promotionCodeType?: Maybe<CommerceExpPromotionCodeType>;
|
|
22985
23203
|
promotionInstanceId?: Maybe<Scalars['String']['output']>;
|
|
22986
23204
|
purpose?: Maybe<CommerceExpPromotionPurpose>;
|
|
@@ -23015,6 +23233,7 @@ export type CommerceExpCcpQuery = {
|
|
|
23015
23233
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
23016
23234
|
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
23017
23235
|
transactionAccountsForUser?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
23236
|
+
validOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
23018
23237
|
};
|
|
23019
23238
|
export type CommerceExpCcpQueryEntitlementArgs = {
|
|
23020
23239
|
id: Scalars['ID']['input'];
|
|
@@ -23099,6 +23318,9 @@ export type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
|
23099
23318
|
export type CommerceExpCcpQueryTransactionAccountsArgs = {
|
|
23100
23319
|
ids: Array<Scalars['ID']['input']>;
|
|
23101
23320
|
};
|
|
23321
|
+
export type CommerceExpCcpQueryValidOrderArgs = {
|
|
23322
|
+
validOrderInput: CommerceExpValidOrderInput;
|
|
23323
|
+
};
|
|
23102
23324
|
export type CommerceExpCcpQuote = {
|
|
23103
23325
|
__typename?: 'CommerceExpCcpQuote';
|
|
23104
23326
|
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
@@ -23130,6 +23352,7 @@ export type CommerceExpCcpQuote = {
|
|
|
23130
23352
|
lineItems3?: Maybe<CommerceExpQuoteLineItemConnection>;
|
|
23131
23353
|
lineItemsCount?: Maybe<Scalars['Int']['output']>;
|
|
23132
23354
|
locale?: Maybe<Scalars['String']['output']>;
|
|
23355
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
23133
23356
|
name?: Maybe<Scalars['String']['output']>;
|
|
23134
23357
|
number?: Maybe<Scalars['String']['output']>;
|
|
23135
23358
|
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
@@ -23362,6 +23585,10 @@ export type CommerceExpChargingDetails = {
|
|
|
23362
23585
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
23363
23586
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
23364
23587
|
};
|
|
23588
|
+
export type CommerceExpChargingDetailsInput = {
|
|
23589
|
+
chargeQuantities?: InputMaybe<Array<CommerceExpChargeQuantityInput>>;
|
|
23590
|
+
pricingPlanId?: InputMaybe<Scalars['String']['input']>;
|
|
23591
|
+
};
|
|
23365
23592
|
export type CommerceExpCollectionRecommendation = {
|
|
23366
23593
|
__typename?: 'CommerceExpCollectionRecommendation';
|
|
23367
23594
|
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
@@ -23407,6 +23634,15 @@ export type CommerceExpComputedDetails = {
|
|
|
23407
23634
|
removedPromotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
23408
23635
|
usageOptions?: Maybe<CommerceExpOptedUsageOption>;
|
|
23409
23636
|
};
|
|
23637
|
+
export type CommerceExpConcessionDefinitionInput = {
|
|
23638
|
+
concessionId?: InputMaybe<Scalars['String']['input']>;
|
|
23639
|
+
customisedValues?: InputMaybe<CommerceExpCustomPromotionValueInput>;
|
|
23640
|
+
promotionCode?: InputMaybe<Scalars['String']['input']>;
|
|
23641
|
+
};
|
|
23642
|
+
export type CommerceExpConcessionInput = {
|
|
23643
|
+
concessionDefinition?: InputMaybe<CommerceExpConcessionDefinitionInput>;
|
|
23644
|
+
concessionInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
23645
|
+
};
|
|
23410
23646
|
export type CommerceExpConfirmPaymentIntent = {
|
|
23411
23647
|
__typename?: 'CommerceExpConfirmPaymentIntent';
|
|
23412
23648
|
ccpInvoiceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -23639,6 +23875,7 @@ export type CommerceExpContractTaxId = {
|
|
|
23639
23875
|
__typename?: 'CommerceExpContractTaxId';
|
|
23640
23876
|
id?: Maybe<Scalars['String']['output']>;
|
|
23641
23877
|
label?: Maybe<Scalars['String']['output']>;
|
|
23878
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
23642
23879
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
23643
23880
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
23644
23881
|
};
|
|
@@ -23741,6 +23978,12 @@ export type CommerceExpCreatePaymentMethodPayload = CommerceExpMutationPayload &
|
|
|
23741
23978
|
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
23742
23979
|
success: Scalars['Boolean']['output'];
|
|
23743
23980
|
};
|
|
23981
|
+
export type CommerceExpCreateShipToPartyInput = {
|
|
23982
|
+
name: Scalars['String']['input'];
|
|
23983
|
+
postalAddress: CommerceExpPostalAddressInput;
|
|
23984
|
+
taxId?: InputMaybe<Scalars['String']['input']>;
|
|
23985
|
+
taxIds?: InputMaybe<Array<InputMaybe<CommerceExpTaxIdInput>>>;
|
|
23986
|
+
};
|
|
23744
23987
|
export type CommerceExpCreateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
23745
23988
|
__typename?: 'CommerceExpCreateShipToPartyPayload';
|
|
23746
23989
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23782,11 +24025,19 @@ export declare enum CommerceExpCurrency {
|
|
|
23782
24025
|
Jpy = "JPY",
|
|
23783
24026
|
Usd = "USD"
|
|
23784
24027
|
}
|
|
24028
|
+
export declare enum CommerceExpCurrencyForFinancePolicyCheck {
|
|
24029
|
+
Jpy = "JPY",
|
|
24030
|
+
Usd = "USD"
|
|
24031
|
+
}
|
|
23785
24032
|
export type CommerceExpCustomPromotionValueDto = {
|
|
23786
24033
|
__typename?: 'CommerceExpCustomPromotionValueDto';
|
|
23787
24034
|
applicationReason?: Maybe<CommerceExpApplicationReasonDto>;
|
|
23788
24035
|
benefits?: Maybe<Array<Maybe<CommerceExpPromotionBenefitDto>>>;
|
|
23789
24036
|
};
|
|
24037
|
+
export type CommerceExpCustomPromotionValueInput = {
|
|
24038
|
+
applicationReason?: InputMaybe<CommerceExpApplicationReasonInput>;
|
|
24039
|
+
benefits?: InputMaybe<Array<InputMaybe<CommerceExpPromotionBenefitInput>>>;
|
|
24040
|
+
};
|
|
23790
24041
|
export declare enum CommerceExpCustomerType {
|
|
23791
24042
|
Direct = "DIRECT",
|
|
23792
24043
|
Partner = "PARTNER"
|
|
@@ -23907,6 +24158,10 @@ export type CommerceExpEffectiveTime = {
|
|
|
23907
24158
|
endsAt?: Maybe<CommerceExpEndsAt>;
|
|
23908
24159
|
startsAt?: Maybe<CommerceExpStartsAt>;
|
|
23909
24160
|
};
|
|
24161
|
+
export type CommerceExpEffectiveTimeInput = {
|
|
24162
|
+
endsAt?: InputMaybe<CommerceExpEndsAtInput>;
|
|
24163
|
+
startsAt?: InputMaybe<CommerceExpStartsAtInput>;
|
|
24164
|
+
};
|
|
23910
24165
|
export type CommerceExpEligibilityRule = {
|
|
23911
24166
|
__typename?: 'CommerceExpEligibilityRule';
|
|
23912
24167
|
pricingType?: Maybe<Array<Maybe<CommerceExpPricingType>>>;
|
|
@@ -23942,6 +24197,11 @@ export type CommerceExpEligiblePromotionWindow = {
|
|
|
23942
24197
|
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
23943
24198
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
23944
24199
|
};
|
|
24200
|
+
export type CommerceExpEmitStreamhubEventPayload = CommerceExpMutationPayload & {
|
|
24201
|
+
__typename?: 'CommerceExpEmitStreamhubEventPayload';
|
|
24202
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24203
|
+
success: Scalars['Boolean']['output'];
|
|
24204
|
+
};
|
|
23945
24205
|
export type CommerceExpEmptyBillToParty = {
|
|
23946
24206
|
__typename?: 'CommerceExpEmptyBillToParty';
|
|
23947
24207
|
identifier: Scalars['String']['output'];
|
|
@@ -23953,6 +24213,15 @@ export type CommerceExpEndsAt = {
|
|
|
23953
24213
|
__typename?: 'CommerceExpEndsAt';
|
|
23954
24214
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
23955
24215
|
};
|
|
24216
|
+
export type CommerceExpEndsAtInput = {
|
|
24217
|
+
billingFrequencyCount?: InputMaybe<Scalars['Float']['input']>;
|
|
24218
|
+
endTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
24219
|
+
type?: InputMaybe<CommerceExpEndsAtType>;
|
|
24220
|
+
};
|
|
24221
|
+
export declare enum CommerceExpEndsAtType {
|
|
24222
|
+
Duration = "DURATION",
|
|
24223
|
+
Timestamp = "TIMESTAMP"
|
|
24224
|
+
}
|
|
23956
24225
|
export type CommerceExpEnterpriseGatekeeper = {
|
|
23957
24226
|
__typename?: 'CommerceExpEnterpriseGatekeeper';
|
|
23958
24227
|
forecasting?: Maybe<CommerceExpForecastingOutput>;
|
|
@@ -24121,6 +24390,7 @@ export type CommerceExpEntitlementTransitionForBac = {
|
|
|
24121
24390
|
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
24122
24391
|
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
24123
24392
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
24393
|
+
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
24124
24394
|
transitionResult?: Maybe<CommerceExpEntitlementTransitionResultForBac>;
|
|
24125
24395
|
};
|
|
24126
24396
|
export declare enum CommerceExpEntitlementTransitionResultForBac {
|
|
@@ -24194,6 +24464,42 @@ export type CommerceExpExpectedBillsLineItem = {
|
|
|
24194
24464
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
24195
24465
|
total?: Maybe<Scalars['Float']['output']>;
|
|
24196
24466
|
};
|
|
24467
|
+
export type CommerceExpFinancePolicyCheck = {
|
|
24468
|
+
__typename?: 'CommerceExpFinancePolicyCheck';
|
|
24469
|
+
availableCreditLimit?: Maybe<Scalars['Float']['output']>;
|
|
24470
|
+
creditDemanded?: Maybe<Scalars['Float']['output']>;
|
|
24471
|
+
currency?: Maybe<CommerceExpCurrencyForFinancePolicyCheck>;
|
|
24472
|
+
originalAvailableCreditLimit?: Maybe<Scalars['Float']['output']>;
|
|
24473
|
+
paymentMethodId?: Maybe<Scalars['String']['output']>;
|
|
24474
|
+
pendingInvoiceTotal?: Maybe<Scalars['Float']['output']>;
|
|
24475
|
+
status?: Maybe<CommerceExpFinancePolicyStatus>;
|
|
24476
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
24477
|
+
};
|
|
24478
|
+
export type CommerceExpFinancePolicyCheckInput = {
|
|
24479
|
+
order: CommerceExpOrderRequestInput;
|
|
24480
|
+
txaId: Scalars['String']['input'];
|
|
24481
|
+
};
|
|
24482
|
+
export type CommerceExpFinancePolicyCheckResult = {
|
|
24483
|
+
__typename?: 'CommerceExpFinancePolicyCheckResult';
|
|
24484
|
+
invoiceGroupWithDeferredPaymentMethod?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
24485
|
+
isSuccess?: Maybe<Scalars['Boolean']['output']>;
|
|
24486
|
+
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
24487
|
+
policyServiceError?: Maybe<CommerceExpPolicyServiceError>;
|
|
24488
|
+
successPayload?: Maybe<CommerceExpFinancePolicyCheckSuccess>;
|
|
24489
|
+
};
|
|
24490
|
+
export type CommerceExpFinancePolicyCheckSuccess = {
|
|
24491
|
+
__typename?: 'CommerceExpFinancePolicyCheckSuccess';
|
|
24492
|
+
financePolicyCheckResult?: Maybe<CommerceExpFinancePolicyCheck>;
|
|
24493
|
+
order?: Maybe<CommerceExpOrderRequest>;
|
|
24494
|
+
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
24495
|
+
};
|
|
24496
|
+
export declare enum CommerceExpFinancePolicyStatus {
|
|
24497
|
+
AssignmentInitiated = "ASSIGNMENT_INITIATED",
|
|
24498
|
+
BadRequest = "BAD_REQUEST",
|
|
24499
|
+
Eligible = "ELIGIBLE",
|
|
24500
|
+
Ineligible = "INELIGIBLE",
|
|
24501
|
+
UnknownError = "UNKNOWN_ERROR"
|
|
24502
|
+
}
|
|
24197
24503
|
export type CommerceExpForecastBillEstimateResult = {
|
|
24198
24504
|
__typename?: 'CommerceExpForecastBillEstimateResult';
|
|
24199
24505
|
created?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24348,6 +24654,7 @@ export type CommerceExpInvoiceItem = {
|
|
|
24348
24654
|
id?: Maybe<Scalars['String']['output']>;
|
|
24349
24655
|
invoiceRequest?: Maybe<Scalars['String']['output']>;
|
|
24350
24656
|
margins?: Maybe<Array<Maybe<CommerceExpInvoiceItemMargin>>>;
|
|
24657
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
24351
24658
|
offeringKey?: Maybe<Scalars['String']['output']>;
|
|
24352
24659
|
orderId?: Maybe<Scalars['String']['output']>;
|
|
24353
24660
|
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
@@ -24431,11 +24738,13 @@ export type CommerceExpInvoiceRequestItem = {
|
|
|
24431
24738
|
offeringKey?: Maybe<Scalars['String']['output']>;
|
|
24432
24739
|
orderId?: Maybe<Scalars['String']['output']>;
|
|
24433
24740
|
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
24741
|
+
originalExternalItemReferral?: Maybe<Scalars['JSON']['output']>;
|
|
24434
24742
|
originalItemReferral?: Maybe<CommerceExpOriginalItemReferral>;
|
|
24435
24743
|
period?: Maybe<CommerceExpPeriod>;
|
|
24436
24744
|
planObj?: Maybe<CommerceExpPlan>;
|
|
24437
24745
|
proration?: Maybe<Scalars['Boolean']['output']>;
|
|
24438
24746
|
quantity?: Maybe<Scalars['Int']['output']>;
|
|
24747
|
+
relationship?: Maybe<Scalars['JSON']['output']>;
|
|
24439
24748
|
subscriptionObj?: Maybe<CommerceExpInvoiceItemSubscription>;
|
|
24440
24749
|
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
24441
24750
|
total?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24736,18 +25045,38 @@ export type CommerceExpOptedUsageOption = {
|
|
|
24736
25045
|
billingBehaviour?: Maybe<CommerceExpBillingBehaviour>;
|
|
24737
25046
|
chargingDetails?: Maybe<CommerceExpChargingDetails>;
|
|
24738
25047
|
effectiveTime?: Maybe<CommerceExpEffectiveTime>;
|
|
25048
|
+
purchaseMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
24739
25049
|
trial?: Maybe<CommerceExpTrialIntent>;
|
|
24740
25050
|
};
|
|
25051
|
+
export type CommerceExpOptedUsageOptionInput = {
|
|
25052
|
+
chargingDetails?: InputMaybe<CommerceExpChargingDetailsInput>;
|
|
25053
|
+
effectiveTime?: InputMaybe<CommerceExpEffectiveTimeInput>;
|
|
25054
|
+
purchaseMetadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
25055
|
+
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
25056
|
+
};
|
|
24741
25057
|
export type CommerceExpOrRuleCondition = {
|
|
24742
25058
|
__typename?: 'CommerceExpOrRuleCondition';
|
|
24743
25059
|
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
24744
25060
|
};
|
|
25061
|
+
export type CommerceExpOrderAcceptanceResponse = {
|
|
25062
|
+
__typename?: 'CommerceExpOrderAcceptanceResponse';
|
|
25063
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
25064
|
+
statusUrl?: Maybe<Scalars['String']['output']>;
|
|
25065
|
+
};
|
|
24745
25066
|
export type CommerceExpOrderAccountModificationItem = {
|
|
24746
25067
|
__typename?: 'CommerceExpOrderAccountModificationItem';
|
|
24747
25068
|
accountModification?: Maybe<CommerceExpAccountModification>;
|
|
24748
25069
|
itemId: Scalars['String']['output'];
|
|
24749
25070
|
type: CommerceExpOrderType;
|
|
24750
25071
|
};
|
|
25072
|
+
export type CommerceExpOrderAccountModificationItemInput = {
|
|
25073
|
+
accountModification: CommerceExpAccountModificationInput;
|
|
25074
|
+
entitlement: CommerceExpOrderEntitlementInput;
|
|
25075
|
+
isImmediate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25076
|
+
itemId: Scalars['String']['input'];
|
|
25077
|
+
optedUsageOptions?: InputMaybe<CommerceExpOptedUsageOptionInput>;
|
|
25078
|
+
type: CommerceExpOrderType;
|
|
25079
|
+
};
|
|
24751
25080
|
export type CommerceExpOrderAmendmentItem = {
|
|
24752
25081
|
__typename?: 'CommerceExpOrderAmendmentItem';
|
|
24753
25082
|
entitlement: CommerceExpOrderEntitlementRef;
|
|
@@ -24759,6 +25088,17 @@ export type CommerceExpOrderAmendmentItem = {
|
|
|
24759
25088
|
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
24760
25089
|
type: CommerceExpOrderType;
|
|
24761
25090
|
};
|
|
25091
|
+
export type CommerceExpOrderAmendmentItemInput = {
|
|
25092
|
+
entitlement: CommerceExpOrderEntitlementInput;
|
|
25093
|
+
isImmediate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25094
|
+
itemId: Scalars['String']['input'];
|
|
25095
|
+
nextBillingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
25096
|
+
offeringId: Scalars['ID']['input'];
|
|
25097
|
+
optedUsageOptions?: InputMaybe<CommerceExpOptedUsageOptionInput>;
|
|
25098
|
+
prorationBehaviour?: InputMaybe<CommerceExpOrderProrationBehaviourType>;
|
|
25099
|
+
reasonCode?: InputMaybe<CommerceExpOrderReasonCodeType>;
|
|
25100
|
+
type: CommerceExpOrderType;
|
|
25101
|
+
};
|
|
24762
25102
|
export type CommerceExpOrderBillEstimate = {
|
|
24763
25103
|
__typename?: 'CommerceExpOrderBillEstimate';
|
|
24764
25104
|
created?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24780,6 +25120,7 @@ export type CommerceExpOrderBillEstimateItem = {
|
|
|
24780
25120
|
billPeriod?: Maybe<CommerceExpBillEstimatePeriod>;
|
|
24781
25121
|
chargeQuantity?: Maybe<CommerceExpBillEstimateChargeQuantity>;
|
|
24782
25122
|
isArrears?: Maybe<Scalars['Boolean']['output']>;
|
|
25123
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
24783
25124
|
offeringId?: Maybe<Scalars['String']['output']>;
|
|
24784
25125
|
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
24785
25126
|
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24791,6 +25132,7 @@ export type CommerceExpOrderBillEstimateItem = {
|
|
|
24791
25132
|
};
|
|
24792
25133
|
export type CommerceExpOrderBuilderInput = {
|
|
24793
25134
|
addonPurchaseOrderInput?: InputMaybe<CommerceExpAddonPurchaseOrderInput>;
|
|
25135
|
+
bundleCollectionInput?: InputMaybe<CommerceExpBundleCollectionInput>;
|
|
24794
25136
|
buyCurrentTrialInput?: InputMaybe<CommerceExpBuyCurrentTrialInput>;
|
|
24795
25137
|
changeIntentEntitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
24796
25138
|
createEntitlementCartDirectBuyInput?: InputMaybe<CommerceExpCreateEntitlementCartDirectBuyInput>;
|
|
@@ -24810,6 +25152,7 @@ export type CommerceExpOrderBuilderInput = {
|
|
|
24810
25152
|
};
|
|
24811
25153
|
export declare enum CommerceExpOrderBuilderType {
|
|
24812
25154
|
AddOnsPurchase = "ADD_ONS_PURCHASE",
|
|
25155
|
+
BundleCollection = "BUNDLE_COLLECTION",
|
|
24813
25156
|
BuyCurrentTrial = "BUY_CURRENT_TRIAL",
|
|
24814
25157
|
CreateEntitlement = "CREATE_ENTITLEMENT",
|
|
24815
25158
|
CreateEntitlementCartDirectBuy = "CREATE_ENTITLEMENT_CART_DIRECT_BUY",
|
|
@@ -24823,6 +25166,16 @@ export declare enum CommerceExpOrderBuilderType {
|
|
|
24823
25166
|
UnbundleCollection = "UNBUNDLE_COLLECTION",
|
|
24824
25167
|
UndoScheduledDeactivation = "UNDO_SCHEDULED_DEACTIVATION"
|
|
24825
25168
|
}
|
|
25169
|
+
export type CommerceExpOrderCancellationItemInput = {
|
|
25170
|
+
entitlement: CommerceExpOrderEntitlementInput;
|
|
25171
|
+
isImmediate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25172
|
+
itemId: Scalars['String']['input'];
|
|
25173
|
+
nextBillingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
25174
|
+
optedUsageOptions?: InputMaybe<CommerceExpOptedUsageOptionInput>;
|
|
25175
|
+
prorationBehaviour?: InputMaybe<CommerceExpOrderProrationBehaviourType>;
|
|
25176
|
+
reasonCode?: InputMaybe<CommerceExpOrderReasonCodeType>;
|
|
25177
|
+
type: CommerceExpOrderType;
|
|
25178
|
+
};
|
|
24826
25179
|
export type CommerceExpOrderCreationItem = {
|
|
24827
25180
|
__typename?: 'CommerceExpOrderCreationItem';
|
|
24828
25181
|
billingAnchorTime?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24858,6 +25211,10 @@ export type CommerceExpOrderDefaultPricingPlan = {
|
|
|
24858
25211
|
constrained?: Maybe<Scalars['Boolean']['output']>;
|
|
24859
25212
|
value?: Maybe<CommerceExpCcpPricingPlan>;
|
|
24860
25213
|
};
|
|
25214
|
+
export type CommerceExpOrderEntitlementInput = {
|
|
25215
|
+
id: Scalars['String']['input'];
|
|
25216
|
+
version: Scalars['String']['input'];
|
|
25217
|
+
};
|
|
24861
25218
|
export type CommerceExpOrderEntitlementRef = {
|
|
24862
25219
|
__typename?: 'CommerceExpOrderEntitlementRef';
|
|
24863
25220
|
currentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
@@ -24897,6 +25254,21 @@ export type CommerceExpOrderItem = {
|
|
|
24897
25254
|
trialEndTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
24898
25255
|
type?: Maybe<CommerceExpOrderType>;
|
|
24899
25256
|
};
|
|
25257
|
+
export type CommerceExpOrderItemInput = {
|
|
25258
|
+
accountModification?: InputMaybe<CommerceExpAccountModificationInput>;
|
|
25259
|
+
concessions?: InputMaybe<Array<CommerceExpConcessionInput>>;
|
|
25260
|
+
entitlement?: InputMaybe<CommerceExpOrderEntitlementInput>;
|
|
25261
|
+
isImmediate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25262
|
+
itemId: Scalars['String']['input'];
|
|
25263
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
25264
|
+
nextBillingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
25265
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
25266
|
+
optedUsageOptions?: InputMaybe<CommerceExpOptedUsageOptionInput>;
|
|
25267
|
+
orderId?: InputMaybe<Scalars['String']['input']>;
|
|
25268
|
+
promotions?: InputMaybe<Array<CommerceExpPromotionInput>>;
|
|
25269
|
+
relatesFromEntitlements?: InputMaybe<Array<InputMaybe<CommerceExpRelatesFromEntitlementDetailsInput>>>;
|
|
25270
|
+
type: CommerceExpOrderType;
|
|
25271
|
+
};
|
|
24900
25272
|
export type CommerceExpOrderItemRelatesFromDetails = {
|
|
24901
25273
|
__typename?: 'CommerceExpOrderItemRelatesFromDetails';
|
|
24902
25274
|
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
@@ -24928,16 +25300,46 @@ export type CommerceExpOrderProcessingResult = {
|
|
|
24928
25300
|
items?: Maybe<Array<Maybe<CommerceExpOrderProcessingItems>>>;
|
|
24929
25301
|
slug?: Maybe<Scalars['String']['output']>;
|
|
24930
25302
|
};
|
|
25303
|
+
export declare enum CommerceExpOrderProrationBehaviourType {
|
|
25304
|
+
AlwaysInvoice = "ALWAYS_INVOICE",
|
|
25305
|
+
None = "NONE"
|
|
25306
|
+
}
|
|
25307
|
+
export declare enum CommerceExpOrderReasonCodeType {
|
|
25308
|
+
BreachOfContract = "BREACH_OF_CONTRACT",
|
|
25309
|
+
Fraud = "FRAUD",
|
|
25310
|
+
OfferingArchived = "OFFERING_ARCHIVED",
|
|
25311
|
+
ProductCancellation = "PRODUCT_CANCELLATION",
|
|
25312
|
+
SuspendedInactivity = "SUSPENDED_INACTIVITY",
|
|
25313
|
+
SystemInitiated = "SYSTEM_INITIATED",
|
|
25314
|
+
Uncollectible = "UNCOLLECTIBLE"
|
|
25315
|
+
}
|
|
24931
25316
|
export type CommerceExpOrderRequest = {
|
|
24932
25317
|
__typename?: 'CommerceExpOrderRequest';
|
|
24933
25318
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
24934
25319
|
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
24935
25320
|
items?: Maybe<Array<CommerceExpOrderRequestItem>>;
|
|
25321
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
24936
25322
|
orderId: Scalars['String']['output'];
|
|
24937
25323
|
orderIntentId?: Maybe<Scalars['String']['output']>;
|
|
24938
25324
|
source?: Maybe<CommerceExpOrderSource>;
|
|
24939
25325
|
};
|
|
25326
|
+
export type CommerceExpOrderRequestInput = {
|
|
25327
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
25328
|
+
items: Array<CommerceExpOrderItemInput>;
|
|
25329
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
25330
|
+
orderId: Scalars['String']['input'];
|
|
25331
|
+
orderIntentId?: InputMaybe<Scalars['String']['input']>;
|
|
25332
|
+
source?: InputMaybe<CommerceExpOrderSource>;
|
|
25333
|
+
transactionAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
25334
|
+
};
|
|
24940
25335
|
export type CommerceExpOrderRequestItem = CommerceExpOrderAccountModificationItem | CommerceExpOrderAmendmentItem | CommerceExpOrderCreationItem;
|
|
25336
|
+
export type CommerceExpOrderRequestWithQuotesInput = {
|
|
25337
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
25338
|
+
orderId: Scalars['String']['input'];
|
|
25339
|
+
quote: CommerceExpQuoteInput;
|
|
25340
|
+
source: CommerceExpOrderSource;
|
|
25341
|
+
transactionAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
25342
|
+
};
|
|
24941
25343
|
export declare enum CommerceExpOrderSource {
|
|
24942
25344
|
OrderIntent = "ORDER_INTENT",
|
|
24943
25345
|
OrderItems = "ORDER_ITEMS",
|
|
@@ -25132,12 +25534,39 @@ export type CommerceExpPhase = {
|
|
|
25132
25534
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
25133
25535
|
trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
|
|
25134
25536
|
};
|
|
25537
|
+
export type CommerceExpPlaceOrderInput = {
|
|
25538
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
25539
|
+
items: Array<CommerceExpPlaceOrderItemInput>;
|
|
25540
|
+
orderId: Scalars['ID']['input'];
|
|
25541
|
+
orderIntentId?: InputMaybe<Scalars['String']['input']>;
|
|
25542
|
+
source: CommerceExpOrderSource;
|
|
25543
|
+
transactionAccountId: Scalars['String']['input'];
|
|
25544
|
+
};
|
|
25545
|
+
export type CommerceExpPlaceOrderItemInput = {
|
|
25546
|
+
accountModification?: InputMaybe<CommerceExpOrderAccountModificationItemInput>;
|
|
25547
|
+
cancellation?: InputMaybe<CommerceExpOrderCancellationItemInput>;
|
|
25548
|
+
orderAmendment?: InputMaybe<CommerceExpOrderAmendmentItemInput>;
|
|
25549
|
+
};
|
|
25135
25550
|
export type CommerceExpPlaceOrderPayload = CommerceExpMutationPayload & {
|
|
25136
25551
|
__typename?: 'CommerceExpPlaceOrderPayload';
|
|
25137
25552
|
errors?: Maybe<Array<MutationError>>;
|
|
25138
25553
|
order?: Maybe<CommerceExpCcpOrder>;
|
|
25139
25554
|
success: Scalars['Boolean']['output'];
|
|
25140
25555
|
};
|
|
25556
|
+
export type CommerceExpPlaceOrderRequestInput = {
|
|
25557
|
+
orderRequestInput?: InputMaybe<CommerceExpOrderRequestInput>;
|
|
25558
|
+
orderRequestWithQuotes?: InputMaybe<CommerceExpOrderRequestWithQuotesInput>;
|
|
25559
|
+
};
|
|
25560
|
+
export type CommerceExpPlaceOrderV3Input = {
|
|
25561
|
+
orderInput: CommerceExpPlaceOrderRequestInput;
|
|
25562
|
+
transactionAccountId: Scalars['String']['input'];
|
|
25563
|
+
};
|
|
25564
|
+
export type CommerceExpPlaceOrderV3Payload = CommerceExpMutationPayload & {
|
|
25565
|
+
__typename?: 'CommerceExpPlaceOrderV3Payload';
|
|
25566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25567
|
+
orderAcceptanceResponse?: Maybe<CommerceExpOrderAcceptanceResponse>;
|
|
25568
|
+
success: Scalars['Boolean']['output'];
|
|
25569
|
+
};
|
|
25141
25570
|
export type CommerceExpPlan = {
|
|
25142
25571
|
__typename?: 'CommerceExpPlan';
|
|
25143
25572
|
cycle?: Maybe<CommerceExpCycle>;
|
|
@@ -25190,6 +25619,22 @@ export type CommerceExpPoaSiteEntitlementConnection = {
|
|
|
25190
25619
|
edges?: Maybe<Array<Maybe<CommerceExpCcpEntitlementEdge>>>;
|
|
25191
25620
|
pageInfo: PageInfo;
|
|
25192
25621
|
};
|
|
25622
|
+
export type CommerceExpPoeQuery = {
|
|
25623
|
+
__typename?: 'CommerceExpPoeQuery';
|
|
25624
|
+
financePolicyCheck?: Maybe<CommerceExpFinancePolicyCheckResult>;
|
|
25625
|
+
};
|
|
25626
|
+
export type CommerceExpPoeQueryFinancePolicyCheckArgs = {
|
|
25627
|
+
input: CommerceExpFinancePolicyCheckInput;
|
|
25628
|
+
};
|
|
25629
|
+
export type CommerceExpPolicyServiceError = {
|
|
25630
|
+
__typename?: 'CommerceExpPolicyServiceError';
|
|
25631
|
+
availableCreditLimit?: Maybe<Scalars['Float']['output']>;
|
|
25632
|
+
creditDetails?: Maybe<CommerceExpCreditDetails>;
|
|
25633
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
25634
|
+
reasonDescription?: Maybe<Scalars['String']['output']>;
|
|
25635
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
25636
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
25637
|
+
};
|
|
25193
25638
|
export declare enum CommerceExpPostTransitionSubscriptionState {
|
|
25194
25639
|
Cancel = "Cancel",
|
|
25195
25640
|
Continue = "Continue"
|
|
@@ -25204,6 +25649,15 @@ export type CommerceExpPostalAddress = {
|
|
|
25204
25649
|
postcode?: Maybe<Scalars['String']['output']>;
|
|
25205
25650
|
state?: Maybe<Scalars['String']['output']>;
|
|
25206
25651
|
};
|
|
25652
|
+
export type CommerceExpPostalAddressInput = {
|
|
25653
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
25654
|
+
country: Scalars['String']['input'];
|
|
25655
|
+
line1?: InputMaybe<Scalars['String']['input']>;
|
|
25656
|
+
line2?: InputMaybe<Scalars['String']['input']>;
|
|
25657
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
25658
|
+
postcode?: InputMaybe<Scalars['String']['input']>;
|
|
25659
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
25660
|
+
};
|
|
25207
25661
|
export type CommerceExpPreDunningAttempt = {
|
|
25208
25662
|
__typename?: 'CommerceExpPreDunningAttempt';
|
|
25209
25663
|
attemptCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -25348,6 +25802,11 @@ export declare enum CommerceExpPromotionBenefitDtoDuration {
|
|
|
25348
25802
|
Repeating = "REPEATING",
|
|
25349
25803
|
Variable = "VARIABLE"
|
|
25350
25804
|
}
|
|
25805
|
+
export type CommerceExpPromotionBenefitInput = {
|
|
25806
|
+
duration?: InputMaybe<CommerceExpPromotionBenefitDtoDuration>;
|
|
25807
|
+
iterations?: InputMaybe<Scalars['Int']['input']>;
|
|
25808
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
25809
|
+
};
|
|
25351
25810
|
export declare enum CommerceExpPromotionCodeType {
|
|
25352
25811
|
None = "NONE",
|
|
25353
25812
|
Shared = "SHARED",
|
|
@@ -25358,9 +25817,18 @@ export type CommerceExpPromotionDefinition = {
|
|
|
25358
25817
|
customisedValues?: Maybe<CommerceExpCustomisedValues>;
|
|
25359
25818
|
promotionId?: Maybe<Scalars['String']['output']>;
|
|
25360
25819
|
};
|
|
25820
|
+
export type CommerceExpPromotionDefinitionInput = {
|
|
25821
|
+
customisedValues?: InputMaybe<CommerceExpCustomPromotionValueInput>;
|
|
25822
|
+
promotionCode?: InputMaybe<Scalars['String']['input']>;
|
|
25823
|
+
promotionId?: InputMaybe<Scalars['String']['input']>;
|
|
25824
|
+
};
|
|
25361
25825
|
export type CommerceExpPromotionFilter = {
|
|
25362
25826
|
type?: InputMaybe<CommerceExpPromotionType>;
|
|
25363
25827
|
};
|
|
25828
|
+
export type CommerceExpPromotionInput = {
|
|
25829
|
+
promotionDefinition?: InputMaybe<CommerceExpPromotionDefinitionInput>;
|
|
25830
|
+
promotionInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
25831
|
+
};
|
|
25364
25832
|
export type CommerceExpPromotionInstance = {
|
|
25365
25833
|
__typename?: 'CommerceExpPromotionInstance';
|
|
25366
25834
|
promotionDefinition?: Maybe<CommerceExpPromotionDefinition>;
|
|
@@ -25434,6 +25902,10 @@ export type CommerceExpQuoteEdge = {
|
|
|
25434
25902
|
export type CommerceExpQuoteFilter = {
|
|
25435
25903
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
25436
25904
|
};
|
|
25905
|
+
export type CommerceExpQuoteInput = {
|
|
25906
|
+
id: Scalars['String']['input'];
|
|
25907
|
+
version: Scalars['Int']['input'];
|
|
25908
|
+
};
|
|
25437
25909
|
export type CommerceExpQuoteLineItemBillingSchedule = {
|
|
25438
25910
|
__typename?: 'CommerceExpQuoteLineItemBillingSchedule';
|
|
25439
25911
|
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -25570,6 +26042,13 @@ export type CommerceExpRelatesFromEntitlementDetails = {
|
|
|
25570
26042
|
referenceType?: Maybe<CommerceExpRelatesFromEntitlementReferenceType>;
|
|
25571
26043
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
25572
26044
|
};
|
|
26045
|
+
export type CommerceExpRelatesFromEntitlementDetailsInput = {
|
|
26046
|
+
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
26047
|
+
itemId?: InputMaybe<Scalars['String']['input']>;
|
|
26048
|
+
lineItemId?: InputMaybe<Scalars['String']['input']>;
|
|
26049
|
+
referenceType?: InputMaybe<CommerceExpRelatesFromEntitlementReferenceType>;
|
|
26050
|
+
relationshipType?: InputMaybe<Scalars['String']['input']>;
|
|
26051
|
+
};
|
|
25573
26052
|
export declare enum CommerceExpRelatesFromEntitlementReferenceType {
|
|
25574
26053
|
Entitlement = "ENTITLEMENT",
|
|
25575
26054
|
LineItem = "LINE_ITEM",
|
|
@@ -25708,11 +26187,30 @@ export type CommerceExpStartsAt = {
|
|
|
25708
26187
|
__typename?: 'CommerceExpStartsAt';
|
|
25709
26188
|
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
25710
26189
|
};
|
|
26190
|
+
export type CommerceExpStartsAtInput = {
|
|
26191
|
+
timestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
26192
|
+
type?: InputMaybe<CommerceExpStartsAtType>;
|
|
26193
|
+
};
|
|
26194
|
+
export declare enum CommerceExpStartsAtType {
|
|
26195
|
+
Timestamp = "TIMESTAMP"
|
|
26196
|
+
}
|
|
25711
26197
|
export declare enum CommerceExpStatusIssueSeverity {
|
|
25712
26198
|
Error = "ERROR",
|
|
25713
26199
|
Uninvoiceable = "UNINVOICEABLE",
|
|
25714
26200
|
Warning = "WARNING"
|
|
25715
26201
|
}
|
|
26202
|
+
export type CommerceExpStreamhubEventInput = {
|
|
26203
|
+
ari: Scalars['String']['input'];
|
|
26204
|
+
avi: Scalars['String']['input'];
|
|
26205
|
+
payload: Scalars['JSON']['input'];
|
|
26206
|
+
};
|
|
26207
|
+
export type CommerceExpStreamhubMutation = {
|
|
26208
|
+
__typename?: 'CommerceExpStreamhubMutation';
|
|
26209
|
+
emitEvent?: Maybe<CommerceExpEmitStreamhubEventPayload>;
|
|
26210
|
+
};
|
|
26211
|
+
export type CommerceExpStreamhubMutationEmitEventArgs = {
|
|
26212
|
+
input: CommerceExpStreamhubEventInput;
|
|
26213
|
+
};
|
|
25716
26214
|
export declare enum CommerceExpSubBenefitType {
|
|
25717
26215
|
Flat = "FLAT",
|
|
25718
26216
|
MultiPercentage = "MULTI_PERCENTAGE",
|
|
@@ -25772,9 +26270,18 @@ export type CommerceExpTaxId = {
|
|
|
25772
26270
|
__typename?: 'CommerceExpTaxId';
|
|
25773
26271
|
id?: Maybe<Scalars['String']['output']>;
|
|
25774
26272
|
label?: Maybe<Scalars['String']['output']>;
|
|
26273
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
25775
26274
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
25776
26275
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
25777
26276
|
};
|
|
26277
|
+
export type CommerceExpTaxIdInput = {
|
|
26278
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
26279
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
26280
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
26281
|
+
taxIdDescription?: InputMaybe<Scalars['String']['input']>;
|
|
26282
|
+
taxIdLabel?: InputMaybe<Scalars['String']['input']>;
|
|
26283
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
26284
|
+
};
|
|
25778
26285
|
export type CommerceExpTaxIdLabel = {
|
|
25779
26286
|
__typename?: 'CommerceExpTaxIdLabel';
|
|
25780
26287
|
description: Scalars['String']['output'];
|
|
@@ -25896,6 +26403,7 @@ export type CommerceExpUpcomingBillsLineItem = {
|
|
|
25896
26403
|
currency?: Maybe<Scalars['String']['output']>;
|
|
25897
26404
|
description?: Maybe<Scalars['String']['output']>;
|
|
25898
26405
|
estimateLineTypeForBAC?: Maybe<CommerceExpEstimateLineType>;
|
|
26406
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
25899
26407
|
offering?: Maybe<CcpOffering>;
|
|
25900
26408
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
25901
26409
|
period?: Maybe<CommerceExpPeriodResponse>;
|
|
@@ -25909,18 +26417,57 @@ export type CommerceExpUpcomingBillsLineItem = {
|
|
|
25909
26417
|
taxPercent2?: Maybe<Scalars['Float']['output']>;
|
|
25910
26418
|
total?: Maybe<Scalars['Float']['output']>;
|
|
25911
26419
|
};
|
|
26420
|
+
export type CommerceExpUpdateBillToPartyInput = {
|
|
26421
|
+
name: Scalars['String']['input'];
|
|
26422
|
+
postalAddress: CommerceExpPostalAddressInput;
|
|
26423
|
+
taxId?: InputMaybe<Scalars['String']['input']>;
|
|
26424
|
+
taxIds?: InputMaybe<Array<InputMaybe<CommerceExpTaxIdInput>>>;
|
|
26425
|
+
};
|
|
25912
26426
|
export type CommerceExpUpdateBillToPartyPayload = CommerceExpMutationPayload & {
|
|
25913
26427
|
__typename?: 'CommerceExpUpdateBillToPartyPayload';
|
|
25914
26428
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
25915
26429
|
errors?: Maybe<Array<MutationError>>;
|
|
25916
26430
|
success: Scalars['Boolean']['output'];
|
|
25917
26431
|
};
|
|
26432
|
+
export type CommerceExpUpdateEntitlementDisplayNameInput = {
|
|
26433
|
+
currentDisplayName?: InputMaybe<Scalars['String']['input']>;
|
|
26434
|
+
entitlementCustomName?: InputMaybe<Scalars['String']['input']>;
|
|
26435
|
+
};
|
|
26436
|
+
export type CommerceExpUpdateEntitlementDisplayNamePayload = CommerceExpMutationPayload & {
|
|
26437
|
+
__typename?: 'CommerceExpUpdateEntitlementDisplayNamePayload';
|
|
26438
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26439
|
+
success: Scalars['Boolean']['output'];
|
|
26440
|
+
};
|
|
25918
26441
|
export type CommerceExpUpdateInvoiceGroupPayload = CommerceExpMutationPayload & {
|
|
25919
26442
|
__typename?: 'CommerceExpUpdateInvoiceGroupPayload';
|
|
25920
26443
|
errors?: Maybe<Array<MutationError>>;
|
|
25921
26444
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
25922
26445
|
success: Scalars['Boolean']['output'];
|
|
25923
26446
|
};
|
|
26447
|
+
export type CommerceExpUpdateOrderItemChargeOptions = {
|
|
26448
|
+
element: Scalars['String']['input'];
|
|
26449
|
+
quantity: Scalars['Int']['input'];
|
|
26450
|
+
};
|
|
26451
|
+
export type CommerceExpUpdateOrderItemOptions = {
|
|
26452
|
+
chargeOptions?: InputMaybe<CommerceExpUpdateOrderItemChargeOptions>;
|
|
26453
|
+
offeringKey?: InputMaybe<Scalars['String']['input']>;
|
|
26454
|
+
orderItemId: Scalars['ID']['input'];
|
|
26455
|
+
pricingPlanKey?: InputMaybe<Scalars['String']['input']>;
|
|
26456
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26457
|
+
};
|
|
26458
|
+
export type CommerceExpUpdateOrderOptionUsage = {
|
|
26459
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
26460
|
+
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
26461
|
+
value?: InputMaybe<Scalars['Int']['input']>;
|
|
26462
|
+
};
|
|
26463
|
+
export type CommerceExpUpdateOrderOptions = {
|
|
26464
|
+
behaviourAtEndOfSubscription?: InputMaybe<CommerceExpBehaviourAtEndOfSubscription>;
|
|
26465
|
+
behaviourAtEndOfTrial?: InputMaybe<CommerceExpBehaviourAtEndOfTrial>;
|
|
26466
|
+
invoiceGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
26467
|
+
orderItems?: InputMaybe<Array<CommerceExpUpdateOrderItemOptions>>;
|
|
26468
|
+
paymentMethodType?: InputMaybe<CommerceExpPaymentMethodType>;
|
|
26469
|
+
usage?: InputMaybe<CommerceExpUpdateOrderOptionUsage>;
|
|
26470
|
+
};
|
|
25924
26471
|
export type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = CommerceExpMutationPayload & {
|
|
25925
26472
|
__typename?: 'CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload';
|
|
25926
26473
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -25938,6 +26485,12 @@ export type CommerceExpUpdatePrimaryContactPayload = CommerceExpMutationPayload
|
|
|
25938
26485
|
errors?: Maybe<Array<MutationError>>;
|
|
25939
26486
|
success: Scalars['Boolean']['output'];
|
|
25940
26487
|
};
|
|
26488
|
+
export type CommerceExpUpdateShipToPartyInput = {
|
|
26489
|
+
name: Scalars['String']['input'];
|
|
26490
|
+
postalAddress: CommerceExpPostalAddressInput;
|
|
26491
|
+
taxId?: InputMaybe<Scalars['String']['input']>;
|
|
26492
|
+
taxIds?: InputMaybe<Array<InputMaybe<CommerceExpTaxIdInput>>>;
|
|
26493
|
+
};
|
|
25941
26494
|
export type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
25942
26495
|
__typename?: 'CommerceExpUpdateShipToPartyPayload';
|
|
25943
26496
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26102,6 +26655,12 @@ export type CommerceExpValidOrderError = {
|
|
|
26102
26655
|
__typename?: 'CommerceExpValidOrderError';
|
|
26103
26656
|
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
26104
26657
|
};
|
|
26658
|
+
export type CommerceExpValidOrderInput = {
|
|
26659
|
+
changeIntentEntitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
26660
|
+
order: CommerceExpOrderRequestInput;
|
|
26661
|
+
txaId: Scalars['String']['input'];
|
|
26662
|
+
updateOrderOptions?: InputMaybe<CommerceExpUpdateOrderOptions>;
|
|
26663
|
+
};
|
|
26105
26664
|
export type CommerceExpValidOrderItem = {
|
|
26106
26665
|
__typename?: 'CommerceExpValidOrderItem';
|
|
26107
26666
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
@@ -26117,6 +26676,7 @@ export type CommerceExpValidOrderSuccess = {
|
|
|
26117
26676
|
estimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26118
26677
|
order?: Maybe<CommerceExpOrderRequest>;
|
|
26119
26678
|
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
26679
|
+
rawOrder?: Maybe<Scalars['JSON']['output']>;
|
|
26120
26680
|
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26121
26681
|
shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26122
26682
|
upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
|
|
@@ -31434,6 +31994,7 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
31434
31994
|
};
|
|
31435
31995
|
export declare enum ConfluenceAccessLinkPermissionMode {
|
|
31436
31996
|
Edit = "EDIT",
|
|
31997
|
+
Limited = "LIMITED",
|
|
31437
31998
|
View = "VIEW",
|
|
31438
31999
|
ViewAndComment = "VIEW_AND_COMMENT"
|
|
31439
32000
|
}
|
|
@@ -32891,6 +33452,27 @@ export type ConfluenceContentVersion = {
|
|
|
32891
33452
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
32892
33453
|
number?: Maybe<Scalars['Int']['output']>;
|
|
32893
33454
|
};
|
|
33455
|
+
export type ConfluenceContentVersionSnapshot = {
|
|
33456
|
+
__typename?: 'ConfluenceContentVersionSnapshot';
|
|
33457
|
+
body?: Maybe<ContentBodyPerRepresentation>;
|
|
33458
|
+
contentProperties?: Maybe<ContentProperties>;
|
|
33459
|
+
id: Scalars['ID']['output'];
|
|
33460
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
33461
|
+
previousVersion?: Maybe<ConfluenceContentVersionSnapshot>;
|
|
33462
|
+
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
33463
|
+
space?: Maybe<Space>;
|
|
33464
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
33465
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
33466
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
33467
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
33468
|
+
version: Scalars['Int']['output'];
|
|
33469
|
+
};
|
|
33470
|
+
export type ConfluenceContentVersionSnapshotPropertiesArgs = {
|
|
33471
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
33472
|
+
keys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
33473
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
33474
|
+
start?: InputMaybe<Scalars['Int']['input']>;
|
|
33475
|
+
};
|
|
32894
33476
|
export type ConfluenceContentViewerSummary = {
|
|
32895
33477
|
__typename?: 'ConfluenceContentViewerSummary';
|
|
32896
33478
|
favoritedSummary?: Maybe<ConfluenceFavoritedSummary>;
|
|
@@ -39052,25 +39634,21 @@ export type ConfluenceUserInfo = {
|
|
|
39052
39634
|
};
|
|
39053
39635
|
export type ConfluenceUserSetupCohort = {
|
|
39054
39636
|
__typename?: 'ConfluenceUserSetupCohort';
|
|
39055
|
-
category: ConfluenceUserSetupCohortCategory;
|
|
39056
39637
|
eventCount: Scalars['Long']['output'];
|
|
39057
39638
|
isLowConfidence: Scalars['Boolean']['output'];
|
|
39058
39639
|
p75LoadTimeMs: Scalars['Long']['output'];
|
|
39059
39640
|
value: Scalars['String']['output'];
|
|
39060
39641
|
};
|
|
39061
|
-
export declare enum ConfluenceUserSetupCohortCategory {
|
|
39062
|
-
Adequate = "ADEQUATE",
|
|
39063
|
-
Basic = "BASIC",
|
|
39064
|
-
Optimal = "OPTIMAL"
|
|
39065
|
-
}
|
|
39066
39642
|
export declare enum ConfluenceUserSetupMetric {
|
|
39067
|
-
CpuCoreCount = "CPU_CORE_COUNT"
|
|
39643
|
+
CpuCoreCount = "CPU_CORE_COUNT",
|
|
39644
|
+
NetworkProtocol = "NETWORK_PROTOCOL",
|
|
39645
|
+
NetworkSpeed = "NETWORK_SPEED",
|
|
39646
|
+
OperatingSystem = "OPERATING_SYSTEM"
|
|
39068
39647
|
}
|
|
39069
39648
|
export type ConfluenceUserSetupModule = {
|
|
39070
39649
|
__typename?: 'ConfluenceUserSetupModule';
|
|
39071
39650
|
cohorts: Array<ConfluenceUserSetupCohort>;
|
|
39072
39651
|
metric: ConfluenceUserSetupMetric;
|
|
39073
|
-
performanceImpactMs?: Maybe<Scalars['Long']['output']>;
|
|
39074
39652
|
};
|
|
39075
39653
|
export type ConfluenceUserSetupResult = {
|
|
39076
39654
|
__typename?: 'ConfluenceUserSetupResult';
|
|
@@ -39828,6 +40406,7 @@ export type ContentHistory = {
|
|
|
39828
40406
|
__typename?: 'ContentHistory';
|
|
39829
40407
|
by: Person;
|
|
39830
40408
|
collaborators?: Maybe<ContributorUsers>;
|
|
40409
|
+
editedBy?: Maybe<ConfluenceCollaborator>;
|
|
39831
40410
|
editorVersion?: Maybe<Scalars['String']['output']>;
|
|
39832
40411
|
friendlyWhen: Scalars['String']['output'];
|
|
39833
40412
|
message: Scalars['String']['output'];
|
|
@@ -40126,6 +40705,7 @@ export type ContributorRolesFailed = {
|
|
|
40126
40705
|
};
|
|
40127
40706
|
export type ContributorUsers = {
|
|
40128
40707
|
__typename?: 'ContributorUsers';
|
|
40708
|
+
collaborators?: Maybe<Array<Maybe<ConfluenceCollaborator>>>;
|
|
40129
40709
|
links?: Maybe<LinksContextBase>;
|
|
40130
40710
|
userAccountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
40131
40711
|
userKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -40777,6 +41357,7 @@ export type CplsAcceptAllSuggestionsInput = {
|
|
|
40777
41357
|
export type CplsAcceptAllSuggestionsPayload = Payload & {
|
|
40778
41358
|
__typename?: 'CplsAcceptAllSuggestionsPayload';
|
|
40779
41359
|
errors?: Maybe<Array<MutationError>>;
|
|
41360
|
+
numberOfWorksToAddToWorkView?: Maybe<Scalars['Int']['output']>;
|
|
40780
41361
|
success: Scalars['Boolean']['output'];
|
|
40781
41362
|
};
|
|
40782
41363
|
export type CplsAddAllContributorScopeAssociationsFromWorkViewInput = {
|
|
@@ -41117,6 +41698,7 @@ export type CplsContributorEdge = {
|
|
|
41117
41698
|
};
|
|
41118
41699
|
export type CplsContributorPreview = {
|
|
41119
41700
|
__typename?: 'CplsContributorPreview';
|
|
41701
|
+
contributionAggregations?: Maybe<Array<CplsContributionAggregation>>;
|
|
41120
41702
|
contributorData?: Maybe<CplsContributorData>;
|
|
41121
41703
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
41122
41704
|
id: Scalars['ID']['output'];
|
|
@@ -41454,6 +42036,7 @@ export type CplsGetContributorScopeAssociationsInput = {
|
|
|
41454
42036
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41455
42037
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
41456
42038
|
scopeId: Scalars['ID']['input'];
|
|
42039
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
41457
42040
|
};
|
|
41458
42041
|
export type CplsGetContributorWorkAssociationsInput = {
|
|
41459
42042
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46196,13 +46779,26 @@ export type DevAiAutodevNextNotificationSettings = {
|
|
|
46196
46779
|
__typename?: 'DevAiAutodevNextNotificationSettings';
|
|
46197
46780
|
frequency?: Maybe<DevAiAutodevNextNotificationFrequency>;
|
|
46198
46781
|
scheduledNotificationMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
46782
|
+
welcomeMessageEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
46199
46783
|
welcomeMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
46200
46784
|
};
|
|
46201
46785
|
export type DevAiAutodevNextNotificationSettingsInput = {
|
|
46202
46786
|
frequency?: InputMaybe<DevAiAutodevNextNotificationFrequency>;
|
|
46203
46787
|
scheduledNotificationMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
46788
|
+
welcomeMessageEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46204
46789
|
welcomeMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
46205
46790
|
};
|
|
46791
|
+
export type DevAiAutodevNextNudgePreview = {
|
|
46792
|
+
__typename?: 'DevAiAutodevNextNudgePreview';
|
|
46793
|
+
hasMoreUsers?: Maybe<Scalars['Boolean']['output']>;
|
|
46794
|
+
previewedUserCount: Scalars['Int']['output'];
|
|
46795
|
+
userWorkItemCounts: Array<DevAiAutodevNextNudgePreviewUserCount>;
|
|
46796
|
+
};
|
|
46797
|
+
export type DevAiAutodevNextNudgePreviewUserCount = {
|
|
46798
|
+
__typename?: 'DevAiAutodevNextNudgePreviewUserCount';
|
|
46799
|
+
user?: Maybe<User>;
|
|
46800
|
+
workItemCount: Scalars['Int']['output'];
|
|
46801
|
+
};
|
|
46206
46802
|
export declare enum DevAiAutodevNextNudgeRequestScope {
|
|
46207
46803
|
AllOpenRequests = "ALL_OPEN_REQUESTS",
|
|
46208
46804
|
OverdueOnly = "OVERDUE_ONLY"
|
|
@@ -49753,28 +50349,48 @@ export type DlpFalsePositivesListResponse = {
|
|
|
49753
50349
|
falsePositives: Array<DlpFalsePositive>;
|
|
49754
50350
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
49755
50351
|
};
|
|
49756
|
-
export type
|
|
49757
|
-
__typename?: '
|
|
49758
|
-
|
|
50352
|
+
export type DlpFindingOccurrence = {
|
|
50353
|
+
__typename?: 'DlpFindingOccurrence';
|
|
50354
|
+
bootstrapId?: Maybe<Scalars['String']['output']>;
|
|
49759
50355
|
category?: Maybe<Scalars['String']['output']>;
|
|
49760
|
-
|
|
49761
|
-
|
|
49762
|
-
|
|
50356
|
+
contentAudit?: Maybe<Scalars['String']['output']>;
|
|
50357
|
+
contentHash?: Maybe<Scalars['String']['output']>;
|
|
50358
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
50359
|
+
createdOnEpoch?: Maybe<Scalars['String']['output']>;
|
|
50360
|
+
detectionResultMatchCount?: Maybe<Scalars['Int']['output']>;
|
|
50361
|
+
detectorAri?: Maybe<Scalars['String']['output']>;
|
|
49763
50362
|
detectorId?: Maybe<Scalars['String']['output']>;
|
|
49764
|
-
detectorTitle?: Maybe<Scalars['String']['output']>;
|
|
49765
50363
|
detectorType?: Maybe<Scalars['String']['output']>;
|
|
49766
|
-
|
|
49767
|
-
|
|
49768
|
-
|
|
50364
|
+
detectorVersion?: Maybe<Scalars['Int']['output']>;
|
|
50365
|
+
isRedactable?: Maybe<Scalars['Boolean']['output']>;
|
|
50366
|
+
matchConfidence?: Maybe<Scalars['Float']['output']>;
|
|
50367
|
+
matchEndIndex?: Maybe<Scalars['Int']['output']>;
|
|
50368
|
+
matchEndPointer?: Maybe<Scalars['String']['output']>;
|
|
50369
|
+
matchStartIndex?: Maybe<Scalars['Int']['output']>;
|
|
50370
|
+
matchStartPointer?: Maybe<Scalars['String']['output']>;
|
|
50371
|
+
occurrenceConfidence?: Maybe<Scalars['Float']['output']>;
|
|
50372
|
+
occurrenceCount?: Maybe<Scalars['Int']['output']>;
|
|
50373
|
+
occurrenceSeq?: Maybe<Scalars['Int']['output']>;
|
|
50374
|
+
occurrencesTruncated?: Maybe<Scalars['Boolean']['output']>;
|
|
50375
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
49769
50376
|
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
50377
|
+
rawDetectorId?: Maybe<Scalars['String']['output']>;
|
|
50378
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
50379
|
+
resourceLastUpdatedAtEpoch?: Maybe<Scalars['String']['output']>;
|
|
50380
|
+
resourceVersion?: Maybe<Scalars['String']['output']>;
|
|
49770
50381
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
49771
|
-
|
|
50382
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
49772
50383
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
49773
50384
|
};
|
|
50385
|
+
export type DlpFindingsFiltersInput = {
|
|
50386
|
+
detectorIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50387
|
+
endEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50388
|
+
startEpochMillis?: InputMaybe<Scalars['String']['input']>;
|
|
50389
|
+
};
|
|
49774
50390
|
export type DlpFindingsListResponse = {
|
|
49775
50391
|
__typename?: 'DlpFindingsListResponse';
|
|
49776
|
-
|
|
49777
|
-
|
|
50392
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50393
|
+
findings?: Maybe<Array<Maybe<DlpFindingOccurrence>>>;
|
|
49778
50394
|
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
49779
50395
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
49780
50396
|
};
|
|
@@ -54728,6 +55344,7 @@ export type GetAllPlansFilterInput = {
|
|
|
54728
55344
|
ownerIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54729
55345
|
planName?: InputMaybe<Scalars['String']['input']>;
|
|
54730
55346
|
publishedState?: InputMaybe<PlanPublishedStateFilter>;
|
|
55347
|
+
sharedWithViewer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54731
55348
|
status?: InputMaybe<PlanStatusFilter>;
|
|
54732
55349
|
};
|
|
54733
55350
|
export type GlobalAppEgress = {
|
|
@@ -56963,6 +57580,7 @@ export type GraphIntegrationDirectoryItemEdge = {
|
|
|
56963
57580
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
56964
57581
|
Action = "ACTION",
|
|
56965
57582
|
CustomSkill = "CUSTOM_SKILL",
|
|
57583
|
+
ForgeSkill = "FORGE_SKILL",
|
|
56966
57584
|
ForgeTool = "FORGE_TOOL",
|
|
56967
57585
|
McpServer = "MCP_SERVER",
|
|
56968
57586
|
McpTool = "MCP_TOOL",
|
|
@@ -57110,6 +57728,8 @@ export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
|
|
|
57110
57728
|
};
|
|
57111
57729
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
|
|
57112
57730
|
ApiToken = "API_TOKEN",
|
|
57731
|
+
CustomOauthAuthorizationCode = "CUSTOM_OAUTH_AUTHORIZATION_CODE",
|
|
57732
|
+
CustomOauthClientCredentials = "CUSTOM_OAUTH_CLIENT_CREDENTIALS",
|
|
57113
57733
|
None = "NONE",
|
|
57114
57734
|
Oauth = "OAUTH",
|
|
57115
57735
|
OauthClientCredentials = "OAUTH_CLIENT_CREDENTIALS"
|
|
@@ -57156,6 +57776,7 @@ export type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
57156
57776
|
registrationSource: GraphIntegrationMcpAdminManagementMcpRegistrationSource;
|
|
57157
57777
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
57158
57778
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
57779
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
57159
57780
|
};
|
|
57160
57781
|
export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
57161
57782
|
Deleting = "DELETING",
|
|
@@ -57562,6 +58183,17 @@ export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload =
|
|
|
57562
58183
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
57563
58184
|
success: Scalars['Boolean']['output'];
|
|
57564
58185
|
};
|
|
58186
|
+
export type GraphIntegrationSetTwgProductToolAccessOverrideInput = {
|
|
58187
|
+
contextAri: Scalars['ID']['input'];
|
|
58188
|
+
productAri: Scalars['ID']['input'];
|
|
58189
|
+
toolAccessOverride: Scalars['Boolean']['input'];
|
|
58190
|
+
};
|
|
58191
|
+
export type GraphIntegrationSetTwgProductToolAccessOverridePayload = Payload & {
|
|
58192
|
+
__typename?: 'GraphIntegrationSetTwgProductToolAccessOverridePayload';
|
|
58193
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58194
|
+
success: Scalars['Boolean']['output'];
|
|
58195
|
+
toolAccessOverride: Scalars['Boolean']['output'];
|
|
58196
|
+
};
|
|
57565
58197
|
export type GraphIntegrationSharedSkillInfo = {
|
|
57566
58198
|
__typename?: 'GraphIntegrationSharedSkillInfo';
|
|
57567
58199
|
hasConflict: Scalars['Boolean']['output'];
|
|
@@ -57686,9 +58318,11 @@ export type GraphIntegrationSkillToolInput = {
|
|
|
57686
58318
|
type: GraphIntegrationSkillToolType;
|
|
57687
58319
|
};
|
|
57688
58320
|
export declare enum GraphIntegrationSkillToolSource {
|
|
58321
|
+
Forge = "FORGE",
|
|
57689
58322
|
IntegrationsService = "INTEGRATIONS_SERVICE"
|
|
57690
58323
|
}
|
|
57691
58324
|
export declare enum GraphIntegrationSkillToolType {
|
|
58325
|
+
ForgeTool = "FORGE_TOOL",
|
|
57692
58326
|
PlatformMcpTool = "PLATFORM_MCP_TOOL"
|
|
57693
58327
|
}
|
|
57694
58328
|
export type GraphIntegrationSkillUiMetadata = {
|
|
@@ -57789,6 +58423,7 @@ export type GraphIntegrationTwgProductAdminSettings = {
|
|
|
57789
58423
|
__typename?: 'GraphIntegrationTwgProductAdminSettings';
|
|
57790
58424
|
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
57791
58425
|
productAri: Scalars['ID']['output'];
|
|
58426
|
+
toolAccessOverride: Scalars['Boolean']['output'];
|
|
57792
58427
|
};
|
|
57793
58428
|
export type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
57794
58429
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
@@ -86070,7 +86705,7 @@ export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseEdge =
|
|
|
86070
86705
|
node?: Maybe<GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
86071
86706
|
};
|
|
86072
86707
|
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
86073
|
-
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
|
|
86708
|
+
export type GraphStoreSimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
86074
86709
|
export type GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
86075
86710
|
__typename?: 'GraphStoreSimplifiedInferredProjectHasRelatedEntityConnection';
|
|
86076
86711
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -117124,7 +117759,7 @@ export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseEdge = {
|
|
|
117124
117759
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion>;
|
|
117125
117760
|
};
|
|
117126
117761
|
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityInverseUnion = GraphStoreNodeResponse;
|
|
117127
|
-
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
|
|
117762
|
+
export type GraphStoreV2SimplifiedInferredDecisionLinksEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
117128
117763
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection = HasPageInfo & {
|
|
117129
117764
|
__typename?: 'GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityConnection';
|
|
117130
117765
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityEdge>>>;
|
|
@@ -117152,7 +117787,7 @@ export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseEdge
|
|
|
117152
117787
|
node?: Maybe<GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion>;
|
|
117153
117788
|
};
|
|
117154
117789
|
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityInverseUnion = GraphStoreNodeResponse;
|
|
117155
|
-
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | LoomVideo;
|
|
117790
|
+
export type GraphStoreV2SimplifiedInferredDecisionSourceLineageEntityUnion = ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | ExternalVideo | LoomVideo;
|
|
117156
117791
|
export type GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection = HasPageInfo & {
|
|
117157
117792
|
__typename?: 'GraphStoreV2SimplifiedInferredProjectHasRelatedEntityConnection';
|
|
117158
117793
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredProjectHasRelatedEntityEdge>>>;
|
|
@@ -121053,6 +121688,7 @@ export type GrowthRecContext = {
|
|
|
121053
121688
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
121054
121689
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
121055
121690
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
121691
|
+
rankingOptimization?: InputMaybe<Scalars['String']['input']>;
|
|
121056
121692
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
121057
121693
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
121058
121694
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -121068,6 +121704,7 @@ export type GrowthRecContextResult = {
|
|
|
121068
121704
|
locale?: Maybe<Scalars['String']['output']>;
|
|
121069
121705
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
121070
121706
|
product?: Maybe<Scalars['String']['output']>;
|
|
121707
|
+
rankingOptimization?: Maybe<Scalars['String']['output']>;
|
|
121071
121708
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
121072
121709
|
subproduct?: Maybe<Scalars['String']['output']>;
|
|
121073
121710
|
tenantId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -122234,6 +122871,7 @@ export type HasMercuryProjectFields = {
|
|
|
122234
122871
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
122235
122872
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
122236
122873
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
122874
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
122237
122875
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
122238
122876
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
122239
122877
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -122910,7 +123548,8 @@ export type HelpCenterPageRovoConfig = {
|
|
|
122910
123548
|
export declare enum HelpCenterPageType {
|
|
122911
123549
|
Custom = "CUSTOM",
|
|
122912
123550
|
CustomHome = "CUSTOM_HOME",
|
|
122913
|
-
Portal = "PORTAL"
|
|
123551
|
+
Portal = "PORTAL",
|
|
123552
|
+
Topic = "TOPIC"
|
|
122914
123553
|
}
|
|
122915
123554
|
export type HelpCenterPageUpdateInput = {
|
|
122916
123555
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123257,7 +123896,9 @@ export type HelpCenterSiteTreeNodeEdge = {
|
|
|
123257
123896
|
};
|
|
123258
123897
|
export declare enum HelpCenterSortMode {
|
|
123259
123898
|
Manual = "MANUAL",
|
|
123899
|
+
NameAscending = "NAME_ASCENDING",
|
|
123260
123900
|
Parent = "PARENT",
|
|
123901
|
+
Popularity = "POPULARITY",
|
|
123261
123902
|
SubEntityType = "SUB_ENTITY_TYPE"
|
|
123262
123903
|
}
|
|
123263
123904
|
export declare enum HelpCenterSortOrder {
|
|
@@ -125179,6 +125820,7 @@ export type InlineTasksByMetadata = {
|
|
|
125179
125820
|
first: Scalars['Int']['input'];
|
|
125180
125821
|
forCurrentPageOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125181
125822
|
isNoDueDate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
125823
|
+
labels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
125182
125824
|
pageIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
125183
125825
|
sortParameters?: InputMaybe<InlineTasksQuerySortParameters>;
|
|
125184
125826
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -128271,6 +128913,7 @@ export type JiraBacklogView = JiraView & Node & {
|
|
|
128271
128913
|
townsquareProjects?: Maybe<JiraTownsquareProjectConnection>;
|
|
128272
128914
|
versionFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
128273
128915
|
versionPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
128916
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
128274
128917
|
};
|
|
128275
128918
|
export type JiraBacklogViewAssigneeFiltersArgs = {
|
|
128276
128919
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -128559,6 +129202,7 @@ export type JiraBaseTimelineView = {
|
|
|
128559
129202
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
128560
129203
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
128561
129204
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
129205
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
128562
129206
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
128563
129207
|
};
|
|
128564
129208
|
export type JiraBaseTimelineViewConditionalFormattingRulesArgs = {
|
|
@@ -128817,6 +129461,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
128817
129461
|
showCustomFiltersAsButtons?: Maybe<Scalars['Boolean']['output']>;
|
|
128818
129462
|
sprints?: Maybe<JiraSprintConnection>;
|
|
128819
129463
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
129464
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
128820
129465
|
};
|
|
128821
129466
|
export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
128822
129467
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132642,6 +133287,7 @@ export type JiraDetailedView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMe
|
|
|
132642
133287
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
132643
133288
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
132644
133289
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
133290
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
132645
133291
|
};
|
|
132646
133292
|
export type JiraDetailedViewFieldSetsArgs = {
|
|
132647
133293
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133456,6 +134102,7 @@ export type JiraFetchBulkOperationDetailsResponse = {
|
|
|
133456
134102
|
__typename?: 'JiraFetchBulkOperationDetailsResponse';
|
|
133457
134103
|
bulkEditFields?: Maybe<JiraBulkEditFieldsConnection>;
|
|
133458
134104
|
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
134105
|
+
canBulkInvokeAgentSessions?: Maybe<Scalars['Boolean']['output']>;
|
|
133459
134106
|
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
133460
134107
|
totalIssues?: Maybe<Scalars['Int']['output']>;
|
|
133461
134108
|
};
|
|
@@ -135373,6 +136020,7 @@ export type JiraGroupedListView = JiraFieldSetsViewMetadata & JiraIssueSearchVie
|
|
|
135373
136020
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
135374
136021
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
135375
136022
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
136023
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
135376
136024
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
135377
136025
|
};
|
|
135378
136026
|
export type JiraGroupedListViewConditionalFormattingRulesArgs = {
|
|
@@ -135439,6 +136087,7 @@ export type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMe
|
|
|
135439
136087
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
135440
136088
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
135441
136089
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
136090
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
135442
136091
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
135443
136092
|
};
|
|
135444
136093
|
export type JiraGroupedTimelineViewConditionalFormattingRulesArgs = {
|
|
@@ -137944,6 +138593,22 @@ export type JiraIssueRankInput = {
|
|
|
137944
138593
|
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
137945
138594
|
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
137946
138595
|
};
|
|
138596
|
+
export type JiraIssueRecommendedAgent = {
|
|
138597
|
+
__typename?: 'JiraIssueRecommendedAgent';
|
|
138598
|
+
issue?: Maybe<JiraIssue>;
|
|
138599
|
+
recommendedAgent?: Maybe<JiraAgenticUser>;
|
|
138600
|
+
};
|
|
138601
|
+
export type JiraIssueRecommendedAgentEdge = {
|
|
138602
|
+
__typename?: 'JiraIssueRecommendedAgentEdge';
|
|
138603
|
+
cursor: Scalars['String']['output'];
|
|
138604
|
+
node?: Maybe<JiraIssueRecommendedAgent>;
|
|
138605
|
+
};
|
|
138606
|
+
export type JiraIssueRecommendedAgentsConnection = HasPageInfo & {
|
|
138607
|
+
__typename?: 'JiraIssueRecommendedAgentsConnection';
|
|
138608
|
+
edges?: Maybe<Array<Maybe<JiraIssueRecommendedAgentEdge>>>;
|
|
138609
|
+
pageInfo: PageInfo;
|
|
138610
|
+
};
|
|
138611
|
+
export type JiraIssueRecommendedAgentsConnectionResult = JiraIssueRecommendedAgentsConnection | QueryError;
|
|
137947
138612
|
export type JiraIssueRemoteIssueLink = {
|
|
137948
138613
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
137949
138614
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -140392,6 +141057,7 @@ export type JiraListView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetada
|
|
|
140392
141057
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
140393
141058
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
140394
141059
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
141060
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
140395
141061
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
140396
141062
|
};
|
|
140397
141063
|
export type JiraListViewConditionalFormattingRulesArgs = {
|
|
@@ -145480,6 +146146,7 @@ export type JiraQuery = {
|
|
|
145480
146146
|
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
145481
146147
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
145482
146148
|
jira_getAvailableCodingAgents?: Maybe<JiraActorConnection>;
|
|
146149
|
+
jira_issuesWithAgentRecommendationsForUser?: Maybe<JiraIssueRecommendedAgentsConnectionResult>;
|
|
145483
146150
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
145484
146151
|
jira_recommendedAgentsV2?: Maybe<JiraActorConnection>;
|
|
145485
146152
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
@@ -146424,6 +147091,13 @@ export type JiraQueryJiraWorkItemJourneysArgs = {
|
|
|
146424
147091
|
export type JiraQueryJira_GetAvailableCodingAgentsArgs = {
|
|
146425
147092
|
cloudId: Scalars['ID']['input'];
|
|
146426
147093
|
};
|
|
147094
|
+
export type JiraQueryJira_IssuesWithAgentRecommendationsForUserArgs = {
|
|
147095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147096
|
+
cloudId: Scalars['ID']['input'];
|
|
147097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147098
|
+
firstPerContext?: InputMaybe<Scalars['Int']['input']>;
|
|
147099
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
147100
|
+
};
|
|
146427
147101
|
export type JiraQueryJira_RecommendedAgentsArgs = {
|
|
146428
147102
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
146429
147103
|
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -147129,6 +147803,7 @@ export declare enum JiraRecommendedActionCategoryType {
|
|
|
147129
147803
|
CommentMention = "COMMENT_MENTION",
|
|
147130
147804
|
CommentReply = "COMMENT_REPLY",
|
|
147131
147805
|
ConfluenceLinkedIssues = "CONFLUENCE_LINKED_ISSUES",
|
|
147806
|
+
DelegateToAgent = "DELEGATE_TO_AGENT",
|
|
147132
147807
|
IssueApproval = "ISSUE_APPROVAL",
|
|
147133
147808
|
IssueBlockedByMe = "ISSUE_BLOCKED_BY_ME",
|
|
147134
147809
|
IssueBlockingMe = "ISSUE_BLOCKING_ME",
|
|
@@ -150336,6 +151011,46 @@ export type JiraServiceManagementSlaWorkingTimeEdge = {
|
|
|
150336
151011
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
150337
151012
|
node?: Maybe<JiraServiceManagementSlaWorkingTime>;
|
|
150338
151013
|
};
|
|
151014
|
+
export type JiraServiceManagementStatusPage = {
|
|
151015
|
+
__typename?: 'JiraServiceManagementStatusPage';
|
|
151016
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
151017
|
+
id: Scalars['ID']['output'];
|
|
151018
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
151019
|
+
};
|
|
151020
|
+
export type JiraServiceManagementStatusPageConnection = {
|
|
151021
|
+
__typename?: 'JiraServiceManagementStatusPageConnection';
|
|
151022
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementStatusPageEdge>>>;
|
|
151023
|
+
pageInfo: PageInfo;
|
|
151024
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
151025
|
+
};
|
|
151026
|
+
export type JiraServiceManagementStatusPageEdge = {
|
|
151027
|
+
__typename?: 'JiraServiceManagementStatusPageEdge';
|
|
151028
|
+
cursor: Scalars['String']['output'];
|
|
151029
|
+
node?: Maybe<JiraServiceManagementStatusPage>;
|
|
151030
|
+
};
|
|
151031
|
+
export type JiraServiceManagementStatusPagesField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
151032
|
+
__typename?: 'JiraServiceManagementStatusPagesField';
|
|
151033
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
151034
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
151035
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
151036
|
+
fieldId: Scalars['String']['output'];
|
|
151037
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
151038
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
151039
|
+
id: Scalars['ID']['output'];
|
|
151040
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
151041
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
151042
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
151043
|
+
issue?: Maybe<JiraIssue>;
|
|
151044
|
+
issueFieldCreateContextOptionAri?: Maybe<Scalars['ID']['output']>;
|
|
151045
|
+
name: Scalars['String']['output'];
|
|
151046
|
+
statusPages?: Maybe<JiraServiceManagementStatusPageConnection>;
|
|
151047
|
+
type: Scalars['String']['output'];
|
|
151048
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
151049
|
+
};
|
|
151050
|
+
export type JiraServiceManagementStatusPagesFieldStatusPagesArgs = {
|
|
151051
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
151052
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151053
|
+
};
|
|
150339
151054
|
export type JiraServiceManagementTeamResponder = {
|
|
150340
151055
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
150341
151056
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -151715,6 +152430,7 @@ export type JiraSpreadsheetView = {
|
|
|
151715
152430
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
151716
152431
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
151717
152432
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
152433
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
151718
152434
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
151719
152435
|
};
|
|
151720
152436
|
export type JiraSpreadsheetViewConditionalFormattingRulesArgs = {
|
|
@@ -151761,6 +152477,8 @@ export type JiraSpreadsheetViewSettings = {
|
|
|
151761
152477
|
};
|
|
151762
152478
|
export type JiraSprint = Node & {
|
|
151763
152479
|
__typename?: 'JiraSprint';
|
|
152480
|
+
activeDaysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
152481
|
+
activeWorkingDaysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
151764
152482
|
autoManaged?: Maybe<JiraAutoManagedSprintSetting>;
|
|
151765
152483
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
151766
152484
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -151862,6 +152580,7 @@ export type JiraSprintFilterInput = {
|
|
|
151862
152580
|
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
151863
152581
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
151864
152582
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
152583
|
+
skipIssueSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
151865
152584
|
states?: InputMaybe<Array<JiraSprintState>>;
|
|
151866
152585
|
};
|
|
151867
152586
|
export type JiraSprintInput = {
|
|
@@ -152800,6 +153519,7 @@ export type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata
|
|
|
152800
153519
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
152801
153520
|
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
152802
153521
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
153522
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
152803
153523
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
152804
153524
|
};
|
|
152805
153525
|
export type JiraTimelineViewConditionalFormattingRulesArgs = {
|
|
@@ -154836,6 +155556,7 @@ export type JiraVersionsPerProjectLimit = {
|
|
|
154836
155556
|
export type JiraView = {
|
|
154837
155557
|
error?: Maybe<QueryError>;
|
|
154838
155558
|
id: Scalars['ID']['output'];
|
|
155559
|
+
viewJql?: Maybe<Scalars['String']['output']>;
|
|
154839
155560
|
};
|
|
154840
155561
|
export type JiraViewBoardIdAndItemQuery = {
|
|
154841
155562
|
boardId: Scalars['Long']['input'];
|
|
@@ -155679,6 +156400,13 @@ export type JpdBoardViewConfigInput = {
|
|
|
155679
156400
|
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155680
156401
|
swimlanes?: InputMaybe<JpdViewLayoutConfigInput>;
|
|
155681
156402
|
};
|
|
156403
|
+
export type JpdCloneViewInput = {
|
|
156404
|
+
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
156405
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
156406
|
+
name: Scalars['String']['input'];
|
|
156407
|
+
sourceViewId: Scalars['ID']['input'];
|
|
156408
|
+
viewType: JpdViewType;
|
|
156409
|
+
};
|
|
155682
156410
|
export type JpdCreateViewInput = {
|
|
155683
156411
|
containerId: Scalars['ID']['input'];
|
|
155684
156412
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -159200,6 +159928,38 @@ export declare enum JsmTelemetryProviderType {
|
|
|
159200
159928
|
NewRelic = "NEW_RELIC",
|
|
159201
159929
|
SignalFx = "SIGNAL_FX"
|
|
159202
159930
|
}
|
|
159931
|
+
export type JsmTelemetryQueryField = {
|
|
159932
|
+
__typename?: 'JsmTelemetryQueryField';
|
|
159933
|
+
key: Scalars['String']['output'];
|
|
159934
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
159935
|
+
};
|
|
159936
|
+
export type JsmTelemetryQueryInput = {
|
|
159937
|
+
provider?: InputMaybe<JsmTelemetryProviderType>;
|
|
159938
|
+
query: Scalars['String']['input'];
|
|
159939
|
+
};
|
|
159940
|
+
export type JsmTelemetryQueryMetadata = {
|
|
159941
|
+
__typename?: 'JsmTelemetryQueryMetadata';
|
|
159942
|
+
eventTypes: Array<Scalars['String']['output']>;
|
|
159943
|
+
timeWindowBegin?: Maybe<Scalars['DateTime']['output']>;
|
|
159944
|
+
timeWindowEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
159945
|
+
};
|
|
159946
|
+
export type JsmTelemetryQueryResponse = {
|
|
159947
|
+
__typename?: 'JsmTelemetryQueryResponse';
|
|
159948
|
+
columns: Array<Scalars['String']['output']>;
|
|
159949
|
+
metadata?: Maybe<JsmTelemetryQueryMetadata>;
|
|
159950
|
+
provider: JsmTelemetryProviderType;
|
|
159951
|
+
rowCount: Scalars['Int']['output'];
|
|
159952
|
+
rows: Array<JsmTelemetryQueryRow>;
|
|
159953
|
+
};
|
|
159954
|
+
export type JsmTelemetryQueryResult = {
|
|
159955
|
+
__typename?: 'JsmTelemetryQueryResult';
|
|
159956
|
+
data?: Maybe<JsmTelemetryQueryResponse>;
|
|
159957
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
159958
|
+
};
|
|
159959
|
+
export type JsmTelemetryQueryRow = {
|
|
159960
|
+
__typename?: 'JsmTelemetryQueryRow';
|
|
159961
|
+
fields: Array<JsmTelemetryQueryField>;
|
|
159962
|
+
};
|
|
159203
159963
|
export type JsmTelemetryRemoveChartResult = {
|
|
159204
159964
|
__typename?: 'JsmTelemetryRemoveChartResult';
|
|
159205
159965
|
data?: Maybe<JsmTelemetryDashboard>;
|
|
@@ -159762,6 +160522,7 @@ export type KitsuneCreateFeedbackInput = {
|
|
|
159762
160522
|
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
159763
160523
|
spaceAri: Scalars['ID']['input'];
|
|
159764
160524
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
160525
|
+
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
159765
160526
|
};
|
|
159766
160527
|
export type KitsuneCreateFeedbackPayload = Payload & {
|
|
159767
160528
|
__typename?: 'KitsuneCreateFeedbackPayload';
|
|
@@ -160052,6 +160813,7 @@ export declare enum KitsuneFeedbackType {
|
|
|
160052
160813
|
export type KitsuneFeedbackValue = {
|
|
160053
160814
|
__typename?: 'KitsuneFeedbackValue';
|
|
160054
160815
|
field: KitsuneField;
|
|
160816
|
+
fieldV2?: Maybe<KitsuneField>;
|
|
160055
160817
|
values: Array<KitsuneFeedbackFieldValue>;
|
|
160056
160818
|
};
|
|
160057
160819
|
export type KitsuneFeedbackValueInput = {
|
|
@@ -162055,6 +162817,7 @@ export type KnowledgeDiscoveryQueryApi = {
|
|
|
162055
162817
|
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
162056
162818
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
162057
162819
|
reportingLines?: Maybe<KnowledgeDiscoveryReportingLinesResult>;
|
|
162820
|
+
searchChatIntentDetection?: Maybe<KnowledgeDiscoverySearchChatIntentDetectionResult>;
|
|
162058
162821
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
162059
162822
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
162060
162823
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
@@ -162163,6 +162926,12 @@ export type KnowledgeDiscoveryQueryApiReportingLinesArgs = {
|
|
|
162163
162926
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
162164
162927
|
siteId: Scalars['String']['input'];
|
|
162165
162928
|
};
|
|
162929
|
+
export type KnowledgeDiscoveryQueryApiSearchChatIntentDetectionArgs = {
|
|
162930
|
+
locale: Scalars['String']['input'];
|
|
162931
|
+
orgId: Scalars['String']['input'];
|
|
162932
|
+
query: Scalars['String']['input'];
|
|
162933
|
+
siteId: Scalars['String']['input'];
|
|
162934
|
+
};
|
|
162166
162935
|
export type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
162167
162936
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
162168
162937
|
query: Scalars['String']['input'];
|
|
@@ -162306,6 +163075,16 @@ export type KnowledgeDiscoveryScopeInput = {
|
|
|
162306
163075
|
entityIdInScope: Scalars['String']['input'];
|
|
162307
163076
|
scope: KnowledgeDiscoveryDefinitionScope;
|
|
162308
163077
|
};
|
|
163078
|
+
export declare enum KnowledgeDiscoverySearchChatIntentDecision {
|
|
163079
|
+
Chat = "CHAT",
|
|
163080
|
+
Search = "SEARCH"
|
|
163081
|
+
}
|
|
163082
|
+
export type KnowledgeDiscoverySearchChatIntentDetectionResult = KnowledgeDiscoverySearchChatIntentDetectionSuccess | QueryError;
|
|
163083
|
+
export type KnowledgeDiscoverySearchChatIntentDetectionSuccess = {
|
|
163084
|
+
__typename?: 'KnowledgeDiscoverySearchChatIntentDetectionSuccess';
|
|
163085
|
+
decision: KnowledgeDiscoverySearchChatIntentDecision;
|
|
163086
|
+
modelVersion: Scalars['String']['output'];
|
|
163087
|
+
};
|
|
162309
163088
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
162310
163089
|
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
162311
163090
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
@@ -163641,6 +164420,7 @@ export type LoomVideo = Node & {
|
|
|
163641
164420
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
163642
164421
|
description?: Maybe<Scalars['String']['output']>;
|
|
163643
164422
|
id: Scalars['ID']['output'];
|
|
164423
|
+
inviteesWithAccessAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
163644
164424
|
isArchived: Scalars['Boolean']['output'];
|
|
163645
164425
|
isComplete: Scalars['Boolean']['output'];
|
|
163646
164426
|
isMeeting?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -163649,6 +164429,7 @@ export type LoomVideo = Node & {
|
|
|
163649
164429
|
name: Scalars['String']['output'];
|
|
163650
164430
|
owner?: Maybe<User>;
|
|
163651
164431
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
164432
|
+
participantsWithAccessAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
163652
164433
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
163653
164434
|
reactionCount?: Maybe<Scalars['Int']['output']>;
|
|
163654
164435
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
@@ -163908,6 +164689,7 @@ export declare enum MarketplaceAppPaymentModel {
|
|
|
163908
164689
|
}
|
|
163909
164690
|
export type MarketplaceAppPrograms = {
|
|
163910
164691
|
__typename?: 'MarketplaceAppPrograms';
|
|
164692
|
+
atlassianEnterpriseCertified?: Maybe<MarketplaceAtlassianEnterpriseCertified>;
|
|
163911
164693
|
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
163912
164694
|
cloudFortified?: Maybe<MarketplaceCloudFortified>;
|
|
163913
164695
|
penTestingParticipant?: Maybe<MarketplacePenTestingParticipant>;
|
|
@@ -164010,6 +164792,10 @@ export type MarketplaceAppsFilter = {
|
|
|
164010
164792
|
includePrivate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164011
164793
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
164012
164794
|
};
|
|
164795
|
+
export type MarketplaceAtlassianEnterpriseCertified = {
|
|
164796
|
+
__typename?: 'MarketplaceAtlassianEnterpriseCertified';
|
|
164797
|
+
status?: Maybe<MarketplaceProgramStatus>;
|
|
164798
|
+
};
|
|
164013
164799
|
export declare enum MarketplaceBillingCycle {
|
|
164014
164800
|
Annual = "ANNUAL",
|
|
164015
164801
|
Monthly = "MONTHLY"
|
|
@@ -168030,6 +168816,7 @@ export type MarketplaceStoreQueryApi = {
|
|
|
168030
168816
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
168031
168817
|
siteFeatures?: Maybe<MarketplaceStoreSiteFeaturesResponse>;
|
|
168032
168818
|
siteInfo?: Maybe<MarketplaceStoreSiteInfoResult>;
|
|
168819
|
+
userAppInstallConsents?: Maybe<MarketplaceStoreUserAppInstallConsentsResponse>;
|
|
168033
168820
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
168034
168821
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
168035
168822
|
userSites?: Maybe<MarketplaceStoreUserSitesResult>;
|
|
@@ -168573,6 +169360,10 @@ export type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
168573
169360
|
status: Scalars['String']['output'];
|
|
168574
169361
|
version: Scalars['Int']['output'];
|
|
168575
169362
|
};
|
|
169363
|
+
export type MarketplaceStoreUserAppInstallConsentsResponse = {
|
|
169364
|
+
__typename?: 'MarketplaceStoreUserAppInstallConsentsResponse';
|
|
169365
|
+
consentedAppKeys: Array<Scalars['String']['output']>;
|
|
169366
|
+
};
|
|
168576
169367
|
export type MarketplaceStoreUserPreferences = {
|
|
168577
169368
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
168578
169369
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -169700,7 +170491,7 @@ export type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition &
|
|
|
169700
170491
|
id: Scalars['ID']['output'];
|
|
169701
170492
|
name: Scalars['String']['output'];
|
|
169702
170493
|
scope: MercuryCustomFieldDefinitionScope;
|
|
169703
|
-
searchKey
|
|
170494
|
+
searchKey: Scalars['String']['output'];
|
|
169704
170495
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
169705
170496
|
updatedBy?: Maybe<User>;
|
|
169706
170497
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -170666,6 +171457,8 @@ export type MercuryCreateFocusAreasFromOnboardingPayload = Payload & {
|
|
|
170666
171457
|
errors?: Maybe<Array<MutationError>>;
|
|
170667
171458
|
success: Scalars['Boolean']['output'];
|
|
170668
171459
|
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
171460
|
+
validationErrors?: Maybe<Array<MercuryOnboardingValidationError>>;
|
|
171461
|
+
validationErrorsAreIncomplete?: Maybe<Scalars['Boolean']['output']>;
|
|
170669
171462
|
};
|
|
170670
171463
|
export type MercuryCreateFunctionalRoleInput = {
|
|
170671
171464
|
cloudId: Scalars['ID']['input'];
|
|
@@ -170688,6 +171481,18 @@ export type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
|
170688
171481
|
errors?: Maybe<Array<MutationError>>;
|
|
170689
171482
|
success: Scalars['Boolean']['output'];
|
|
170690
171483
|
};
|
|
171484
|
+
export type MercuryCreateMilestoneInput = {
|
|
171485
|
+
cloudId: Scalars['ID']['input'];
|
|
171486
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
171487
|
+
name: Scalars['String']['input'];
|
|
171488
|
+
targetDate?: InputMaybe<MercuryMilestoneTargetDateInput>;
|
|
171489
|
+
};
|
|
171490
|
+
export type MercuryCreateMilestonePayload = Payload & {
|
|
171491
|
+
__typename?: 'MercuryCreateMilestonePayload';
|
|
171492
|
+
createdMilestone?: Maybe<MercuryMilestone>;
|
|
171493
|
+
errors?: Maybe<Array<MutationError>>;
|
|
171494
|
+
success: Scalars['Boolean']['output'];
|
|
171495
|
+
};
|
|
170691
171496
|
export type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
170692
171497
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
170693
171498
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
@@ -170931,7 +171736,7 @@ export type MercuryCustomFieldDefinition = {
|
|
|
170931
171736
|
id: Scalars['ID']['output'];
|
|
170932
171737
|
name: Scalars['String']['output'];
|
|
170933
171738
|
scope: MercuryCustomFieldDefinitionScope;
|
|
170934
|
-
searchKey
|
|
171739
|
+
searchKey: Scalars['String']['output'];
|
|
170935
171740
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
170936
171741
|
updatedBy?: Maybe<User>;
|
|
170937
171742
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -171040,7 +171845,7 @@ export type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & Me
|
|
|
171040
171845
|
id: Scalars['ID']['output'];
|
|
171041
171846
|
name: Scalars['String']['output'];
|
|
171042
171847
|
scope: MercuryCustomFieldDefinitionScope;
|
|
171043
|
-
searchKey
|
|
171848
|
+
searchKey: Scalars['String']['output'];
|
|
171044
171849
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
171045
171850
|
updatedBy?: Maybe<User>;
|
|
171046
171851
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -171292,7 +172097,6 @@ export type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
|
|
|
171292
172097
|
success: Scalars['Boolean']['output'];
|
|
171293
172098
|
};
|
|
171294
172099
|
export type MercuryDeleteFunctionalRoleInput = {
|
|
171295
|
-
cloudId: Scalars['ID']['input'];
|
|
171296
172100
|
id: Scalars['ID']['input'];
|
|
171297
172101
|
};
|
|
171298
172102
|
export type MercuryDeleteFunctionalRolePayload = Payload & {
|
|
@@ -171308,6 +172112,14 @@ export type MercuryDeleteInvestmentCategoryPayload = Payload & {
|
|
|
171308
172112
|
errors?: Maybe<Array<MutationError>>;
|
|
171309
172113
|
success: Scalars['Boolean']['output'];
|
|
171310
172114
|
};
|
|
172115
|
+
export type MercuryDeleteMilestoneInput = {
|
|
172116
|
+
id: Scalars['ID']['input'];
|
|
172117
|
+
};
|
|
172118
|
+
export type MercuryDeleteMilestonePayload = Payload & {
|
|
172119
|
+
__typename?: 'MercuryDeleteMilestonePayload';
|
|
172120
|
+
errors?: Maybe<Array<MutationError>>;
|
|
172121
|
+
success: Scalars['Boolean']['output'];
|
|
172122
|
+
};
|
|
171311
172123
|
export type MercuryDeleteOrganizationGoalLinksInput = {
|
|
171312
172124
|
atlasGoalIds: Array<Scalars['ID']['input']>;
|
|
171313
172125
|
organizationId: Scalars['ID']['input'];
|
|
@@ -171702,7 +172514,7 @@ export type MercuryFieldDefinition = {
|
|
|
171702
172514
|
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
171703
172515
|
id: Scalars['ID']['output'];
|
|
171704
172516
|
name: Scalars['String']['output'];
|
|
171705
|
-
searchKey
|
|
172517
|
+
searchKey: Scalars['String']['output'];
|
|
171706
172518
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
171707
172519
|
};
|
|
171708
172520
|
export type MercuryFieldDefinitionConfigurationSettingsArgs = {
|
|
@@ -172264,6 +173076,16 @@ export type MercuryFocusAreaLinks = {
|
|
|
172264
173076
|
__typename?: 'MercuryFocusAreaLinks';
|
|
172265
173077
|
links: Array<MercuryFocusAreaLink>;
|
|
172266
173078
|
};
|
|
173079
|
+
export type MercuryFocusAreaOrganizationLink = {
|
|
173080
|
+
__typename?: 'MercuryFocusAreaOrganizationLink';
|
|
173081
|
+
focusAreaId: Scalars['ID']['output'];
|
|
173082
|
+
isSponsor: Scalars['Boolean']['output'];
|
|
173083
|
+
organizationId: Scalars['ID']['output'];
|
|
173084
|
+
};
|
|
173085
|
+
export type MercuryFocusAreaOrganizationLinkInput = {
|
|
173086
|
+
focusAreaId: Scalars['ID']['input'];
|
|
173087
|
+
isSponsor: Scalars['Boolean']['input'];
|
|
173088
|
+
};
|
|
172267
173089
|
export declare enum MercuryFocusAreaPermission {
|
|
172268
173090
|
Archive = "ARCHIVE",
|
|
172269
173091
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
@@ -173509,6 +174331,15 @@ export type MercuryLinkGoalsToOrganizationPayload = Payload & {
|
|
|
173509
174331
|
errors?: Maybe<Array<MutationError>>;
|
|
173510
174332
|
success: Scalars['Boolean']['output'];
|
|
173511
174333
|
};
|
|
174334
|
+
export type MercuryLinkMilestoneToFocusAreasInput = {
|
|
174335
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
174336
|
+
id: Scalars['ID']['input'];
|
|
174337
|
+
};
|
|
174338
|
+
export type MercuryLinkMilestoneToFocusAreasPayload = Payload & {
|
|
174339
|
+
__typename?: 'MercuryLinkMilestoneToFocusAreasPayload';
|
|
174340
|
+
errors?: Maybe<Array<MutationError>>;
|
|
174341
|
+
success: Scalars['Boolean']['output'];
|
|
174342
|
+
};
|
|
173512
174343
|
export type MercuryLinkOrganizationThirdPartyDocumentPayload = Payload & {
|
|
173513
174344
|
__typename?: 'MercuryLinkOrganizationThirdPartyDocumentPayload';
|
|
173514
174345
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -173621,6 +174452,97 @@ export type MercuryMediaToken = {
|
|
|
173621
174452
|
__typename?: 'MercuryMediaToken';
|
|
173622
174453
|
token: Scalars['String']['output'];
|
|
173623
174454
|
};
|
|
174455
|
+
export type MercuryMilestone = Node & {
|
|
174456
|
+
__typename?: 'MercuryMilestone';
|
|
174457
|
+
createdBy?: Maybe<User>;
|
|
174458
|
+
createdDate: Scalars['String']['output'];
|
|
174459
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
174460
|
+
id: Scalars['ID']['output'];
|
|
174461
|
+
name: Scalars['String']['output'];
|
|
174462
|
+
targetDate?: Maybe<MercuryMilestoneTargetDate>;
|
|
174463
|
+
updatedBy?: Maybe<User>;
|
|
174464
|
+
updatedDate: Scalars['String']['output'];
|
|
174465
|
+
};
|
|
174466
|
+
export type MercuryMilestoneConnection = {
|
|
174467
|
+
__typename?: 'MercuryMilestoneConnection';
|
|
174468
|
+
edges?: Maybe<Array<Maybe<MercuryMilestoneEdge>>>;
|
|
174469
|
+
pageInfo: PageInfo;
|
|
174470
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
174471
|
+
};
|
|
174472
|
+
export type MercuryMilestoneEdge = {
|
|
174473
|
+
__typename?: 'MercuryMilestoneEdge';
|
|
174474
|
+
cursor: Scalars['String']['output'];
|
|
174475
|
+
node?: Maybe<MercuryMilestone>;
|
|
174476
|
+
};
|
|
174477
|
+
export type MercuryMilestoneSort = {
|
|
174478
|
+
field: MercuryMilestoneSortField;
|
|
174479
|
+
order: SortOrder;
|
|
174480
|
+
};
|
|
174481
|
+
export declare enum MercuryMilestoneSortField {
|
|
174482
|
+
Name = "NAME",
|
|
174483
|
+
TargetDate = "TARGET_DATE",
|
|
174484
|
+
UpdatedDate = "UPDATED_DATE"
|
|
174485
|
+
}
|
|
174486
|
+
export type MercuryMilestoneTargetDate = {
|
|
174487
|
+
__typename?: 'MercuryMilestoneTargetDate';
|
|
174488
|
+
targetDate: Scalars['String']['output'];
|
|
174489
|
+
targetDateType: MercuryMilestoneTargetDateType;
|
|
174490
|
+
};
|
|
174491
|
+
export type MercuryMilestoneTargetDateInput = {
|
|
174492
|
+
targetDate: Scalars['String']['input'];
|
|
174493
|
+
targetDateType: MercuryMilestoneTargetDateType;
|
|
174494
|
+
};
|
|
174495
|
+
export declare enum MercuryMilestoneTargetDateType {
|
|
174496
|
+
Day = "DAY",
|
|
174497
|
+
Month = "MONTH",
|
|
174498
|
+
Quarter = "QUARTER"
|
|
174499
|
+
}
|
|
174500
|
+
export type MercuryMilestonesMutationApi = {
|
|
174501
|
+
__typename?: 'MercuryMilestonesMutationApi';
|
|
174502
|
+
createMilestone?: Maybe<MercuryCreateMilestonePayload>;
|
|
174503
|
+
deleteMilestone?: Maybe<MercuryDeleteMilestonePayload>;
|
|
174504
|
+
linkMilestoneToFocusAreas?: Maybe<MercuryLinkMilestoneToFocusAreasPayload>;
|
|
174505
|
+
unlinkMilestoneFromFocusAreas?: Maybe<MercuryUnlinkMilestoneFromFocusAreasPayload>;
|
|
174506
|
+
updateMilestoneDescription?: Maybe<MercuryUpdateMilestonePayload>;
|
|
174507
|
+
updateMilestoneName?: Maybe<MercuryUpdateMilestonePayload>;
|
|
174508
|
+
updateMilestoneTargetDate?: Maybe<MercuryUpdateMilestonePayload>;
|
|
174509
|
+
};
|
|
174510
|
+
export type MercuryMilestonesMutationApiCreateMilestoneArgs = {
|
|
174511
|
+
input: MercuryCreateMilestoneInput;
|
|
174512
|
+
};
|
|
174513
|
+
export type MercuryMilestonesMutationApiDeleteMilestoneArgs = {
|
|
174514
|
+
input: MercuryDeleteMilestoneInput;
|
|
174515
|
+
};
|
|
174516
|
+
export type MercuryMilestonesMutationApiLinkMilestoneToFocusAreasArgs = {
|
|
174517
|
+
input: MercuryLinkMilestoneToFocusAreasInput;
|
|
174518
|
+
};
|
|
174519
|
+
export type MercuryMilestonesMutationApiUnlinkMilestoneFromFocusAreasArgs = {
|
|
174520
|
+
input: MercuryUnlinkMilestoneFromFocusAreasInput;
|
|
174521
|
+
};
|
|
174522
|
+
export type MercuryMilestonesMutationApiUpdateMilestoneDescriptionArgs = {
|
|
174523
|
+
input: MercuryUpdateMilestoneDescriptionInput;
|
|
174524
|
+
};
|
|
174525
|
+
export type MercuryMilestonesMutationApiUpdateMilestoneNameArgs = {
|
|
174526
|
+
input: MercuryUpdateMilestoneNameInput;
|
|
174527
|
+
};
|
|
174528
|
+
export type MercuryMilestonesMutationApiUpdateMilestoneTargetDateArgs = {
|
|
174529
|
+
input: MercuryUpdateMilestoneTargetDateInput;
|
|
174530
|
+
};
|
|
174531
|
+
export type MercuryMilestonesQueryApi = {
|
|
174532
|
+
__typename?: 'MercuryMilestonesQueryApi';
|
|
174533
|
+
milestones?: Maybe<Array<Maybe<MercuryMilestone>>>;
|
|
174534
|
+
milestonesSearch?: Maybe<MercuryMilestoneConnection>;
|
|
174535
|
+
};
|
|
174536
|
+
export type MercuryMilestonesQueryApiMilestonesArgs = {
|
|
174537
|
+
ids: Array<Scalars['ID']['input']>;
|
|
174538
|
+
};
|
|
174539
|
+
export type MercuryMilestonesQueryApiMilestonesSearchArgs = {
|
|
174540
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
174541
|
+
cloudId: Scalars['ID']['input'];
|
|
174542
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
174543
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
174544
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryMilestoneSort>>>;
|
|
174545
|
+
};
|
|
173624
174546
|
export type MercuryMoney = {
|
|
173625
174547
|
__typename?: 'MercuryMoney';
|
|
173626
174548
|
amount?: Maybe<Scalars['String']['output']>;
|
|
@@ -173713,7 +174635,7 @@ export type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefiniti
|
|
|
173713
174635
|
name: Scalars['String']['output'];
|
|
173714
174636
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
173715
174637
|
scope: MercuryCustomFieldDefinitionScope;
|
|
173716
|
-
searchKey
|
|
174638
|
+
searchKey: Scalars['String']['output'];
|
|
173717
174639
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
173718
174640
|
updatedBy?: Maybe<User>;
|
|
173719
174641
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -173749,7 +174671,7 @@ export type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition
|
|
|
173749
174671
|
id: Scalars['ID']['output'];
|
|
173750
174672
|
name: Scalars['String']['output'];
|
|
173751
174673
|
scope: MercuryCustomFieldDefinitionScope;
|
|
173752
|
-
searchKey
|
|
174674
|
+
searchKey: Scalars['String']['output'];
|
|
173753
174675
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
173754
174676
|
updatedBy?: Maybe<User>;
|
|
173755
174677
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -173796,6 +174718,7 @@ export type MercuryMutationApi = {
|
|
|
173796
174718
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
173797
174719
|
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
173798
174720
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
174721
|
+
removeFocusAreaOrganizationLinks?: Maybe<MercuryRemoveFocusAreaOrganizationLinksPayload>;
|
|
173799
174722
|
removeSponsorOrganization?: Maybe<MercuryRemoveSponsorOrganizationPayload>;
|
|
173800
174723
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
173801
174724
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
@@ -173805,6 +174728,7 @@ export type MercuryMutationApi = {
|
|
|
173805
174728
|
saveFocusAreaDraftStatusUpdate?: Maybe<MercurySaveFocusAreaDraftStatusUpdatePayload>;
|
|
173806
174729
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
173807
174730
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
174731
|
+
setFocusAreaOrganizationLinks?: Maybe<MercurySetFocusAreaOrganizationLinksPayload>;
|
|
173808
174732
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
173809
174733
|
starFocusArea?: Maybe<MercuryStarFocusAreaPayload>;
|
|
173810
174734
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -173816,6 +174740,7 @@ export type MercuryMutationApi = {
|
|
|
173816
174740
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
173817
174741
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
173818
174742
|
updateFocusAreaCustomFieldDefinitionVisibility?: Maybe<MercuryUpdateCustomFieldDefinitionVisibilityPayload>;
|
|
174743
|
+
updateFocusAreaGlobalFieldConfiguration?: Maybe<MercuryUpdateGlobalFieldConfigurationPayload>;
|
|
173819
174744
|
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
173820
174745
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
173821
174746
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -173918,6 +174843,9 @@ export type MercuryMutationApiPublishFocusAreaArgs = {
|
|
|
173918
174843
|
export type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
173919
174844
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
173920
174845
|
};
|
|
174846
|
+
export type MercuryMutationApiRemoveFocusAreaOrganizationLinksArgs = {
|
|
174847
|
+
input: MercuryRemoveFocusAreaOrganizationLinksInput;
|
|
174848
|
+
};
|
|
173921
174849
|
export type MercuryMutationApiRemoveSponsorOrganizationArgs = {
|
|
173922
174850
|
input: MercuryRemoveSponsorOrganizationInput;
|
|
173923
174851
|
};
|
|
@@ -173945,6 +174873,9 @@ export type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
|
173945
174873
|
export type MercuryMutationApiSetFocusAreaCustomFieldValuesArgs = {
|
|
173946
174874
|
input: MercurySetFocusAreaCustomFieldsInput;
|
|
173947
174875
|
};
|
|
174876
|
+
export type MercuryMutationApiSetFocusAreaOrganizationLinksArgs = {
|
|
174877
|
+
input: MercurySetFocusAreaOrganizationLinksInput;
|
|
174878
|
+
};
|
|
173948
174879
|
export type MercuryMutationApiSetPreferenceArgs = {
|
|
173949
174880
|
input: MercurySetPreferenceInput;
|
|
173950
174881
|
};
|
|
@@ -173978,6 +174909,9 @@ export type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
|
173978
174909
|
export type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionVisibilityArgs = {
|
|
173979
174910
|
input: MercuryUpdateCustomFieldDefinitionVisibilityInput;
|
|
173980
174911
|
};
|
|
174912
|
+
export type MercuryMutationApiUpdateFocusAreaGlobalFieldConfigurationArgs = {
|
|
174913
|
+
input: MercuryUpdateFocusAreaGlobalFieldConfigurationInput;
|
|
174914
|
+
};
|
|
173981
174915
|
export type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
173982
174916
|
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
173983
174917
|
};
|
|
@@ -174113,6 +175047,10 @@ export declare enum MercuryNotificationChannel {
|
|
|
174113
175047
|
Email = "EMAIL",
|
|
174114
175048
|
InApp = "IN_APP"
|
|
174115
175049
|
}
|
|
175050
|
+
export declare enum MercuryNotificationEntityType {
|
|
175051
|
+
FocusArea = "FOCUS_AREA",
|
|
175052
|
+
Organization = "ORGANIZATION"
|
|
175053
|
+
}
|
|
174116
175054
|
export declare enum MercuryNotificationGroup {
|
|
174117
175055
|
Digest = "DIGEST",
|
|
174118
175056
|
RealTime = "REAL_TIME"
|
|
@@ -174157,7 +175095,7 @@ export type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition &
|
|
|
174157
175095
|
id: Scalars['ID']['output'];
|
|
174158
175096
|
name: Scalars['String']['output'];
|
|
174159
175097
|
scope: MercuryCustomFieldDefinitionScope;
|
|
174160
|
-
searchKey
|
|
175098
|
+
searchKey: Scalars['String']['output'];
|
|
174161
175099
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
174162
175100
|
updatedBy?: Maybe<User>;
|
|
174163
175101
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -174187,6 +175125,15 @@ export type MercuryOnboardingModelInput = {
|
|
|
174187
175125
|
formatVersion: Scalars['String']['input'];
|
|
174188
175126
|
model: Scalars['String']['input'];
|
|
174189
175127
|
};
|
|
175128
|
+
export type MercuryOnboardingValidationError = {
|
|
175129
|
+
__typename?: 'MercuryOnboardingValidationError';
|
|
175130
|
+
code: Scalars['String']['output'];
|
|
175131
|
+
column?: Maybe<Scalars['Int']['output']>;
|
|
175132
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
175133
|
+
line?: Maybe<Scalars['Int']['output']>;
|
|
175134
|
+
message: Scalars['String']['output'];
|
|
175135
|
+
nodeRef?: Maybe<Scalars['String']['output']>;
|
|
175136
|
+
};
|
|
174190
175137
|
export type MercuryOrganization = Node & {
|
|
174191
175138
|
__typename?: 'MercuryOrganization';
|
|
174192
175139
|
aboutContent: MercuryOrganizationAbout;
|
|
@@ -176101,6 +177048,7 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
176101
177048
|
};
|
|
176102
177049
|
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
176103
177050
|
cloudId: Scalars['ID']['input'];
|
|
177051
|
+
entityType?: MercuryNotificationEntityType;
|
|
176104
177052
|
};
|
|
176105
177053
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
176106
177054
|
cloudId: Scalars['ID']['input'];
|
|
@@ -176214,6 +177162,16 @@ export type MercuryRemainingEstimateCostAtCompletionByExpenditureType = {
|
|
|
176214
177162
|
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
176215
177163
|
total?: Maybe<MercuryMoney>;
|
|
176216
177164
|
};
|
|
177165
|
+
export type MercuryRemoveFocusAreaOrganizationLinksInput = {
|
|
177166
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
177167
|
+
organizationId: Scalars['ID']['input'];
|
|
177168
|
+
};
|
|
177169
|
+
export type MercuryRemoveFocusAreaOrganizationLinksPayload = Payload & {
|
|
177170
|
+
__typename?: 'MercuryRemoveFocusAreaOrganizationLinksPayload';
|
|
177171
|
+
errors?: Maybe<Array<MutationError>>;
|
|
177172
|
+
removedFocusAreaIds: Array<Scalars['ID']['output']>;
|
|
177173
|
+
success: Scalars['Boolean']['output'];
|
|
177174
|
+
};
|
|
176217
177175
|
export type MercuryRemoveOrganizationMembershipInput = {
|
|
176218
177176
|
id: Scalars['ID']['input'];
|
|
176219
177177
|
};
|
|
@@ -176872,6 +177830,16 @@ export type MercurySetFocusAreaCustomFieldsPayload = Payload & {
|
|
|
176872
177830
|
errors?: Maybe<Array<MutationError>>;
|
|
176873
177831
|
success: Scalars['Boolean']['output'];
|
|
176874
177832
|
};
|
|
177833
|
+
export type MercurySetFocusAreaOrganizationLinksInput = {
|
|
177834
|
+
focusAreaLinks: Array<MercuryFocusAreaOrganizationLinkInput>;
|
|
177835
|
+
organizationId: Scalars['ID']['input'];
|
|
177836
|
+
};
|
|
177837
|
+
export type MercurySetFocusAreaOrganizationLinksPayload = Payload & {
|
|
177838
|
+
__typename?: 'MercurySetFocusAreaOrganizationLinksPayload';
|
|
177839
|
+
errors?: Maybe<Array<MutationError>>;
|
|
177840
|
+
focusAreaLinks: Array<MercuryFocusAreaOrganizationLink>;
|
|
177841
|
+
success: Scalars['Boolean']['output'];
|
|
177842
|
+
};
|
|
176875
177843
|
export type MercurySetGlobalPlanAuthorityFocusAreaLevelInput = {
|
|
176876
177844
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
176877
177845
|
};
|
|
@@ -176977,7 +177945,7 @@ export type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
176977
177945
|
name: Scalars['String']['output'];
|
|
176978
177946
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
176979
177947
|
scope: MercuryCustomFieldDefinitionScope;
|
|
176980
|
-
searchKey
|
|
177948
|
+
searchKey: Scalars['String']['output'];
|
|
176981
177949
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
176982
177950
|
updatedBy?: Maybe<User>;
|
|
176983
177951
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -177013,7 +177981,7 @@ export type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinitio
|
|
|
177013
177981
|
id: Scalars['ID']['output'];
|
|
177014
177982
|
name: Scalars['String']['output'];
|
|
177015
177983
|
scope: MercuryCustomFieldDefinitionScope;
|
|
177016
|
-
searchKey
|
|
177984
|
+
searchKey: Scalars['String']['output'];
|
|
177017
177985
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
177018
177986
|
updatedBy?: Maybe<User>;
|
|
177019
177987
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -177589,7 +178557,7 @@ export type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & Me
|
|
|
177589
178557
|
id: Scalars['ID']['output'];
|
|
177590
178558
|
name: Scalars['String']['output'];
|
|
177591
178559
|
scope: MercuryCustomFieldDefinitionScope;
|
|
177592
|
-
searchKey
|
|
178560
|
+
searchKey: Scalars['String']['output'];
|
|
177593
178561
|
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
177594
178562
|
updatedBy?: Maybe<User>;
|
|
177595
178563
|
updatedDate: Scalars['DateTime']['output'];
|
|
@@ -177809,6 +178777,15 @@ export type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
|
177809
178777
|
errors?: Maybe<Array<MutationError>>;
|
|
177810
178778
|
success: Scalars['Boolean']['output'];
|
|
177811
178779
|
};
|
|
178780
|
+
export type MercuryUnlinkMilestoneFromFocusAreasInput = {
|
|
178781
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
178782
|
+
id: Scalars['ID']['input'];
|
|
178783
|
+
};
|
|
178784
|
+
export type MercuryUnlinkMilestoneFromFocusAreasPayload = Payload & {
|
|
178785
|
+
__typename?: 'MercuryUnlinkMilestoneFromFocusAreasPayload';
|
|
178786
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178787
|
+
success: Scalars['Boolean']['output'];
|
|
178788
|
+
};
|
|
177812
178789
|
export type MercuryUnlinkRiskFromFocusAreasInput = {
|
|
177813
178790
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
177814
178791
|
id: Scalars['ID']['input'];
|
|
@@ -178262,6 +179239,11 @@ export type MercuryUpdateFocusAreaBudgetPayload = Payload & {
|
|
|
178262
179239
|
success: Scalars['Boolean']['output'];
|
|
178263
179240
|
updatedFocusAreaBudget?: Maybe<MercuryFocusAreaBudget>;
|
|
178264
179241
|
};
|
|
179242
|
+
export type MercuryUpdateFocusAreaGlobalFieldConfigurationInput = {
|
|
179243
|
+
cloudId: Scalars['ID']['input'];
|
|
179244
|
+
searchKey: Scalars['ID']['input'];
|
|
179245
|
+
visible: Scalars['Boolean']['input'];
|
|
179246
|
+
};
|
|
178265
179247
|
export type MercuryUpdateFocusAreaHierarchyNameInput = {
|
|
178266
179248
|
id: Scalars['ID']['input'];
|
|
178267
179249
|
name: Scalars['String']['input'];
|
|
@@ -178356,6 +179338,24 @@ export type MercuryUpdateInvestmentCategoryPayload = Payload & {
|
|
|
178356
179338
|
success: Scalars['Boolean']['output'];
|
|
178357
179339
|
updatedInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
178358
179340
|
};
|
|
179341
|
+
export type MercuryUpdateMilestoneDescriptionInput = {
|
|
179342
|
+
description: Scalars['String']['input'];
|
|
179343
|
+
id: Scalars['ID']['input'];
|
|
179344
|
+
};
|
|
179345
|
+
export type MercuryUpdateMilestoneNameInput = {
|
|
179346
|
+
id: Scalars['ID']['input'];
|
|
179347
|
+
name: Scalars['String']['input'];
|
|
179348
|
+
};
|
|
179349
|
+
export type MercuryUpdateMilestonePayload = Payload & {
|
|
179350
|
+
__typename?: 'MercuryUpdateMilestonePayload';
|
|
179351
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179352
|
+
success: Scalars['Boolean']['output'];
|
|
179353
|
+
updatedMilestone?: Maybe<MercuryMilestone>;
|
|
179354
|
+
};
|
|
179355
|
+
export type MercuryUpdateMilestoneTargetDateInput = {
|
|
179356
|
+
id: Scalars['ID']['input'];
|
|
179357
|
+
targetDate?: InputMaybe<MercuryMilestoneTargetDateInput>;
|
|
179358
|
+
};
|
|
178359
179359
|
export type MercuryUpdateMoveFundsChangeInput = {
|
|
178360
179360
|
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmountInput>;
|
|
178361
179361
|
changeId: Scalars['ID']['input'];
|
|
@@ -178624,6 +179624,7 @@ export type MercuryUpdateThreadedCommentPayload = Payload & {
|
|
|
178624
179624
|
};
|
|
178625
179625
|
export type MercuryUpdateUserNotificationSettingsInput = {
|
|
178626
179626
|
cloudId: Scalars['ID']['input'];
|
|
179627
|
+
entityType?: MercuryNotificationEntityType;
|
|
178627
179628
|
preferences: Array<MercuryNotificationPreferenceInput>;
|
|
178628
179629
|
};
|
|
178629
179630
|
export type MercuryUpdateUserNotificationSettingsPayload = Payload & {
|
|
@@ -179383,6 +180384,7 @@ export type Mutation = {
|
|
|
179383
180384
|
archivePages?: Maybe<BulkArchivePagePayload>;
|
|
179384
180385
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
179385
180386
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
180387
|
+
artifact_authorContent?: Maybe<ArtifactAuthorContentPayload>;
|
|
179386
180388
|
artifact_createArtifact?: Maybe<ArtifactCreatePayload>;
|
|
179387
180389
|
artifact_createContent?: Maybe<ArtifactCreateContentPayload>;
|
|
179388
180390
|
assetsDM_addDataDictionary?: Maybe<AssetsDmAddDataDictionaryResponse>;
|
|
@@ -179588,6 +180590,7 @@ export type Mutation = {
|
|
|
179588
180590
|
commerceExp_gups?: Maybe<CommerceExpGupsMutation>;
|
|
179589
180591
|
commerceExp_notification?: Maybe<CommerceExpNotificationMutation>;
|
|
179590
180592
|
commerceExp_query?: Maybe<Query>;
|
|
180593
|
+
commerceExp_streamhub?: Maybe<CommerceExpStreamhubMutation>;
|
|
179591
180594
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
179592
180595
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
179593
180596
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
@@ -180111,6 +181114,7 @@ export type Mutation = {
|
|
|
180111
181114
|
graphIntegration_rbacDeleteRecord?: Maybe<GraphIntegrationRbacDeleteRecordPayload>;
|
|
180112
181115
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
180113
181116
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
181117
|
+
graphIntegration_setTwgProductToolAccessOverride?: Maybe<GraphIntegrationSetTwgProductToolAccessOverridePayload>;
|
|
180114
181118
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
180115
181119
|
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
180116
181120
|
graphIntegration_updateTwgProductAdminSettings?: Maybe<GraphIntegrationUpdateTwgProductAdminSettingsPayload>;
|
|
@@ -180270,6 +181274,7 @@ export type Mutation = {
|
|
|
180270
181274
|
gravity_addInlineComment?: Maybe<GravityDraftPayload>;
|
|
180271
181275
|
gravity_addReaction?: Maybe<GravityAddReactionPayload>;
|
|
180272
181276
|
gravity_applyDraft?: Maybe<GravityDraftPayload>;
|
|
181277
|
+
gravity_cloneView?: Maybe<JpdView>;
|
|
180273
181278
|
gravity_createDraft?: Maybe<GravityDraftPayload>;
|
|
180274
181279
|
gravity_createView?: Maybe<JpdView>;
|
|
180275
181280
|
gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
|
|
@@ -180658,6 +181663,7 @@ export type Mutation = {
|
|
|
180658
181663
|
mercury_duplicateAsk?: Maybe<MercuryDuplicateAskPayload>;
|
|
180659
181664
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
180660
181665
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
181666
|
+
mercury_milestones?: Maybe<MercuryMilestonesMutationApi>;
|
|
180661
181667
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
180662
181668
|
mercury_plans?: Maybe<MercuryPlansMutationApi>;
|
|
180663
181669
|
mercury_promoteWorkItemToImpactedWork?: Maybe<MercuryUpsertAskPayload>;
|
|
@@ -180711,6 +181717,7 @@ export type Mutation = {
|
|
|
180711
181717
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
180712
181718
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
180713
181719
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
181720
|
+
playbook_addHypothesisMitigationPlanStep?: Maybe<AddHypothesisMitigationPlanStepPayload>;
|
|
180714
181721
|
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
180715
181722
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
180716
181723
|
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
@@ -180720,6 +181727,7 @@ export type Mutation = {
|
|
|
180720
181727
|
playbook_generateHypothesisMitigation?: Maybe<GenerateHypothesisMitigationPayload>;
|
|
180721
181728
|
playbook_rejectIndicator?: Maybe<RejectIndicatorPayload>;
|
|
180722
181729
|
playbook_rejectPlan?: Maybe<RejectPlanPayload>;
|
|
181730
|
+
playbook_removeHypothesisMitigationPlanStep?: Maybe<RemoveHypothesisMitigationPlanStepPayload>;
|
|
180723
181731
|
playbook_toggleChecklistItem?: Maybe<ToggleChecklistItemPayload>;
|
|
180724
181732
|
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
180725
181733
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
@@ -180728,6 +181736,7 @@ export type Mutation = {
|
|
|
180728
181736
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
180729
181737
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
180730
181738
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
181739
|
+
proactiveAi_userActionFeedback?: Maybe<ProactiveAiUserActionItemFeedbackPayload>;
|
|
180731
181740
|
processCombinedAppBuild?: Maybe<ProcessCombinedAppBuildResponse>;
|
|
180732
181741
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
180733
181742
|
projects_addJiraWorkItemLink?: Maybe<TownsquareProjectsAddJiraWorkItemLinkPayload>;
|
|
@@ -181680,6 +182689,9 @@ export type MutationArchivePolarisInsightsArgs = {
|
|
|
181680
182689
|
export type MutationArchiveSpaceArgs = {
|
|
181681
182690
|
input: ArchiveSpaceInput;
|
|
181682
182691
|
};
|
|
182692
|
+
export type MutationArtifact_AuthorContentArgs = {
|
|
182693
|
+
input: ArtifactAuthorContentInput;
|
|
182694
|
+
};
|
|
181683
182695
|
export type MutationArtifact_CreateArtifactArgs = {
|
|
181684
182696
|
input: ArtifactCreateInput;
|
|
181685
182697
|
};
|
|
@@ -184332,6 +185344,9 @@ export type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
|
184332
185344
|
export type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdminSettingArgs = {
|
|
184333
185345
|
input: GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput;
|
|
184334
185346
|
};
|
|
185347
|
+
export type MutationGraphIntegration_SetTwgProductToolAccessOverrideArgs = {
|
|
185348
|
+
input: GraphIntegrationSetTwgProductToolAccessOverrideInput;
|
|
185349
|
+
};
|
|
184335
185350
|
export type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
184336
185351
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
184337
185352
|
};
|
|
@@ -184807,6 +185822,10 @@ export type MutationGravity_ApplyDraftArgs = {
|
|
|
184807
185822
|
cloudId: Scalars['ID']['input'];
|
|
184808
185823
|
input: GravityApplyDraftInput;
|
|
184809
185824
|
};
|
|
185825
|
+
export type MutationGravity_CloneViewArgs = {
|
|
185826
|
+
cloudId: Scalars['ID']['input'];
|
|
185827
|
+
input: JpdCloneViewInput;
|
|
185828
|
+
};
|
|
184810
185829
|
export type MutationGravity_CreateDraftArgs = {
|
|
184811
185830
|
cloudId: Scalars['ID']['input'];
|
|
184812
185831
|
input: GravityCreateDraftInput;
|
|
@@ -186292,6 +187311,9 @@ export type MutationPlanModeCardCreateArgs = {
|
|
|
186292
187311
|
export type MutationPlanModeCardMoveArgs = {
|
|
186293
187312
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
186294
187313
|
};
|
|
187314
|
+
export type MutationPlaybook_AddHypothesisMitigationPlanStepArgs = {
|
|
187315
|
+
input: AddHypothesisMitigationPlanStepInput;
|
|
187316
|
+
};
|
|
186295
187317
|
export type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
186296
187318
|
labelId: Scalars['ID']['input'];
|
|
186297
187319
|
playbookId: Scalars['ID']['input'];
|
|
@@ -186320,6 +187342,9 @@ export type MutationPlaybook_RejectIndicatorArgs = {
|
|
|
186320
187342
|
export type MutationPlaybook_RejectPlanArgs = {
|
|
186321
187343
|
input: RejectPlanInput;
|
|
186322
187344
|
};
|
|
187345
|
+
export type MutationPlaybook_RemoveHypothesisMitigationPlanStepArgs = {
|
|
187346
|
+
input: RemoveHypothesisMitigationPlanStepInput;
|
|
187347
|
+
};
|
|
186323
187348
|
export type MutationPlaybook_ToggleChecklistItemArgs = {
|
|
186324
187349
|
input: ToggleChecklistItemInput;
|
|
186325
187350
|
};
|
|
@@ -186345,6 +187370,12 @@ export type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
|
186345
187370
|
export type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
186346
187371
|
input: UpdateJiraPlaybookStateInput;
|
|
186347
187372
|
};
|
|
187373
|
+
export type MutationProactiveAi_UserActionFeedbackArgs = {
|
|
187374
|
+
actionItemId: Scalars['ID']['input'];
|
|
187375
|
+
cloudId: Scalars['ID']['input'];
|
|
187376
|
+
experience: Scalars['String']['input'];
|
|
187377
|
+
reaction: ProactiveAiUserActionItemFeedbackReaction;
|
|
187378
|
+
};
|
|
186348
187379
|
export type MutationProcessCombinedAppBuildArgs = {
|
|
186349
187380
|
input: ProcessCombinedAppBuildInput;
|
|
186350
187381
|
};
|
|
@@ -189954,6 +190985,14 @@ export type ProactiveAiUserActionItemEvidence = {
|
|
|
189954
190985
|
confidence: Scalars['Float']['output'];
|
|
189955
190986
|
url: Scalars['String']['output'];
|
|
189956
190987
|
};
|
|
190988
|
+
export type ProactiveAiUserActionItemFeedbackPayload = Payload & {
|
|
190989
|
+
__typename?: 'ProactiveAiUserActionItemFeedbackPayload';
|
|
190990
|
+
errors?: Maybe<Array<MutationError>>;
|
|
190991
|
+
success: Scalars['Boolean']['output'];
|
|
190992
|
+
};
|
|
190993
|
+
export declare enum ProactiveAiUserActionItemFeedbackReaction {
|
|
190994
|
+
Dismiss = "DISMISS"
|
|
190995
|
+
}
|
|
189957
190996
|
export type ProactiveAiUserActionItemHandoff = {
|
|
189958
190997
|
__typename?: 'ProactiveAiUserActionItemHandoff';
|
|
189959
190998
|
goal: Scalars['String']['output'];
|
|
@@ -190118,7 +191157,6 @@ export type PsmAuditActor = {
|
|
|
190118
191157
|
};
|
|
190119
191158
|
export type PsmAuditDevice = {
|
|
190120
191159
|
__typename?: 'PsmAuditDevice';
|
|
190121
|
-
deviceId: Scalars['ID']['output'];
|
|
190122
191160
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
190123
191161
|
serialNumber: Scalars['String']['output'];
|
|
190124
191162
|
};
|
|
@@ -190136,28 +191174,42 @@ export type PsmAuditLogEdge = {
|
|
|
190136
191174
|
};
|
|
190137
191175
|
export type PsmAuditLogEntry = {
|
|
190138
191176
|
__typename?: 'PsmAuditLogEntry';
|
|
190139
|
-
device
|
|
191177
|
+
device?: Maybe<PsmAuditDevice>;
|
|
190140
191178
|
id: Scalars['ID']['output'];
|
|
190141
|
-
|
|
190142
|
-
remediationName: Scalars['String']['output'];
|
|
190143
|
-
result: PsmRemediationResult;
|
|
191179
|
+
result?: Maybe<PsmRemediationResult>;
|
|
190144
191180
|
sensorName: Scalars['String']['output'];
|
|
191181
|
+
status?: Maybe<PsmAuditStatus>;
|
|
190145
191182
|
timestamp: Scalars['DateTime']['output'];
|
|
190146
191183
|
triggerType: PsmRemediationTrigger;
|
|
190147
191184
|
triggeredBy?: Maybe<PsmAuditActor>;
|
|
190148
191185
|
};
|
|
190149
191186
|
export type PsmAuditLogFilter = {
|
|
191187
|
+
actorAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190150
191188
|
dateRange?: InputMaybe<PsmDateRangeInput>;
|
|
190151
191189
|
deviceSerialNumber?: InputMaybe<Scalars['String']['input']>;
|
|
191190
|
+
remediationTypes?: InputMaybe<Array<PsmRemediationCategory>>;
|
|
190152
191191
|
results?: InputMaybe<Array<PsmRemediationResult>>;
|
|
190153
|
-
|
|
190154
|
-
|
|
191192
|
+
sensorNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
191193
|
+
statuses?: InputMaybe<Array<PsmAuditStatus>>;
|
|
191194
|
+
timeWindow?: InputMaybe<PsmAuditTimeWindow>;
|
|
190155
191195
|
triggerTypes?: InputMaybe<Array<PsmRemediationTrigger>>;
|
|
190156
191196
|
};
|
|
190157
191197
|
export declare enum PsmAuditLogOrder {
|
|
190158
191198
|
TimestampAsc = "TIMESTAMP_ASC",
|
|
190159
191199
|
TimestampDesc = "TIMESTAMP_DESC"
|
|
190160
191200
|
}
|
|
191201
|
+
export declare enum PsmAuditStatus {
|
|
191202
|
+
RemediationFailed = "REMEDIATION_FAILED",
|
|
191203
|
+
RemediationNotApproved = "REMEDIATION_NOT_APPROVED",
|
|
191204
|
+
RemediationSucceeded = "REMEDIATION_SUCCEEDED"
|
|
191205
|
+
}
|
|
191206
|
+
export declare enum PsmAuditTimeWindow {
|
|
191207
|
+
Custom = "CUSTOM",
|
|
191208
|
+
Last_4Hours = "LAST_4_HOURS",
|
|
191209
|
+
Last_7Days = "LAST_7_DAYS",
|
|
191210
|
+
Last_24Hours = "LAST_24_HOURS",
|
|
191211
|
+
Last_30Days = "LAST_30_DAYS"
|
|
191212
|
+
}
|
|
190161
191213
|
export declare enum PsmConsentResponse {
|
|
190162
191214
|
Approve = "APPROVE",
|
|
190163
191215
|
Deny = "DENY"
|
|
@@ -190384,9 +191436,16 @@ export declare enum PsmEventDirective {
|
|
|
190384
191436
|
ShowConversation = "SHOW_CONVERSATION",
|
|
190385
191437
|
UpdateConversation = "UPDATE_CONVERSATION"
|
|
190386
191438
|
}
|
|
191439
|
+
export declare enum PsmExecutionOutcome {
|
|
191440
|
+
Failed = "FAILED",
|
|
191441
|
+
Skipped = "SKIPPED",
|
|
191442
|
+
Succeeded = "SUCCEEDED"
|
|
191443
|
+
}
|
|
190387
191444
|
export declare enum PsmFaultStatus {
|
|
190388
191445
|
Closed = "CLOSED",
|
|
191446
|
+
Failed = "FAILED",
|
|
190389
191447
|
Offline = "OFFLINE",
|
|
191448
|
+
Open = "OPEN",
|
|
190390
191449
|
Queued = "QUEUED"
|
|
190391
191450
|
}
|
|
190392
191451
|
export type PsmFaultStatusEntry = {
|
|
@@ -190445,16 +191504,21 @@ export type PsmFleetHealth = {
|
|
|
190445
191504
|
export type PsmIngestSensorEventInput = {
|
|
190446
191505
|
accountId: Scalars['ID']['input'];
|
|
190447
191506
|
actor: PsmEventActor;
|
|
191507
|
+
attemptNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
191508
|
+
attemptsUsed?: InputMaybe<Scalars['Int']['input']>;
|
|
190448
191509
|
consentResponse?: InputMaybe<PsmConsentResponse>;
|
|
190449
191510
|
deviceId: Scalars['ID']['input'];
|
|
190450
191511
|
event: PsmSensorEventType;
|
|
190451
191512
|
eventId: Scalars['ID']['input'];
|
|
191513
|
+
failureReason?: InputMaybe<Scalars['String']['input']>;
|
|
190452
191514
|
notificationId: Scalars['ID']['input'];
|
|
190453
191515
|
occurredAt: Scalars['DateTime']['input'];
|
|
190454
|
-
|
|
190455
|
-
|
|
191516
|
+
outcome?: InputMaybe<PsmExecutionOutcome>;
|
|
191517
|
+
remediationId?: InputMaybe<Scalars['ID']['input']>;
|
|
191518
|
+
sensorId?: InputMaybe<Scalars['ID']['input']>;
|
|
190456
191519
|
sequence: Scalars['Int']['input'];
|
|
190457
191520
|
version?: InputMaybe<Scalars['Int']['input']>;
|
|
191521
|
+
willRetry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
190458
191522
|
};
|
|
190459
191523
|
export type PsmIngestSensorEventPayload = Payload & {
|
|
190460
191524
|
__typename?: 'PsmIngestSensorEventPayload';
|
|
@@ -190473,12 +191537,6 @@ export type PsmLinkSensorKbArticlesPayload = Payload & {
|
|
|
190473
191537
|
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
190474
191538
|
success: Scalars['Boolean']['output'];
|
|
190475
191539
|
};
|
|
190476
|
-
export type PsmLinkedTicket = {
|
|
190477
|
-
__typename?: 'PsmLinkedTicket';
|
|
190478
|
-
issueId: Scalars['ID']['output'];
|
|
190479
|
-
issueKey: Scalars['String']['output'];
|
|
190480
|
-
url: Scalars['URL']['output'];
|
|
190481
|
-
};
|
|
190482
191540
|
export declare enum PsmMessageType {
|
|
190483
191541
|
Markdown = "MARKDOWN",
|
|
190484
191542
|
Ticket = "TICKET"
|
|
@@ -190748,12 +191806,13 @@ export declare enum PsmSensorEventType {
|
|
|
190748
191806
|
ConsentRequested = "CONSENT_REQUESTED",
|
|
190749
191807
|
ConsentResponded = "CONSENT_RESPONDED",
|
|
190750
191808
|
Executed = "EXECUTED",
|
|
190751
|
-
|
|
191809
|
+
ExecutionAttemptCompleted = "EXECUTION_ATTEMPT_COMPLETED",
|
|
191810
|
+
ExecutionAttemptStarted = "EXECUTION_ATTEMPT_STARTED",
|
|
190752
191811
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
190753
|
-
ExecutionStarted = "EXECUTION_STARTED",
|
|
190754
191812
|
Lagged = "LAGGED",
|
|
190755
191813
|
Shutdown = "SHUTDOWN",
|
|
190756
191814
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
191815
|
+
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
190757
191816
|
WithdrawStale = "WITHDRAW_STALE",
|
|
190758
191817
|
WithdrawSuperseded = "WITHDRAW_SUPERSEDED",
|
|
190759
191818
|
WithdrawSystemShutdown = "WITHDRAW_SYSTEM_SHUTDOWN"
|
|
@@ -190847,12 +191906,13 @@ export type PsmTriggerRemediationPayload = Payload & {
|
|
|
190847
191906
|
export type PsmTriggeredSensor = {
|
|
190848
191907
|
__typename?: 'PsmTriggeredSensor';
|
|
190849
191908
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
190850
|
-
|
|
191909
|
+
providerSensorId: Scalars['ID']['output'];
|
|
190851
191910
|
sensorName?: Maybe<Scalars['String']['output']>;
|
|
190852
191911
|
severity?: Maybe<PsmSensorSeverity>;
|
|
190853
191912
|
};
|
|
190854
191913
|
export type PsmTriggeredSensorsList = {
|
|
190855
191914
|
__typename?: 'PsmTriggeredSensorsList';
|
|
191915
|
+
errors?: Maybe<Array<QueryError>>;
|
|
190856
191916
|
sensors?: Maybe<Array<PsmTriggeredSensor>>;
|
|
190857
191917
|
};
|
|
190858
191918
|
export type PsmUpdateSensorEnablementInput = {
|
|
@@ -190979,6 +192039,7 @@ export declare enum PublicLinkPermissionsObjectType {
|
|
|
190979
192039
|
}
|
|
190980
192040
|
export declare enum PublicLinkPermissionsType {
|
|
190981
192041
|
Edit = "EDIT",
|
|
192042
|
+
View = "VIEW",
|
|
190982
192043
|
ViewAndComment = "VIEW_AND_COMMENT"
|
|
190983
192044
|
}
|
|
190984
192045
|
export type PublicLinkPerson = {
|
|
@@ -191301,6 +192362,7 @@ export type Query = {
|
|
|
191301
192362
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
191302
192363
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
191303
192364
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
192365
|
+
agentStudio_widgetReferenceByContainerAri?: Maybe<AgentStudioWidgetReferenceByContainerAriResult>;
|
|
191304
192366
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
191305
192367
|
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
191306
192368
|
agentWorkspace_agentRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
@@ -191422,6 +192484,9 @@ export type Query = {
|
|
|
191422
192484
|
apps?: Maybe<AppConnection>;
|
|
191423
192485
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
191424
192486
|
artifact_getArtifact?: Maybe<Artifact>;
|
|
192487
|
+
artifact_getAuthoringCatalog?: Maybe<ArtifactAuthoringCatalog>;
|
|
192488
|
+
artifact_getAuthoringGuidance?: Maybe<Scalars['String']['output']>;
|
|
192489
|
+
artifact_getDesignTokens?: Maybe<ArtifactTokenReference>;
|
|
191425
192490
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
191426
192491
|
assetsDM_advisoryNotifications?: Maybe<AssetsDmAdvisoryNotificationsResponse>;
|
|
191427
192492
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
@@ -191681,6 +192746,7 @@ export type Query = {
|
|
|
191681
192746
|
commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
|
|
191682
192747
|
commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
|
|
191683
192748
|
commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
|
|
192749
|
+
commerceExp_poe?: Maybe<CommerceExpPoeQuery>;
|
|
191684
192750
|
commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
|
|
191685
192751
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
191686
192752
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
@@ -191718,6 +192784,7 @@ export type Query = {
|
|
|
191718
192784
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
191719
192785
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
191720
192786
|
confluence_contentTreeChildren?: Maybe<ConfluenceContentTreeItemConnection>;
|
|
192787
|
+
confluence_contentVersionSnapshot?: Maybe<ConfluenceContentVersionSnapshot>;
|
|
191721
192788
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
191722
192789
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
191723
192790
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -192005,6 +193072,7 @@ export type Query = {
|
|
|
192005
193072
|
devai_autodevNextGlobalDashboard?: Maybe<DevAiAutodevNextGlobalDashboard>;
|
|
192006
193073
|
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
192007
193074
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
193075
|
+
devai_autodevNextNudgePreview?: Maybe<DevAiAutodevNextNudgePreview>;
|
|
192008
193076
|
devai_autodevNextSharedProjectPolicies?: Maybe<DevAiAutodevNextSharedProjectPolicyConnection>;
|
|
192009
193077
|
devai_autodevNextSharedProjectPolicyHistory?: Maybe<DevAiAutodevNextSharedProjectPolicyHistory>;
|
|
192010
193078
|
devai_autodevNextSuggestedClassificationRepositories?: Maybe<DevAiAutodevNextSuggestedClassificationRepositoryConnection>;
|
|
@@ -194367,6 +195435,7 @@ export type Query = {
|
|
|
194367
195435
|
gravity_exportViewAsTemplate?: Maybe<GravityExportViewAsTemplateResult>;
|
|
194368
195436
|
gravity_importIdeas: GravityImportIdeasResult;
|
|
194369
195437
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
195438
|
+
gravity_onViewArrangementChanged?: Maybe<GravityViewArrangementChangedEvent>;
|
|
194370
195439
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
194371
195440
|
gravity_view?: Maybe<JpdView>;
|
|
194372
195441
|
gravity_viewArrangement?: Maybe<GravityViewArrangement>;
|
|
@@ -194545,6 +195614,7 @@ export type Query = {
|
|
|
194545
195614
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
194546
195615
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
194547
195616
|
jsmTelemetry_providerConnectionSchema?: Maybe<JsmTelemetryProviderConnectionSchemaResult>;
|
|
195617
|
+
jsmTelemetry_runTelemetryQuery?: Maybe<JsmTelemetryQueryResult>;
|
|
194548
195618
|
jsmTelemetry_searchMetrics?: Maybe<JsmTelemetryMetricSearchResult>;
|
|
194549
195619
|
jsmTelemetry_suggestMetrics?: Maybe<JsmTelemetryMetricSuggestionResult>;
|
|
194550
195620
|
jsmTelemetry_telemetryServiceInfo?: Maybe<JsmTelemetryServiceInfo>;
|
|
@@ -194691,6 +195761,7 @@ export type Query = {
|
|
|
194691
195761
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
194692
195762
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
194693
195763
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
195764
|
+
mercury_milestones?: Maybe<MercuryMilestonesQueryApi>;
|
|
194694
195765
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
194695
195766
|
mercury_organizations?: Maybe<MercuryOrganizationsQueryApi>;
|
|
194696
195767
|
mercury_plans?: Maybe<MercuryPlansQueryApi>;
|
|
@@ -195016,6 +196087,7 @@ export type Query = {
|
|
|
195016
196087
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
195017
196088
|
statusUpdates_byTag?: Maybe<TownsquareUpdateConnection>;
|
|
195018
196089
|
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
196090
|
+
statusUpdates_followedTeams?: Maybe<TownsquareTeamConnection>;
|
|
195019
196091
|
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
195020
196092
|
statusUpdates_watchedTags?: Maybe<TownsquareTagConnection>;
|
|
195021
196093
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
@@ -195807,6 +196879,10 @@ export type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
195807
196879
|
cloudId: Scalars['String']['input'];
|
|
195808
196880
|
containerAri: Scalars['ID']['input'];
|
|
195809
196881
|
};
|
|
196882
|
+
export type QueryAgentStudio_WidgetReferenceByContainerAriArgs = {
|
|
196883
|
+
cloudId: Scalars['String']['input'];
|
|
196884
|
+
containerAri: Scalars['ID']['input'];
|
|
196885
|
+
};
|
|
195810
196886
|
export type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
195811
196887
|
cloudId: Scalars['ID']['input'];
|
|
195812
196888
|
};
|
|
@@ -196409,6 +197485,15 @@ export type QueryAquaOutgoingEmailLogsArgs = {
|
|
|
196409
197485
|
export type QueryArtifact_GetArtifactArgs = {
|
|
196410
197486
|
input: ArtifactGetInput;
|
|
196411
197487
|
};
|
|
197488
|
+
export type QueryArtifact_GetAuthoringCatalogArgs = {
|
|
197489
|
+
input: ArtifactAuthoringCatalogInput;
|
|
197490
|
+
};
|
|
197491
|
+
export type QueryArtifact_GetAuthoringGuidanceArgs = {
|
|
197492
|
+
input: ArtifactAuthoringGuidanceInput;
|
|
197493
|
+
};
|
|
197494
|
+
export type QueryArtifact_GetDesignTokensArgs = {
|
|
197495
|
+
input: ArtifactDesignTokensInput;
|
|
197496
|
+
};
|
|
196412
197497
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
196413
197498
|
cloudId: Scalars['ID']['input'];
|
|
196414
197499
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -197188,6 +198273,7 @@ export type QueryAvp_GetDashboardsByStatusArgs = {
|
|
|
197188
198273
|
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
197189
198274
|
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
197190
198275
|
first: Scalars['Int']['input'];
|
|
198276
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
197191
198277
|
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197192
198278
|
status: AvpDashboardStatus;
|
|
197193
198279
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -197605,6 +198691,9 @@ export type QueryCommerceExp_PlsArgs = {
|
|
|
197605
198691
|
export type QueryCommerceExp_PoaQueryArgs = {
|
|
197606
198692
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
197607
198693
|
};
|
|
198694
|
+
export type QueryCommerceExp_PoeArgs = {
|
|
198695
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
198696
|
+
};
|
|
197608
198697
|
export type QueryCommerceExp_TaasArgs = {
|
|
197609
198698
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
197610
198699
|
};
|
|
@@ -197799,6 +198888,11 @@ export type QueryConfluence_ContentTreeChildrenArgs = {
|
|
|
197799
198888
|
status?: InputMaybe<Array<InputMaybe<PtGraphQlPageStatus>>>;
|
|
197800
198889
|
type: ConfluenceContentTypeFilter;
|
|
197801
198890
|
};
|
|
198891
|
+
export type QueryConfluence_ContentVersionSnapshotArgs = {
|
|
198892
|
+
cloudId: Scalars['ID']['input'];
|
|
198893
|
+
contentId: Scalars['ID']['input'];
|
|
198894
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
198895
|
+
};
|
|
197802
198896
|
export type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
197803
198897
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
197804
198898
|
cloudId: Scalars['ID']['input'];
|
|
@@ -199192,6 +200286,11 @@ export type QueryDevai_AutodevNextMyWorkItemsArgs = {
|
|
|
199192
200286
|
state?: InputMaybe<DevAiAutodevNextWorkItemState>;
|
|
199193
200287
|
workstreamId?: InputMaybe<Scalars['ID']['input']>;
|
|
199194
200288
|
};
|
|
200289
|
+
export type QueryDevai_AutodevNextNudgePreviewArgs = {
|
|
200290
|
+
cloudId: Scalars['ID']['input'];
|
|
200291
|
+
requestScope: DevAiAutodevNextNudgeRequestScope;
|
|
200292
|
+
workstreamId: Scalars['ID']['input'];
|
|
200293
|
+
};
|
|
199195
200294
|
export type QueryDevai_AutodevNextSharedProjectPoliciesArgs = {
|
|
199196
200295
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199197
200296
|
cloudId: Scalars['ID']['input'];
|
|
@@ -199442,8 +200541,8 @@ export type QueryDlp_GetFalsePositivesArgs = {
|
|
|
199442
200541
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
199443
200542
|
};
|
|
199444
200543
|
export type QueryDlp_GetFindingsArgs = {
|
|
199445
|
-
|
|
199446
|
-
|
|
200544
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
200545
|
+
filters?: InputMaybe<DlpFindingsFiltersInput>;
|
|
199447
200546
|
orgId: Scalars['String']['input'];
|
|
199448
200547
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
199449
200548
|
scope?: InputMaybe<DlpScopeInput>;
|
|
@@ -216129,6 +217228,10 @@ export type QueryGravity_MatchDeliveryArgs = {
|
|
|
216129
217228
|
cloudId: Scalars['ID']['input'];
|
|
216130
217229
|
input: GravityMatchDeliveryInput;
|
|
216131
217230
|
};
|
|
217231
|
+
export type QueryGravity_OnViewArrangementChangedArgs = {
|
|
217232
|
+
cloudId: Scalars['ID']['input'];
|
|
217233
|
+
containerId: Scalars['ID']['input'];
|
|
217234
|
+
};
|
|
216132
217235
|
export type QueryGravity_ReactionsArgs = {
|
|
216133
217236
|
cloudId: Scalars['ID']['input'];
|
|
216134
217237
|
input: GravityGetReactionsInput;
|
|
@@ -216889,6 +217992,11 @@ export type QueryJsmTelemetry_ProviderConnectionSchemaArgs = {
|
|
|
216889
217992
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
216890
217993
|
input: JsmTelemetryProviderConnectionSchemaInput;
|
|
216891
217994
|
};
|
|
217995
|
+
export type QueryJsmTelemetry_RunTelemetryQueryArgs = {
|
|
217996
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
217997
|
+
input: JsmTelemetryQueryInput;
|
|
217998
|
+
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
217999
|
+
};
|
|
216892
218000
|
export type QueryJsmTelemetry_SearchMetricsArgs = {
|
|
216893
218001
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
216894
218002
|
incidentId: Scalars['ID']['input'];
|
|
@@ -217889,7 +218997,10 @@ export type QueryPsm_SensorsArgs = {
|
|
|
217889
218997
|
};
|
|
217890
218998
|
export type QueryPsm_TriggeredSensorsArgs = {
|
|
217891
218999
|
cloudId: Scalars['ID']['input'];
|
|
219000
|
+
dateRange?: InputMaybe<PsmDateRangeInput>;
|
|
219001
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
217892
219002
|
spaceId: Scalars['ID']['input'];
|
|
219003
|
+
timeWindow?: PsmTimeWindow;
|
|
217893
219004
|
};
|
|
217894
219005
|
export type QueryPtpageArgs = {
|
|
217895
219006
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -218765,6 +219876,11 @@ export type QueryStatusUpdates_ByTeamArgs = {
|
|
|
218765
219876
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
218766
219877
|
teamId: Scalars['ID']['input'];
|
|
218767
219878
|
};
|
|
219879
|
+
export type QueryStatusUpdates_FollowedTeamsArgs = {
|
|
219880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
219881
|
+
containerId: Scalars['ID']['input'];
|
|
219882
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
219883
|
+
};
|
|
218768
219884
|
export type QueryStatusUpdates_ForSavedViewArgs = {
|
|
218769
219885
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
218770
219886
|
containerId: Scalars['ID']['input'];
|
|
@@ -220629,6 +221745,15 @@ export type RemoveGroupSpacePermissionsInput = {
|
|
|
220629
221745
|
groupNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
220630
221746
|
spaceKey: Scalars['String']['input'];
|
|
220631
221747
|
};
|
|
221748
|
+
export type RemoveHypothesisMitigationPlanStepInput = {
|
|
221749
|
+
stepId: Scalars['ID']['input'];
|
|
221750
|
+
};
|
|
221751
|
+
export type RemoveHypothesisMitigationPlanStepPayload = Payload & {
|
|
221752
|
+
__typename?: 'RemoveHypothesisMitigationPlanStepPayload';
|
|
221753
|
+
errors?: Maybe<Array<MutationError>>;
|
|
221754
|
+
removedStepId?: Maybe<Scalars['ID']['output']>;
|
|
221755
|
+
success: Scalars['Boolean']['output'];
|
|
221756
|
+
};
|
|
220632
221757
|
export type RemovePublicLinkPermissionsInput = {
|
|
220633
221758
|
objectId: Scalars['ID']['input'];
|
|
220634
221759
|
objectType: PublicLinkPermissionsObjectType;
|
|
@@ -221996,6 +223121,7 @@ export declare enum Scope {
|
|
|
221996
223121
|
ReadStakeholderCommsPage = "READ_STAKEHOLDER_COMMS_PAGE",
|
|
221997
223122
|
ReadStakeholderCommsStakeholder = "READ_STAKEHOLDER_COMMS_STAKEHOLDER",
|
|
221998
223123
|
ReadStakeholderCommsSubscriber = "READ_STAKEHOLDER_COMMS_SUBSCRIBER",
|
|
223124
|
+
ReadTalentAgentInterface = "READ_TALENT_AGENT_INTERFACE",
|
|
221999
223125
|
ReadTeam = "READ_TEAM",
|
|
222000
223126
|
ReadTeamworkGraphTwgCli = "READ_TEAMWORK_GRAPH_TWG_CLI",
|
|
222001
223127
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
@@ -222162,6 +223288,7 @@ export declare enum Scope {
|
|
|
222162
223288
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
222163
223289
|
WriteStakeholderCommsStakeholder = "WRITE_STAKEHOLDER_COMMS_STAKEHOLDER",
|
|
222164
223290
|
WriteStakeholderCommsSubscriber = "WRITE_STAKEHOLDER_COMMS_SUBSCRIBER",
|
|
223291
|
+
WriteTalentAgentInterface = "WRITE_TALENT_AGENT_INTERFACE",
|
|
222165
223292
|
WriteTeam = "WRITE_TEAM",
|
|
222166
223293
|
WriteTeamMembersTemp = "WRITE_TEAM_MEMBERS_TEMP",
|
|
222167
223294
|
WriteTeamTemp = "WRITE_TEAM_TEMP",
|
|
@@ -223760,6 +224887,7 @@ export type SearchThirdPartyMetadata = {
|
|
|
223760
224887
|
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
223761
224888
|
entityTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
223762
224889
|
environmentType?: Maybe<Scalars['String']['output']>;
|
|
224890
|
+
hasAuthUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
223763
224891
|
integrationARI: Scalars['String']['output'];
|
|
223764
224892
|
isImpersonationAuthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
223765
224893
|
isUserOAuthed: Scalars['Boolean']['output'];
|
|
@@ -224581,6 +225709,7 @@ export type ShepherdAlertSnippet = {
|
|
|
224581
225709
|
field: Scalars['String']['output'];
|
|
224582
225710
|
redactable: Scalars['Boolean']['output'];
|
|
224583
225711
|
redactedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
225712
|
+
redactionId?: Maybe<Scalars['ID']['output']>;
|
|
224584
225713
|
redactionStatus: ShepherdAlertSnippetRedactionStatus;
|
|
224585
225714
|
snippetTextBlocks?: Maybe<Array<ShepherdAlertSnippetTextBlock>>;
|
|
224586
225715
|
};
|
|
@@ -233047,7 +234176,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
233047
234176
|
Create = "CREATE"
|
|
233048
234177
|
}
|
|
233049
234178
|
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
233050
|
-
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetCreatedChange | TownsquareMetricTargetDeletedChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricTargetUpdatedChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
234179
|
+
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalDescriptionMeasurementUpdatedChange | TownsquareGoalDescriptionUpdatedChange | TownsquareGoalDescriptionWhyUpdatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetCreatedChange | TownsquareMetricTargetDeletedChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricTargetUpdatedChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
233051
234180
|
export type TownsquareActivityItem = {
|
|
233052
234181
|
__typename?: 'TownsquareActivityItem';
|
|
233053
234182
|
actor?: Maybe<User>;
|
|
@@ -233834,6 +234963,21 @@ export type TownsquareGoalCreatedChange = {
|
|
|
233834
234963
|
goalName?: Maybe<Scalars['String']['output']>;
|
|
233835
234964
|
goalType?: Maybe<TownsquareGoalType>;
|
|
233836
234965
|
};
|
|
234966
|
+
export type TownsquareGoalDescriptionMeasurementUpdatedChange = {
|
|
234967
|
+
__typename?: 'TownsquareGoalDescriptionMeasurementUpdatedChange';
|
|
234968
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
234969
|
+
newDescriptionMeasurement?: Maybe<Scalars['String']['output']>;
|
|
234970
|
+
};
|
|
234971
|
+
export type TownsquareGoalDescriptionUpdatedChange = {
|
|
234972
|
+
__typename?: 'TownsquareGoalDescriptionUpdatedChange';
|
|
234973
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
234974
|
+
newDescription?: Maybe<Scalars['String']['output']>;
|
|
234975
|
+
};
|
|
234976
|
+
export type TownsquareGoalDescriptionWhyUpdatedChange = {
|
|
234977
|
+
__typename?: 'TownsquareGoalDescriptionWhyUpdatedChange';
|
|
234978
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
234979
|
+
newDescriptionWhy?: Maybe<Scalars['String']['output']>;
|
|
234980
|
+
};
|
|
233837
234981
|
export type TownsquareGoalEdge = {
|
|
233838
234982
|
__typename?: 'TownsquareGoalEdge';
|
|
233839
234983
|
cursor: Scalars['String']['output'];
|
|
@@ -237673,6 +238817,16 @@ export type TrelloAgentMessageUpdatedConnection = {
|
|
|
237673
238817
|
__typename?: 'TrelloAgentMessageUpdatedConnection';
|
|
237674
238818
|
edges?: Maybe<Array<TrelloAgentMessageEdgeUpdated>>;
|
|
237675
238819
|
};
|
|
238820
|
+
export type TrelloAgentSession = {
|
|
238821
|
+
__typename?: 'TrelloAgentSession';
|
|
238822
|
+
id: Scalars['ID']['output'];
|
|
238823
|
+
objectId: Scalars['ID']['output'];
|
|
238824
|
+
tasks: TrelloAgentTaskConnection;
|
|
238825
|
+
};
|
|
238826
|
+
export type TrelloAgentSessionTasksArgs = {
|
|
238827
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
238828
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
238829
|
+
};
|
|
237676
238830
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
237677
238831
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
237678
238832
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -237693,6 +238847,17 @@ export type TrelloAgentTaskHistoryArgs = {
|
|
|
237693
238847
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
237694
238848
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
237695
238849
|
};
|
|
238850
|
+
export type TrelloAgentTaskConnection = {
|
|
238851
|
+
__typename?: 'TrelloAgentTaskConnection';
|
|
238852
|
+
edges?: Maybe<Array<TrelloAgentTaskEdge>>;
|
|
238853
|
+
nodes?: Maybe<Array<TrelloAgentTask>>;
|
|
238854
|
+
pageInfo: PageInfo;
|
|
238855
|
+
};
|
|
238856
|
+
export type TrelloAgentTaskEdge = {
|
|
238857
|
+
__typename?: 'TrelloAgentTaskEdge';
|
|
238858
|
+
cursor: Scalars['String']['output'];
|
|
238859
|
+
node: TrelloAgentTask;
|
|
238860
|
+
};
|
|
237696
238861
|
export type TrelloAgentTaskEdgeUpdated = {
|
|
237697
238862
|
__typename?: 'TrelloAgentTaskEdgeUpdated';
|
|
237698
238863
|
node: TrelloAgentTaskUpdated;
|
|
@@ -238426,7 +239591,8 @@ export type TrelloBoardTagsArgs = {
|
|
|
238426
239591
|
export declare enum TrelloBoardAiLoadingPhase {
|
|
238427
239592
|
GeneratingBoard = "GENERATING_BOARD",
|
|
238428
239593
|
PreparingBoard = "PREPARING_BOARD",
|
|
238429
|
-
SearchingWeb = "SEARCHING_WEB"
|
|
239594
|
+
SearchingWeb = "SEARCHING_WEB",
|
|
239595
|
+
VerifyingWebLinks = "VERIFYING_WEB_LINKS"
|
|
238430
239596
|
}
|
|
238431
239597
|
export type TrelloBoardAttachmentsLimits = {
|
|
238432
239598
|
__typename?: 'TrelloBoardAttachmentsLimits';
|
|
@@ -239786,6 +240952,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
239786
240952
|
board?: Maybe<TrelloBoard>;
|
|
239787
240953
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
239788
240954
|
errors?: Maybe<Array<MutationError>>;
|
|
240955
|
+
session?: Maybe<TrelloAgentSession>;
|
|
239789
240956
|
success: Scalars['Boolean']['output'];
|
|
239790
240957
|
task?: Maybe<TrelloAgentTask>;
|
|
239791
240958
|
};
|
|
@@ -241706,6 +242873,7 @@ export type TrelloMutationApi = {
|
|
|
241706
242873
|
updateBoardVotingPermissions?: Maybe<TrelloUpdateBoardVotingPermissionsPayload>;
|
|
241707
242874
|
updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
|
|
241708
242875
|
updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
|
|
242876
|
+
updateCardDates?: Maybe<TrelloUpdateCardDatesPayload>;
|
|
241709
242877
|
updateCardDescription?: Maybe<TrelloUpdateCardDescriptionPayload>;
|
|
241710
242878
|
updateCardDueDate?: Maybe<TrelloUpdateCardDueDatePayload>;
|
|
241711
242879
|
updateCardDueReminder?: Maybe<TrelloUpdateCardDueReminderPayload>;
|
|
@@ -242134,6 +243302,9 @@ export type TrelloMutationApiUpdateCardCoverArgs = {
|
|
|
242134
243302
|
export type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
|
|
242135
243303
|
input: TrelloUpdateCardDateViewedByCreatorInput;
|
|
242136
243304
|
};
|
|
243305
|
+
export type TrelloMutationApiUpdateCardDatesArgs = {
|
|
243306
|
+
input: TrelloUpdateCardDatesInput;
|
|
243307
|
+
};
|
|
242137
243308
|
export type TrelloMutationApiUpdateCardDescriptionArgs = {
|
|
242138
243309
|
input: TrelloUpdateCardDescriptionInput;
|
|
242139
243310
|
};
|
|
@@ -244277,6 +245448,18 @@ export type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
244277
245448
|
errors?: Maybe<Array<MutationError>>;
|
|
244278
245449
|
success: Scalars['Boolean']['output'];
|
|
244279
245450
|
};
|
|
245451
|
+
export type TrelloUpdateCardDatesInput = {
|
|
245452
|
+
cardId: Scalars['ID']['input'];
|
|
245453
|
+
dueAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
245454
|
+
dueReminder?: InputMaybe<Scalars['Int']['input']>;
|
|
245455
|
+
startAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
245456
|
+
};
|
|
245457
|
+
export type TrelloUpdateCardDatesPayload = Payload & {
|
|
245458
|
+
__typename?: 'TrelloUpdateCardDatesPayload';
|
|
245459
|
+
card?: Maybe<TrelloBaseCard>;
|
|
245460
|
+
errors?: Maybe<Array<MutationError>>;
|
|
245461
|
+
success: Scalars['Boolean']['output'];
|
|
245462
|
+
};
|
|
244280
245463
|
export type TrelloUpdateCardDescriptionInput = {
|
|
244281
245464
|
cardId: Scalars['ID']['input'];
|
|
244282
245465
|
description: Scalars['String']['input'];
|