@forge/cli-shared 8.15.1-next.4 → 8.15.1-next.4-experimental-f57b265
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 +12 -0
- package/out/graphql/graphql-types.d.ts +3876 -24
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +738 -35
- package/package.json +2 -2
|
@@ -552,10 +552,11 @@ export declare type AvpCreateStandaloneChartInput = {
|
|
|
552
552
|
cloudId: Scalars['ID']['input'];
|
|
553
553
|
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
554
554
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
555
|
-
workspaceId
|
|
555
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
556
556
|
};
|
|
557
557
|
export declare type AvpCreateStandaloneChartPayload = Payload & {
|
|
558
558
|
__typename?: 'AVPCreateStandaloneChartPayload';
|
|
559
|
+
avpVizUrl?: Maybe<Scalars['String']['output']>;
|
|
559
560
|
chart?: Maybe<AvpChart>;
|
|
560
561
|
dashboard?: Maybe<AvpDashboard>;
|
|
561
562
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -583,6 +584,7 @@ export declare type AvpDashboard = Node & {
|
|
|
583
584
|
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
584
585
|
id: Scalars['ID']['output'];
|
|
585
586
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
587
|
+
isWrapper?: Maybe<Scalars['Boolean']['output']>;
|
|
586
588
|
settings?: Maybe<AvpDashboardSettings>;
|
|
587
589
|
status?: Maybe<AvpDashboardStatus>;
|
|
588
590
|
templateVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -1911,6 +1913,14 @@ export declare type AdminAssignRoleResponsePayload = Payload & {
|
|
|
1911
1913
|
errors?: Maybe<Array<MutationError>>;
|
|
1912
1914
|
success: Scalars['Boolean']['output'];
|
|
1913
1915
|
};
|
|
1916
|
+
export declare type AdminAuditLogContainer = {
|
|
1917
|
+
id: Scalars['ID']['input'];
|
|
1918
|
+
type: AdminAuditLogContainerType;
|
|
1919
|
+
};
|
|
1920
|
+
export declare enum AdminAuditLogContainerType {
|
|
1921
|
+
Org = "ORG",
|
|
1922
|
+
Site = "SITE"
|
|
1923
|
+
}
|
|
1914
1924
|
export declare type AdminAuditLogDetailedEventLocation = {
|
|
1915
1925
|
__typename?: 'AdminAuditLogDetailedEventLocation';
|
|
1916
1926
|
cityName?: Maybe<Scalars['String']['output']>;
|
|
@@ -4206,6 +4216,15 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4206
4216
|
id: Scalars['ID']['output'];
|
|
4207
4217
|
teamNames: Array<Scalars['String']['output']>;
|
|
4208
4218
|
};
|
|
4219
|
+
export declare type AgentWorkspaceAgentAvailability = {
|
|
4220
|
+
__typename?: 'AgentWorkspaceAgentAvailability';
|
|
4221
|
+
agentId: Scalars['ID']['output'];
|
|
4222
|
+
agentName: Scalars['String']['output'];
|
|
4223
|
+
status: AgentWorkspaceAvailabilityStatus;
|
|
4224
|
+
teamIds: Array<Scalars['ID']['output']>;
|
|
4225
|
+
teamNames: Array<Scalars['String']['output']>;
|
|
4226
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4227
|
+
};
|
|
4209
4228
|
export declare type AgentWorkspaceAgentShifts = {
|
|
4210
4229
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
4211
4230
|
agent: AgentWorkspaceAgent;
|
|
@@ -4218,6 +4237,39 @@ export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
|
4218
4237
|
cursor: Scalars['String']['output'];
|
|
4219
4238
|
node: AgentWorkspaceAgentShifts;
|
|
4220
4239
|
};
|
|
4240
|
+
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
4241
|
+
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
4242
|
+
nodes: Array<AgentWorkspaceAgentAvailability>;
|
|
4243
|
+
pageInfo: AgentWorkspaceAvailabilityPageInfo;
|
|
4244
|
+
summary: AgentWorkspaceAvailabilitySummary;
|
|
4245
|
+
};
|
|
4246
|
+
export declare type AgentWorkspaceAvailabilityInput = {
|
|
4247
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4248
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4249
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4250
|
+
projectId: Scalars['ID']['input'];
|
|
4251
|
+
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
4252
|
+
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4253
|
+
};
|
|
4254
|
+
export declare type AgentWorkspaceAvailabilityPageInfo = {
|
|
4255
|
+
__typename?: 'AgentWorkspaceAvailabilityPageInfo';
|
|
4256
|
+
currentPage: Scalars['Int']['output'];
|
|
4257
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4258
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4259
|
+
pageSize: Scalars['Int']['output'];
|
|
4260
|
+
totalCount: Scalars['Int']['output'];
|
|
4261
|
+
totalPages: Scalars['Int']['output'];
|
|
4262
|
+
};
|
|
4263
|
+
export declare enum AgentWorkspaceAvailabilityStatus {
|
|
4264
|
+
Available = "AVAILABLE",
|
|
4265
|
+
OnBreak = "ON_BREAK"
|
|
4266
|
+
}
|
|
4267
|
+
export declare type AgentWorkspaceAvailabilitySummary = {
|
|
4268
|
+
__typename?: 'AgentWorkspaceAvailabilitySummary';
|
|
4269
|
+
activeAgents: Scalars['Int']['output'];
|
|
4270
|
+
onBreak: Scalars['Int']['output'];
|
|
4271
|
+
onDuty: Scalars['Int']['output'];
|
|
4272
|
+
};
|
|
4221
4273
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4222
4274
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4223
4275
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7216,6 +7268,19 @@ export declare type AssetsDmDefFunctionParameter = {
|
|
|
7216
7268
|
type: Scalars['Int']['output'];
|
|
7217
7269
|
value?: Maybe<Scalars['String']['output']>;
|
|
7218
7270
|
};
|
|
7271
|
+
export declare type AssetsDmDefFunctionParameterInput = {
|
|
7272
|
+
dataType: Scalars['Int']['input'];
|
|
7273
|
+
defFunctionId: Scalars['ID']['input'];
|
|
7274
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
7275
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7276
|
+
displayName: Scalars['String']['input'];
|
|
7277
|
+
displayOrder: Scalars['Int']['input'];
|
|
7278
|
+
isColumn: Scalars['Boolean']['input'];
|
|
7279
|
+
name: Scalars['String']['input'];
|
|
7280
|
+
required: Scalars['Boolean']['input'];
|
|
7281
|
+
type: Scalars['Int']['input'];
|
|
7282
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
7283
|
+
};
|
|
7219
7284
|
export declare enum AssetsDmDefaultAttributeMappingColumnName {
|
|
7220
7285
|
AttributeName = "attributeName",
|
|
7221
7286
|
ColumnType = "columnType",
|
|
@@ -7328,11 +7393,12 @@ export declare type AssetsDmDefaultFunctionParameter = {
|
|
|
7328
7393
|
__typename?: 'AssetsDMDefaultFunctionParameter';
|
|
7329
7394
|
defFunctionParameter?: Maybe<AssetsDmDefFunctionParameter>;
|
|
7330
7395
|
defFunctionParameterId: Scalars['ID']['output'];
|
|
7331
|
-
defaultFunctionId
|
|
7332
|
-
defaultFunctionParameterId
|
|
7396
|
+
defaultFunctionId?: Maybe<Scalars['ID']['output']>;
|
|
7397
|
+
defaultFunctionParameterId?: Maybe<Scalars['ID']['output']>;
|
|
7333
7398
|
value?: Maybe<Scalars['String']['output']>;
|
|
7334
7399
|
};
|
|
7335
7400
|
export declare type AssetsDmDefaultFunctionParameterInput = {
|
|
7401
|
+
defFunctionParameter?: InputMaybe<AssetsDmDefFunctionParameterInput>;
|
|
7336
7402
|
defFunctionParameterId: Scalars['ID']['input'];
|
|
7337
7403
|
defaultFunctionId?: InputMaybe<Scalars['ID']['input']>;
|
|
7338
7404
|
defaultFunctionParameterId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -12471,18 +12537,3586 @@ export declare type CommerceEntitlementRelationship = {
|
|
|
12471
12537
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
12472
12538
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
12473
12539
|
};
|
|
12540
|
+
export declare type CommerceExpAccountDetails = {
|
|
12541
|
+
__typename?: 'CommerceExpAccountDetails';
|
|
12542
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
12543
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
12544
|
+
};
|
|
12545
|
+
export declare type CommerceExpAccountModification = {
|
|
12546
|
+
__typename?: 'CommerceExpAccountModification';
|
|
12547
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
12548
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
12549
|
+
};
|
|
12550
|
+
export declare type CommerceExpAchInfo = {
|
|
12551
|
+
__typename?: 'CommerceExpAchInfo';
|
|
12552
|
+
accountHolder: Scalars['String']['output'];
|
|
12553
|
+
bankName: Scalars['String']['output'];
|
|
12554
|
+
last4: Scalars['String']['output'];
|
|
12555
|
+
routingNumber: Scalars['String']['output'];
|
|
12556
|
+
valid: Scalars['Boolean']['output'];
|
|
12557
|
+
};
|
|
12558
|
+
export declare type CommerceExpAchPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
|
|
12559
|
+
__typename?: 'CommerceExpAchPaymentMethod';
|
|
12560
|
+
ach?: Maybe<CommerceExpAchInfo>;
|
|
12561
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
12562
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
12563
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12564
|
+
id: Scalars['ID']['output'];
|
|
12565
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
12566
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
12567
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
12568
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
12569
|
+
};
|
|
12570
|
+
export declare type CommerceExpAchPaymentMethodPaginatedEntitlementsArgs = {
|
|
12571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12572
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
12573
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12574
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12575
|
+
};
|
|
12576
|
+
export declare type CommerceExpActivateEntitlementInfo = {
|
|
12577
|
+
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
12578
|
+
offeringId: Scalars['String']['input'];
|
|
12579
|
+
resourceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
12580
|
+
};
|
|
12581
|
+
export declare type CommerceExpActivateEntitlementsPayload = CommerceExpMutationPayload & {
|
|
12582
|
+
__typename?: 'CommerceExpActivateEntitlementsPayload';
|
|
12583
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12584
|
+
provisionRequestId?: Maybe<Scalars['String']['output']>;
|
|
12585
|
+
success: Scalars['Boolean']['output'];
|
|
12586
|
+
};
|
|
12587
|
+
export declare type CommerceExpAddOnEntitlementFilter = {
|
|
12588
|
+
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
12589
|
+
};
|
|
12590
|
+
export declare type CommerceExpAddonPurchaseOrderInput = {
|
|
12591
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
12592
|
+
items: Array<CommerceExpAddonPurchaseOrderItemInput>;
|
|
12593
|
+
};
|
|
12594
|
+
export declare type CommerceExpAddonPurchaseOrderItemInput = {
|
|
12595
|
+
billingAnchorTime?: InputMaybe<Scalars['Float']['input']>;
|
|
12596
|
+
chargeElementDetails: Array<CommerceExpChargeElementDetails>;
|
|
12597
|
+
endTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
12598
|
+
invoiceGroupId: Scalars['String']['input'];
|
|
12599
|
+
itemId: Scalars['String']['input'];
|
|
12600
|
+
offeringId: Scalars['String']['input'];
|
|
12601
|
+
pricingPlanId: Scalars['String']['input'];
|
|
12602
|
+
};
|
|
12603
|
+
export declare type CommerceExpAddressValidationErrorExtension = MutationErrorExtension & {
|
|
12604
|
+
__typename?: 'CommerceExpAddressValidationErrorExtension';
|
|
12605
|
+
addressValidationErrors?: Maybe<Array<Maybe<CommerceExpValidationErrorMessage>>>;
|
|
12606
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
12607
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
12608
|
+
};
|
|
12609
|
+
export declare type CommerceExpAdjustmentDetail = {
|
|
12610
|
+
__typename?: 'CommerceExpAdjustmentDetail';
|
|
12611
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
12612
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
12613
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
12614
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
12615
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
12616
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12617
|
+
};
|
|
12618
|
+
export declare type CommerceExpAggregationPeriodBoundaryUsage = {
|
|
12619
|
+
__typename?: 'CommerceExpAggregationPeriodBoundaryUsage';
|
|
12620
|
+
usageAtEnd?: Maybe<Scalars['Int']['output']>;
|
|
12621
|
+
usageAtStart?: Maybe<Scalars['Int']['output']>;
|
|
12622
|
+
};
|
|
12623
|
+
export declare enum CommerceExpAllowanceCycle {
|
|
12624
|
+
Annual = "ANNUAL",
|
|
12625
|
+
Monthly = "MONTHLY"
|
|
12626
|
+
}
|
|
12627
|
+
export declare type CommerceExpAllowanceDetails = {
|
|
12628
|
+
__typename?: 'CommerceExpAllowanceDetails';
|
|
12629
|
+
allowanceQuantity?: Maybe<Scalars['Int']['output']>;
|
|
12630
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
12631
|
+
defaultAllowance?: Maybe<CommerceExpDefaultAllowance>;
|
|
12632
|
+
rechargeDate?: Maybe<Scalars['Float']['output']>;
|
|
12633
|
+
};
|
|
12634
|
+
export declare type CommerceExpAllowancePoolContributor = {
|
|
12635
|
+
__typename?: 'CommerceExpAllowancePoolContributor';
|
|
12636
|
+
allowance?: Maybe<Scalars['Float']['output']>;
|
|
12637
|
+
memberEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
12638
|
+
memberId?: Maybe<Scalars['String']['output']>;
|
|
12639
|
+
};
|
|
12640
|
+
export declare enum CommerceExpAllowanceType {
|
|
12641
|
+
OneTime = "ONE_TIME",
|
|
12642
|
+
Recurring = "RECURRING"
|
|
12643
|
+
}
|
|
12644
|
+
export declare enum CommerceExpAllowedRedemptionMethods {
|
|
12645
|
+
Promotion = "PROMOTION",
|
|
12646
|
+
PromotionCode = "PROMOTION_CODE"
|
|
12647
|
+
}
|
|
12648
|
+
export declare type CommerceExpAndRuleCondition = {
|
|
12649
|
+
__typename?: 'CommerceExpAndRuleCondition';
|
|
12650
|
+
eligibleConditions?: Maybe<Array<Maybe<CommerceExpEligibleCondition>>>;
|
|
12651
|
+
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
12652
|
+
};
|
|
12653
|
+
export declare type CommerceExpApplicationReason = {
|
|
12654
|
+
__typename?: 'CommerceExpApplicationReason';
|
|
12655
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
12656
|
+
};
|
|
12657
|
+
export declare type CommerceExpApplicationReasonDto = {
|
|
12658
|
+
__typename?: 'CommerceExpApplicationReasonDto';
|
|
12659
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
12660
|
+
};
|
|
12661
|
+
export declare type CommerceExpApplicationReasonResponse = {
|
|
12662
|
+
__typename?: 'CommerceExpApplicationReasonResponse';
|
|
12663
|
+
customisable?: Maybe<CommerceExpCustomisableApplicationReasonResponse>;
|
|
12664
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12665
|
+
readableName?: Maybe<Scalars['String']['output']>;
|
|
12666
|
+
};
|
|
12667
|
+
export declare type CommerceExpApplicationReasonResponseSetLimiter = {
|
|
12668
|
+
__typename?: 'CommerceExpApplicationReasonResponseSetLimiter';
|
|
12669
|
+
anyOf?: Maybe<Array<Maybe<CommerceExpApplicationReason>>>;
|
|
12670
|
+
type?: Maybe<CommerceExpApplicationReasonType>;
|
|
12671
|
+
};
|
|
12672
|
+
export declare enum CommerceExpApplicationReasonType {
|
|
12673
|
+
Range = "RANGE",
|
|
12674
|
+
Set = "SET"
|
|
12675
|
+
}
|
|
12676
|
+
export declare enum CommerceExpApprovalDeskIssueType {
|
|
12677
|
+
ApprovalRequest = "APPROVAL_REQUEST",
|
|
12678
|
+
ApprovalTask = "APPROVAL_TASK"
|
|
12679
|
+
}
|
|
12680
|
+
export declare type CommerceExpApprovalDeskMutation = {
|
|
12681
|
+
__typename?: 'CommerceExpApprovalDeskMutation';
|
|
12682
|
+
updateTask?: Maybe<CommerceExpApprovalDeskUpdateTaskPayload>;
|
|
12683
|
+
};
|
|
12684
|
+
export declare type CommerceExpApprovalDeskMutationUpdateTaskArgs = {
|
|
12685
|
+
input: CommerceExpApprovalDeskUpdateTaskInput;
|
|
12686
|
+
};
|
|
12687
|
+
export declare type CommerceExpApprovalDeskQuery = {
|
|
12688
|
+
__typename?: 'CommerceExpApprovalDeskQuery';
|
|
12689
|
+
task?: Maybe<CommerceExpApprovalDeskTask>;
|
|
12690
|
+
tasks?: Maybe<CommerceExpApprovalDeskTaskConnection>;
|
|
12691
|
+
};
|
|
12692
|
+
export declare type CommerceExpApprovalDeskQueryTaskArgs = {
|
|
12693
|
+
input: CommerceExpApprovalDeskTaskInput;
|
|
12694
|
+
};
|
|
12695
|
+
export declare type CommerceExpApprovalDeskQueryTasksArgs = {
|
|
12696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12697
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
12698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12699
|
+
input: CommerceExpApprovalDeskTasksInput;
|
|
12700
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12701
|
+
};
|
|
12702
|
+
export declare type CommerceExpApprovalDeskSortOrderInput = {
|
|
12703
|
+
direction?: InputMaybe<SortDirection>;
|
|
12704
|
+
field?: InputMaybe<Scalars['String']['input']>;
|
|
12705
|
+
};
|
|
12706
|
+
export declare enum CommerceExpApprovalDeskStatus {
|
|
12707
|
+
Approved = "APPROVED",
|
|
12708
|
+
Closed = "CLOSED",
|
|
12709
|
+
Declined = "DECLINED",
|
|
12710
|
+
InProgress = "IN_PROGRESS",
|
|
12711
|
+
InReview = "IN_REVIEW",
|
|
12712
|
+
Open = "OPEN",
|
|
12713
|
+
ReasonsProvided = "REASONS_PROVIDED",
|
|
12714
|
+
ReasonsRequested = "REASONS_REQUESTED",
|
|
12715
|
+
RequestCancelled = "REQUEST_CANCELLED",
|
|
12716
|
+
WaitingForReview = "WAITING_FOR_REVIEW"
|
|
12717
|
+
}
|
|
12718
|
+
export declare type CommerceExpApprovalDeskTask = {
|
|
12719
|
+
__typename?: 'CommerceExpApprovalDeskTask';
|
|
12720
|
+
assigneeId?: Maybe<Scalars['ID']['output']>;
|
|
12721
|
+
businessKey?: Maybe<Scalars['String']['output']>;
|
|
12722
|
+
children?: Maybe<Array<Maybe<CommerceExpApprovalDeskTask>>>;
|
|
12723
|
+
completedDate?: Maybe<Scalars['String']['output']>;
|
|
12724
|
+
created?: Maybe<Scalars['String']['output']>;
|
|
12725
|
+
initiatorInitialComment?: Maybe<Scalars['String']['output']>;
|
|
12726
|
+
issueType?: Maybe<Scalars['String']['output']>;
|
|
12727
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
12728
|
+
parentKey?: Maybe<Scalars['String']['output']>;
|
|
12729
|
+
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
12730
|
+
requestId?: Maybe<Scalars['String']['output']>;
|
|
12731
|
+
resolutionDate?: Maybe<Scalars['String']['output']>;
|
|
12732
|
+
slaBreached?: Maybe<Scalars['Boolean']['output']>;
|
|
12733
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
12734
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
12735
|
+
taskName?: Maybe<Scalars['String']['output']>;
|
|
12736
|
+
updated?: Maybe<Scalars['String']['output']>;
|
|
12737
|
+
workflowKey?: Maybe<Scalars['String']['output']>;
|
|
12738
|
+
};
|
|
12739
|
+
export declare type CommerceExpApprovalDeskTaskConnection = {
|
|
12740
|
+
__typename?: 'CommerceExpApprovalDeskTaskConnection';
|
|
12741
|
+
edges?: Maybe<Array<Maybe<CommerceExpApprovalDeskTaskEdge>>>;
|
|
12742
|
+
nodes?: Maybe<Array<Maybe<CommerceExpApprovalDeskTask>>>;
|
|
12743
|
+
pageInfo: PageInfo;
|
|
12744
|
+
};
|
|
12745
|
+
export declare type CommerceExpApprovalDeskTaskEdge = {
|
|
12746
|
+
__typename?: 'CommerceExpApprovalDeskTaskEdge';
|
|
12747
|
+
cursor: Scalars['String']['output'];
|
|
12748
|
+
node?: Maybe<CommerceExpApprovalDeskTask>;
|
|
12749
|
+
};
|
|
12750
|
+
export declare type CommerceExpApprovalDeskTaskInput = {
|
|
12751
|
+
taskId: Scalars['String']['input'];
|
|
12752
|
+
};
|
|
12753
|
+
export declare type CommerceExpApprovalDeskTasksInput = {
|
|
12754
|
+
loadChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
12755
|
+
sortOrder?: InputMaybe<CommerceExpApprovalDeskSortOrderInput>;
|
|
12756
|
+
statuses?: InputMaybe<Array<CommerceExpApprovalDeskStatus>>;
|
|
12757
|
+
workflowKey?: InputMaybe<Scalars['String']['input']>;
|
|
12758
|
+
};
|
|
12759
|
+
export declare type CommerceExpApprovalDeskTenantInput = {
|
|
12760
|
+
tenantId: Scalars['ID']['input'];
|
|
12761
|
+
tenantType?: InputMaybe<CommerceExpApprovalDeskTenantType>;
|
|
12762
|
+
};
|
|
12763
|
+
export declare enum CommerceExpApprovalDeskTenantType {
|
|
12764
|
+
TransactionAccount = "TRANSACTION_ACCOUNT"
|
|
12765
|
+
}
|
|
12766
|
+
export declare type CommerceExpApprovalDeskUpdateTaskInput = {
|
|
12767
|
+
issueType?: InputMaybe<CommerceExpApprovalDeskIssueType>;
|
|
12768
|
+
skipInterimStatus?: InputMaybe<Scalars['Boolean']['input']>;
|
|
12769
|
+
status?: InputMaybe<CommerceExpApprovalDeskStatus>;
|
|
12770
|
+
taskId?: InputMaybe<Scalars['String']['input']>;
|
|
12771
|
+
};
|
|
12772
|
+
export declare type CommerceExpApprovalDeskUpdateTaskPayload = CommerceExpMutationPayload & {
|
|
12773
|
+
__typename?: 'CommerceExpApprovalDeskUpdateTaskPayload';
|
|
12774
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12775
|
+
success: Scalars['Boolean']['output'];
|
|
12776
|
+
};
|
|
12777
|
+
export declare type CommerceExpAuthorContextDto = {
|
|
12778
|
+
__typename?: 'CommerceExpAuthorContextDto';
|
|
12779
|
+
isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
|
|
12780
|
+
isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
|
|
12781
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
12782
|
+
subjectType?: Maybe<Scalars['String']['output']>;
|
|
12783
|
+
};
|
|
12784
|
+
export declare type CommerceExpAvailableAddonToPurchase = {
|
|
12785
|
+
__typename?: 'CommerceExpAvailableAddonToPurchase';
|
|
12786
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
12787
|
+
orderDefault?: Maybe<CommerceExpCcpOrderDefault>;
|
|
12788
|
+
};
|
|
12789
|
+
export declare enum CommerceExpBehaviourAtEndOfTrial {
|
|
12790
|
+
Cancel = "CANCEL",
|
|
12791
|
+
ConvertToPaid = "CONVERT_TO_PAID",
|
|
12792
|
+
RevertTrial = "REVERT_TRIAL"
|
|
12793
|
+
}
|
|
12794
|
+
export declare type CommerceExpBenefit = {
|
|
12795
|
+
__typename?: 'CommerceExpBenefit';
|
|
12796
|
+
duration?: Maybe<CommerceExpDurationEnum>;
|
|
12797
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
12798
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
12799
|
+
};
|
|
12800
|
+
export declare enum CommerceExpBenefitType {
|
|
12801
|
+
Discount = "DISCOUNT",
|
|
12802
|
+
Override = "OVERRIDE"
|
|
12803
|
+
}
|
|
12804
|
+
export declare type CommerceExpBillDateResponse = {
|
|
12805
|
+
__typename?: 'CommerceExpBillDateResponse';
|
|
12806
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
12807
|
+
type: CommerceExpBillDateType;
|
|
12808
|
+
};
|
|
12809
|
+
export declare enum CommerceExpBillDateType {
|
|
12810
|
+
QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
|
|
12811
|
+
Timestamp = "TIMESTAMP"
|
|
12812
|
+
}
|
|
12813
|
+
export declare type CommerceExpBillEstimate = {
|
|
12814
|
+
__typename?: 'CommerceExpBillEstimate';
|
|
12815
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
12816
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
12817
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
12818
|
+
items?: Maybe<Array<Maybe<CommerceExpBillEstimateItem>>>;
|
|
12819
|
+
subscriptionState?: Maybe<CommerceExpSubscriptionState>;
|
|
12820
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
12821
|
+
usage?: Maybe<Scalars['Int']['output']>;
|
|
12822
|
+
};
|
|
12823
|
+
export declare type CommerceExpBillEstimateAdjustment = {
|
|
12824
|
+
__typename?: 'CommerceExpBillEstimateAdjustment';
|
|
12825
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
12826
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
12827
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
12828
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
12829
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12830
|
+
};
|
|
12831
|
+
export declare type CommerceExpBillEstimateChargeQuantity = {
|
|
12832
|
+
__typename?: 'CommerceExpBillEstimateChargeQuantity';
|
|
12833
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
12834
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
12835
|
+
};
|
|
12836
|
+
export declare type CommerceExpBillEstimateItem = {
|
|
12837
|
+
__typename?: 'CommerceExpBillEstimateItem';
|
|
12838
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpBillEstimateAdjustment>>>;
|
|
12839
|
+
billPeriod?: Maybe<CommerceExpBillEstimatePeriod>;
|
|
12840
|
+
chargeQuantity?: Maybe<CommerceExpBillEstimateChargeQuantity>;
|
|
12841
|
+
isArrears?: Maybe<Scalars['Boolean']['output']>;
|
|
12842
|
+
offeringId?: Maybe<Scalars['String']['output']>;
|
|
12843
|
+
originalItemReferral?: Maybe<CommerceExpOriginalItemReferral>;
|
|
12844
|
+
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
12845
|
+
selfReference?: Maybe<Scalars['Boolean']['output']>;
|
|
12846
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
12847
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
12848
|
+
};
|
|
12849
|
+
export declare type CommerceExpBillEstimatePeriod = {
|
|
12850
|
+
__typename?: 'CommerceExpBillEstimatePeriod';
|
|
12851
|
+
end?: Maybe<Scalars['Float']['output']>;
|
|
12852
|
+
start?: Maybe<Scalars['Float']['output']>;
|
|
12853
|
+
};
|
|
12854
|
+
export declare type CommerceExpBillEstimatePermissionError = {
|
|
12855
|
+
__typename?: 'CommerceExpBillEstimatePermissionError';
|
|
12856
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
12857
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
12858
|
+
};
|
|
12859
|
+
export declare type CommerceExpBillEstimateResult = CommerceExpBillEstimate | CommerceExpBillEstimatePermissionError;
|
|
12860
|
+
export declare enum CommerceExpBillLineStatus {
|
|
12861
|
+
Cancelled = "CANCELLED",
|
|
12862
|
+
Invoiced = "INVOICED",
|
|
12863
|
+
NotInvoiced = "NOT_INVOICED"
|
|
12864
|
+
}
|
|
12865
|
+
export declare type CommerceExpBillToParty = {
|
|
12866
|
+
__typename?: 'CommerceExpBillToParty';
|
|
12867
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
12868
|
+
postalAddress?: Maybe<CommerceExpPostalAddress>;
|
|
12869
|
+
taxId?: Maybe<Scalars['String']['output']>;
|
|
12870
|
+
taxIds?: Maybe<Array<Maybe<CommerceExpTaxId>>>;
|
|
12871
|
+
};
|
|
12872
|
+
export declare type CommerceExpBillToPartyResult = CommerceExpBillToParty | QueryError;
|
|
12873
|
+
export declare type CommerceExpBillingBehaviour = {
|
|
12874
|
+
__typename?: 'CommerceExpBillingBehaviour';
|
|
12875
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
12876
|
+
type: CommerceExpBillingBehaviourType;
|
|
12877
|
+
};
|
|
12878
|
+
export declare type CommerceExpBillingBehaviourConfiguration = {
|
|
12879
|
+
__typename?: 'CommerceExpBillingBehaviourConfiguration';
|
|
12880
|
+
type?: Maybe<CommerceExpBillingBehaviourType>;
|
|
12881
|
+
};
|
|
12882
|
+
export declare enum CommerceExpBillingBehaviourType {
|
|
12883
|
+
PauseBilling = "PAUSE_BILLING"
|
|
12884
|
+
}
|
|
12885
|
+
export declare enum CommerceExpBillingCycle {
|
|
12886
|
+
Annual = "ANNUAL",
|
|
12887
|
+
Monthly = "MONTHLY"
|
|
12888
|
+
}
|
|
12889
|
+
export declare type CommerceExpBillingCycleAnchor = {
|
|
12890
|
+
__typename?: 'CommerceExpBillingCycleAnchor';
|
|
12891
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
12892
|
+
type?: Maybe<CommerceExpBillingCycleAnchorType>;
|
|
12893
|
+
};
|
|
12894
|
+
export declare enum CommerceExpBillingCycleAnchorType {
|
|
12895
|
+
Continue = "CONTINUE",
|
|
12896
|
+
PhaseStart = "PHASE_START",
|
|
12897
|
+
Timestamp = "TIMESTAMP"
|
|
12898
|
+
}
|
|
12899
|
+
export declare type CommerceExpBillingPeriodDetails = {
|
|
12900
|
+
__typename?: 'CommerceExpBillingPeriodDetails';
|
|
12901
|
+
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
12902
|
+
nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
12903
|
+
};
|
|
12904
|
+
export declare type CommerceExpBillingPeriodItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
12905
|
+
export declare type CommerceExpBillingScheduleItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
12906
|
+
export declare type CommerceExpBuyCurrentTrialInput = {
|
|
12907
|
+
entitlementId: Scalars['String']['input'];
|
|
12908
|
+
};
|
|
12909
|
+
export declare type CommerceExpCanceledReason = {
|
|
12910
|
+
__typename?: 'CommerceExpCanceledReason';
|
|
12911
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
12912
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
12913
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
12914
|
+
};
|
|
12915
|
+
export declare type CommerceExpCardDetails = {
|
|
12916
|
+
__typename?: 'CommerceExpCardDetails';
|
|
12917
|
+
brand?: Maybe<Scalars['String']['output']>;
|
|
12918
|
+
cardHolderName?: Maybe<Scalars['String']['output']>;
|
|
12919
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
12920
|
+
expMonth?: Maybe<Scalars['Float']['output']>;
|
|
12921
|
+
expYear?: Maybe<Scalars['Float']['output']>;
|
|
12922
|
+
funding?: Maybe<Scalars['String']['output']>;
|
|
12923
|
+
last4?: Maybe<Scalars['String']['output']>;
|
|
12924
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
12925
|
+
};
|
|
12926
|
+
export declare type CommerceExpCardPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
|
|
12927
|
+
__typename?: 'CommerceExpCardPaymentMethod';
|
|
12928
|
+
card?: Maybe<CommerceExpCardDetails>;
|
|
12929
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
12930
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
12931
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12932
|
+
id: Scalars['ID']['output'];
|
|
12933
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
12934
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
12935
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
12936
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
12937
|
+
};
|
|
12938
|
+
export declare type CommerceExpCardPaymentMethodPaginatedEntitlementsArgs = {
|
|
12939
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12940
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
12941
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12942
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12943
|
+
};
|
|
12944
|
+
export declare type CommerceExpCcpCreditNote = {
|
|
12945
|
+
__typename?: 'CommerceExpCcpCreditNote';
|
|
12946
|
+
additionalNotes?: Maybe<Scalars['String']['output']>;
|
|
12947
|
+
arn?: Maybe<Scalars['String']['output']>;
|
|
12948
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
12949
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
12950
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
12951
|
+
invoice?: Maybe<Scalars['String']['output']>;
|
|
12952
|
+
memo?: Maybe<Scalars['String']['output']>;
|
|
12953
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
12954
|
+
purchaseOrderNumber?: Maybe<Scalars['String']['output']>;
|
|
12955
|
+
rechargeInvoiceId?: Maybe<Scalars['String']['output']>;
|
|
12956
|
+
refundId?: Maybe<Scalars['String']['output']>;
|
|
12957
|
+
refundType?: Maybe<CommerceExpCreditNoteDtoRefundTypeEnum>;
|
|
12958
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
12959
|
+
};
|
|
12960
|
+
export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
|
|
12961
|
+
__typename?: 'CommerceExpCcpEntitlement';
|
|
12962
|
+
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
12963
|
+
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
12964
|
+
actions2?: Maybe<CommerceExpEntitlementActionsV2>;
|
|
12965
|
+
allRelatedEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12966
|
+
allowancePoolContributors?: Maybe<Array<Maybe<CommerceExpAllowancePoolContributor>>>;
|
|
12967
|
+
availableAddonsToPurchase?: Maybe<Array<CommerceExpAvailableAddonToPurchase>>;
|
|
12968
|
+
billEstimateForAutoscalingAndLicensedChargeElements?: Maybe<CommerceExpBillEstimateResult>;
|
|
12969
|
+
billEstimateForChargeElement?: Maybe<CommerceExpBillEstimateResult>;
|
|
12970
|
+
billEstimateForMeteredChargeElements?: Maybe<CommerceExpBillEstimateResult>;
|
|
12971
|
+
billEstimateWithPermissionCheck?: Maybe<CommerceExpBillEstimateResult>;
|
|
12972
|
+
billingPeriods?: Maybe<Array<Maybe<CommerceExpEntitlementBillingPeriod>>>;
|
|
12973
|
+
blankAmendmentOrderEstimate?: Maybe<CommerceExpOrderBillEstimate>;
|
|
12974
|
+
cancellationOrderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
12975
|
+
connectedAppEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12976
|
+
connectedProductEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12977
|
+
contacts?: Maybe<Array<Maybe<CommerceExpContact>>>;
|
|
12978
|
+
contract?: Maybe<CommerceExpCommercialContract>;
|
|
12979
|
+
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
12980
|
+
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
12981
|
+
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
12982
|
+
id: Scalars['ID']['output'];
|
|
12983
|
+
inactiveSubscription?: Maybe<CommerceExpCcpSubscription>;
|
|
12984
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
12985
|
+
isBillingPausedDueToScheduledUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
12986
|
+
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
12987
|
+
key: Scalars['String']['output'];
|
|
12988
|
+
kind?: Maybe<CommerceExpEntitlementKind>;
|
|
12989
|
+
meteredChargeElementUsageAggregations?: Maybe<CommerceExpMeteredChargeElementUsageAggregationResponse>;
|
|
12990
|
+
meteredChargeElementsUsageLatest?: Maybe<Array<Maybe<CommerceExpMeteredChargeElementUsageLatest>>>;
|
|
12991
|
+
offering?: Maybe<CcpOffering>;
|
|
12992
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
12993
|
+
optedQuantities?: Maybe<Array<Maybe<CommerceExpOptedQuantity>>>;
|
|
12994
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
12995
|
+
provisioning?: Maybe<CommerceExpEntitlementProvisioning>;
|
|
12996
|
+
reactivationForBac?: Maybe<CommerceExpEntitlementReactivationForBac>;
|
|
12997
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
12998
|
+
relatedAddOnEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
12999
|
+
relatedAppEntitlementsUnderParentContainer?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13000
|
+
relatedAutoQuoteOpenRevision?: Maybe<CommerceExpCcpQuote>;
|
|
13001
|
+
relatedCustomerAdvocateGeneratedQuoteOpenRevision?: Maybe<CommerceExpCcpQuote>;
|
|
13002
|
+
relatedEnterpriseEntitlementForBac?: Maybe<CommerceExpCcpEntitlement>;
|
|
13003
|
+
relatedEnterpriseInstanceEntitlements2?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
13004
|
+
relatedEnterpriseInstanceEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13005
|
+
relatedQuotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
13006
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
13007
|
+
relatesToEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
13008
|
+
scheduledPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
13009
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
13010
|
+
status?: Maybe<CommerceExpEntitlementStatus>;
|
|
13011
|
+
subscription?: Maybe<CommerceExpCcpSubscription>;
|
|
13012
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13013
|
+
transitionsForBac?: Maybe<Array<Maybe<CommerceExpEntitlementTransitionForBac>>>;
|
|
13014
|
+
type?: Maybe<CommerceExpEntitlementType>;
|
|
13015
|
+
usageAggregations?: Maybe<CommerceExpUsageAggregationResponse>;
|
|
13016
|
+
usageForUserBasedMeteredChargeElements?: Maybe<Array<Maybe<CommerceExpUsageForUserBasedMeteredChargeElements>>>;
|
|
13017
|
+
usageHistory?: Maybe<CommerceExpUsageHistoryConnection>;
|
|
13018
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13019
|
+
};
|
|
13020
|
+
export declare type CommerceExpCcpEntitlementAccountModificationForBacArgs = {
|
|
13021
|
+
destinationTxa: Scalars['ID']['input'];
|
|
13022
|
+
};
|
|
13023
|
+
export declare type CommerceExpCcpEntitlementBillEstimateForChargeElementArgs = {
|
|
13024
|
+
chargeElement: Scalars['String']['input'];
|
|
13025
|
+
};
|
|
13026
|
+
export declare type CommerceExpCcpEntitlementBillingPeriodsArgs = {
|
|
13027
|
+
periodCount?: InputMaybe<Scalars['Int']['input']>;
|
|
13028
|
+
};
|
|
13029
|
+
export declare type CommerceExpCcpEntitlementCurrentPromotionsArgs = {
|
|
13030
|
+
filter?: InputMaybe<CommerceExpPromotionFilter>;
|
|
13031
|
+
};
|
|
13032
|
+
export declare type CommerceExpCcpEntitlementCurrentUserPermissionsArgs = {
|
|
13033
|
+
permissionIds: Array<Scalars['String']['input']>;
|
|
13034
|
+
};
|
|
13035
|
+
export declare type CommerceExpCcpEntitlementMeteredChargeElementUsageAggregationsArgs = {
|
|
13036
|
+
input: CommerceExpMeteredChargeElementUsageAggregationsInput;
|
|
13037
|
+
};
|
|
13038
|
+
export declare type CommerceExpCcpEntitlementRelatedAddOnEntitlementsForBacArgs = {
|
|
13039
|
+
filter?: InputMaybe<CommerceExpAddOnEntitlementFilter>;
|
|
13040
|
+
};
|
|
13041
|
+
export declare type CommerceExpCcpEntitlementRelatedEnterpriseInstanceEntitlements2Args = {
|
|
13042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13043
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13044
|
+
filter?: InputMaybe<CommerceExpEnterpriseInstanceFilter>;
|
|
13045
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13046
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13047
|
+
};
|
|
13048
|
+
export declare type CommerceExpCcpEntitlementRelatedEnterpriseInstanceEntitlementsForBacArgs = {
|
|
13049
|
+
filter?: InputMaybe<CommerceExpEnterpriseInstanceFilter>;
|
|
13050
|
+
};
|
|
13051
|
+
export declare type CommerceExpCcpEntitlementRelatesFromEntitlementsArgs = {
|
|
13052
|
+
filter?: InputMaybe<CommerceExpCcpRelationshipFilter>;
|
|
13053
|
+
};
|
|
13054
|
+
export declare type CommerceExpCcpEntitlementRelatesToEntitlementsArgs = {
|
|
13055
|
+
filter?: InputMaybe<CommerceExpCcpRelationshipFilter>;
|
|
13056
|
+
};
|
|
13057
|
+
export declare type CommerceExpCcpEntitlementScheduledPromotionsArgs = {
|
|
13058
|
+
filter?: InputMaybe<CommerceExpPromotionFilter>;
|
|
13059
|
+
};
|
|
13060
|
+
export declare type CommerceExpCcpEntitlementTransitionsForBacArgs = {
|
|
13061
|
+
allowLicenceCouplingErrors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13062
|
+
offeringGroups?: InputMaybe<Array<CommerceExpOfferingGroup>>;
|
|
13063
|
+
shouldSkipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13064
|
+
targetOfferingNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13065
|
+
targetRecommendedOffering?: InputMaybe<Scalars['String']['input']>;
|
|
13066
|
+
};
|
|
13067
|
+
export declare type CommerceExpCcpEntitlementUsageAggregationsArgs = {
|
|
13068
|
+
input: CommerceExpUsageAggregationsInput;
|
|
13069
|
+
};
|
|
13070
|
+
export declare type CommerceExpCcpEntitlementUsageHistoryArgs = {
|
|
13071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13072
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13073
|
+
endDate?: InputMaybe<Scalars['Float']['input']>;
|
|
13074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13075
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13076
|
+
startDate?: InputMaybe<Scalars['Float']['input']>;
|
|
13077
|
+
};
|
|
13078
|
+
export declare type CommerceExpCcpEntitlementConnection = {
|
|
13079
|
+
__typename?: 'CommerceExpCcpEntitlementConnection';
|
|
13080
|
+
edges?: Maybe<Array<Maybe<CommerceExpCcpEntitlementEdge>>>;
|
|
13081
|
+
nodes?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13082
|
+
pageInfo: PageInfo;
|
|
13083
|
+
};
|
|
13084
|
+
export declare type CommerceExpCcpEntitlementEdge = {
|
|
13085
|
+
__typename?: 'CommerceExpCcpEntitlementEdge';
|
|
13086
|
+
cursor: Scalars['String']['output'];
|
|
13087
|
+
node?: Maybe<CommerceExpCcpEntitlement>;
|
|
13088
|
+
};
|
|
13089
|
+
export declare type CommerceExpCcpEntitlementRelationship = {
|
|
13090
|
+
__typename?: 'CommerceExpCcpEntitlementRelationship';
|
|
13091
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
13092
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
13093
|
+
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
13094
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
13095
|
+
};
|
|
13096
|
+
export declare type CommerceExpCcpInvoice = {
|
|
13097
|
+
__typename?: 'CommerceExpCcpInvoice';
|
|
13098
|
+
appliedBalance?: Maybe<Scalars['Int']['output']>;
|
|
13099
|
+
billTo?: Maybe<CommerceExpBillToParty>;
|
|
13100
|
+
billToResult?: Maybe<CommerceExpBillToPartyResult>;
|
|
13101
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
13102
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
13103
|
+
dueAt?: Maybe<Scalars['Float']['output']>;
|
|
13104
|
+
dunningHistory?: Maybe<Array<Maybe<CommerceExpDunningStatus>>>;
|
|
13105
|
+
dunningStatus?: Maybe<CommerceExpDunningStatus>;
|
|
13106
|
+
expandedInvoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13107
|
+
finalizedAt?: Maybe<Scalars['Float']['output']>;
|
|
13108
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13109
|
+
invoiceGroup?: Maybe<Scalars['String']['output']>;
|
|
13110
|
+
items?: Maybe<Array<Maybe<CommerceExpInvoiceItem>>>;
|
|
13111
|
+
memo?: Maybe<Scalars['String']['output']>;
|
|
13112
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
13113
|
+
paidAt?: Maybe<Scalars['Float']['output']>;
|
|
13114
|
+
paymentMethod?: Maybe<Scalars['String']['output']>;
|
|
13115
|
+
paymentMethodObj?: Maybe<CommerceExpPaymentMethod>;
|
|
13116
|
+
paymentStatus?: Maybe<CommerceExpPaymentStatus>;
|
|
13117
|
+
prePaymentCreditNotesAmount?: Maybe<Scalars['Int']['output']>;
|
|
13118
|
+
purchaseOrderNumber?: Maybe<Scalars['String']['output']>;
|
|
13119
|
+
reInvoiced?: Maybe<Scalars['Boolean']['output']>;
|
|
13120
|
+
shipTo?: Maybe<CommerceExpShipToParty>;
|
|
13121
|
+
sourceSystem?: Maybe<CommerceExpInvoiceSourceSystem>;
|
|
13122
|
+
status?: Maybe<CommerceExpInvoiceStatus>;
|
|
13123
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
13124
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
13125
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
13126
|
+
uncollectibleAt?: Maybe<Scalars['Float']['output']>;
|
|
13127
|
+
};
|
|
13128
|
+
export declare type CommerceExpCcpInvoiceGroup = CommerceExpNode & {
|
|
13129
|
+
__typename?: 'CommerceExpCcpInvoiceGroup';
|
|
13130
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
13131
|
+
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
13132
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
13133
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
13134
|
+
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
13135
|
+
effectivePaymentMethod?: Maybe<CommerceExpEffectivePaymentMethod>;
|
|
13136
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13137
|
+
entitlementsUnbounded?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13138
|
+
hasActiveContract?: Maybe<Scalars['Boolean']['output']>;
|
|
13139
|
+
id: Scalars['ID']['output'];
|
|
13140
|
+
invoiceRequests?: Maybe<Array<CommerceExpInvoiceRequest>>;
|
|
13141
|
+
invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
13142
|
+
invoicesOrNoPermissions?: Maybe<CommerceExpInvoiceOrNoPermissions>;
|
|
13143
|
+
isCurrentUserECC?: Maybe<Scalars['Boolean']['output']>;
|
|
13144
|
+
key: Scalars['String']['output'];
|
|
13145
|
+
memo?: Maybe<Scalars['String']['output']>;
|
|
13146
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13147
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
13148
|
+
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
13149
|
+
purchaseOrder?: Maybe<CommerceExpPurchaseOrder>;
|
|
13150
|
+
recipients?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13151
|
+
shipToParty?: Maybe<CommerceExpShipToParty>;
|
|
13152
|
+
status?: Maybe<CommerceExpInvoiceGroupStatus>;
|
|
13153
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13154
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
13155
|
+
};
|
|
13156
|
+
export declare type CommerceExpCcpInvoiceGroupCurrentUserPermissionsArgs = {
|
|
13157
|
+
permissionIds: Array<Scalars['String']['input']>;
|
|
13158
|
+
};
|
|
13159
|
+
export declare type CommerceExpCcpInvoiceGroupEntitlementsArgs = {
|
|
13160
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13161
|
+
};
|
|
13162
|
+
export declare type CommerceExpCcpInvoiceGroupEntitlementsUnboundedArgs = {
|
|
13163
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13164
|
+
};
|
|
13165
|
+
export declare type CommerceExpCcpInvoiceGroupInvoiceRequestsArgs = {
|
|
13166
|
+
status?: InputMaybe<CommerceExpInvoiceRequestStatusType>;
|
|
13167
|
+
};
|
|
13168
|
+
export declare type CommerceExpCcpInvoiceGroupInvoicesArgs = {
|
|
13169
|
+
status?: InputMaybe<CommerceExpInvoiceStatusFilter>;
|
|
13170
|
+
};
|
|
13171
|
+
export declare type CommerceExpCcpInvoiceGroupInvoicesOrNoPermissionsArgs = {
|
|
13172
|
+
status?: InputMaybe<CommerceExpInvoiceStatusFilter>;
|
|
13173
|
+
};
|
|
13174
|
+
export declare type CommerceExpCcpInvoiceGroupPaginatedEntitlementsArgs = {
|
|
13175
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13176
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13177
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13178
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13179
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13180
|
+
};
|
|
13181
|
+
export declare type CommerceExpCcpMutation = {
|
|
13182
|
+
__typename?: 'CommerceExpCcpMutation';
|
|
13183
|
+
activateEntitlements?: Maybe<CommerceExpActivateEntitlementsPayload>;
|
|
13184
|
+
createAdmin?: Maybe<CommerceExpCreateAdminPayload>;
|
|
13185
|
+
createConfirmPaymentIntent?: Maybe<CommerceExpConfirmPaymentIntentPayload>;
|
|
13186
|
+
createContact?: Maybe<CommerceExpCreateContactPayload>;
|
|
13187
|
+
createInvoiceGroupForTxa?: Maybe<CommerceExpCreateInvoiceGroupForTxaPayload>;
|
|
13188
|
+
createInvoiceGroupIfNeeded?: Maybe<CommerceExpCreateInvoiceGroupIfNeededPayload>;
|
|
13189
|
+
createPaymentMethod?: Maybe<CommerceExpCreatePaymentMethodPayload>;
|
|
13190
|
+
createTransactionAccount?: Maybe<CommerceExpCreateTransactionAccountPayload>;
|
|
13191
|
+
createTransactionAccountAndInvoiceGroup?: Maybe<CommerceExpCreateTransactionAccountPayload>;
|
|
13192
|
+
createTxaAndIgIfNeededForCartPlaceOrder?: Maybe<CommerceExpCreateTxaAndIgIfNeededForCartPlaceOrderPayload>;
|
|
13193
|
+
deleteContact?: Maybe<CommerceExpDeleteContactPayload>;
|
|
13194
|
+
deletePaymentMethod?: Maybe<CommerceExpDeletePaymentMethodPayload>;
|
|
13195
|
+
mutateIfValidEntitlement?: Maybe<CommerceExpMutateIfValidEntitlement>;
|
|
13196
|
+
orderBuilder?: Maybe<CommerceExpValidOrderResponse>;
|
|
13197
|
+
quoteReEstimation?: Maybe<CommerceExpReEstimateQuoteResult>;
|
|
13198
|
+
removeAdmin?: Maybe<CommerceExpRemoveAdminPayload>;
|
|
13199
|
+
sampleMutation?: Maybe<CommerceExpGenericMutationPayload>;
|
|
13200
|
+
setPaymentMethodDefault?: Maybe<CommerceExpSetDefaultPaymentMethodPayload>;
|
|
13201
|
+
setupIntent?: Maybe<CommerceExpSetupIntentPayload>;
|
|
13202
|
+
updateInvoiceGroup?: Maybe<CommerceExpUpdateInvoiceGroupPayload>;
|
|
13203
|
+
updatePaymentMethodInInvoiceGroups?: Maybe<CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload>;
|
|
13204
|
+
updateTransactionAccount?: Maybe<CommerceExpUpdateTransactionAccountPayload>;
|
|
13205
|
+
};
|
|
13206
|
+
export declare type CommerceExpCcpMutationActivateEntitlementsArgs = {
|
|
13207
|
+
entitlements: Array<CommerceExpActivateEntitlementInfo>;
|
|
13208
|
+
siteId: Scalars['ID']['input'];
|
|
13209
|
+
};
|
|
13210
|
+
export declare type CommerceExpCcpMutationCreateAdminArgs = {
|
|
13211
|
+
input: CommerceExpCreateAdminInput;
|
|
13212
|
+
txaId: Scalars['ID']['input'];
|
|
13213
|
+
};
|
|
13214
|
+
export declare type CommerceExpCcpMutationCreateConfirmPaymentIntentArgs = {
|
|
13215
|
+
input: CommerceExpConfirmPaymentIntentInput;
|
|
13216
|
+
invoiceId: Scalars['ID']['input'];
|
|
13217
|
+
txaId: Scalars['ID']['input'];
|
|
13218
|
+
};
|
|
13219
|
+
export declare type CommerceExpCcpMutationCreateContactArgs = {
|
|
13220
|
+
input: CommerceExpCreateContactInput;
|
|
13221
|
+
txaId: Scalars['ID']['input'];
|
|
13222
|
+
};
|
|
13223
|
+
export declare type CommerceExpCcpMutationCreateInvoiceGroupForTxaArgs = {
|
|
13224
|
+
input: CommerceExpCreateInvoiceGroupForTxaInput;
|
|
13225
|
+
};
|
|
13226
|
+
export declare type CommerceExpCcpMutationCreateInvoiceGroupIfNeededArgs = {
|
|
13227
|
+
input: CommerceExpCreateInvoiceGroupIfNeededInput;
|
|
13228
|
+
};
|
|
13229
|
+
export declare type CommerceExpCcpMutationCreatePaymentMethodArgs = {
|
|
13230
|
+
paymentMethodInput: CommerceExpCreatePaymentMethodInput;
|
|
13231
|
+
txaId: Scalars['ID']['input'];
|
|
13232
|
+
};
|
|
13233
|
+
export declare type CommerceExpCcpMutationCreateTransactionAccountArgs = {
|
|
13234
|
+
input: CommerceExpCreateTransactionAccountInput;
|
|
13235
|
+
};
|
|
13236
|
+
export declare type CommerceExpCcpMutationDeleteContactArgs = {
|
|
13237
|
+
input: CommerceExpContactInput;
|
|
13238
|
+
txaId: Scalars['ID']['input'];
|
|
13239
|
+
};
|
|
13240
|
+
export declare type CommerceExpCcpMutationDeletePaymentMethodArgs = {
|
|
13241
|
+
id: Scalars['ID']['input'];
|
|
13242
|
+
};
|
|
13243
|
+
export declare type CommerceExpCcpMutationMutateIfValidEntitlementArgs = {
|
|
13244
|
+
entitlementAri: Scalars['ID']['input'];
|
|
13245
|
+
};
|
|
13246
|
+
export declare type CommerceExpCcpMutationOrderBuilderArgs = {
|
|
13247
|
+
input: CommerceExpOrderBuilderInput;
|
|
13248
|
+
};
|
|
13249
|
+
export declare type CommerceExpCcpMutationQuoteReEstimationArgs = {
|
|
13250
|
+
id: Scalars['ID']['input'];
|
|
13251
|
+
};
|
|
13252
|
+
export declare type CommerceExpCcpMutationRemoveAdminArgs = {
|
|
13253
|
+
input: CommerceExpRemoveAdminInput;
|
|
13254
|
+
txaId: Scalars['ID']['input'];
|
|
13255
|
+
};
|
|
13256
|
+
export declare type CommerceExpCcpMutationSampleMutationArgs = {
|
|
13257
|
+
shouldSuccess: Scalars['Boolean']['input'];
|
|
13258
|
+
};
|
|
13259
|
+
export declare type CommerceExpCcpMutationSetPaymentMethodDefaultArgs = {
|
|
13260
|
+
id: Scalars['ID']['input'];
|
|
13261
|
+
};
|
|
13262
|
+
export declare type CommerceExpCcpMutationSetupIntentArgs = {
|
|
13263
|
+
input: CommerceExpSetupIntentInput;
|
|
13264
|
+
txaId: Scalars['ID']['input'];
|
|
13265
|
+
};
|
|
13266
|
+
export declare type CommerceExpCcpMutationUpdateInvoiceGroupArgs = {
|
|
13267
|
+
input: CommerceExpInvoiceGroupInput;
|
|
13268
|
+
invoiceGroupId: Scalars['ID']['input'];
|
|
13269
|
+
};
|
|
13270
|
+
export declare type CommerceExpCcpMutationUpdatePaymentMethodInInvoiceGroupsArgs = {
|
|
13271
|
+
defaultPaymentMethod: Scalars['String']['input'];
|
|
13272
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13273
|
+
};
|
|
13274
|
+
export declare type CommerceExpCcpMutationUpdateTransactionAccountArgs = {
|
|
13275
|
+
input: CommerceExpTransactionAccountInput;
|
|
13276
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
13277
|
+
};
|
|
13278
|
+
export declare type CommerceExpCcpMutationWithQuery = {
|
|
13279
|
+
__typename?: 'CommerceExpCcpMutationWithQuery';
|
|
13280
|
+
ccp?: Maybe<CommerceExpCcpMutation>;
|
|
13281
|
+
query?: Maybe<Query>;
|
|
13282
|
+
};
|
|
13283
|
+
export declare enum CommerceExpCcpOfferingRelationshipDirection {
|
|
13284
|
+
From = "FROM",
|
|
13285
|
+
To = "TO"
|
|
13286
|
+
}
|
|
13287
|
+
export declare enum CommerceExpCcpOfferingRelationshipType {
|
|
13288
|
+
AddonDependence = "ADDON_DEPENDENCE",
|
|
13289
|
+
AppCompatibility = "APP_COMPATIBILITY",
|
|
13290
|
+
Collection = "COLLECTION",
|
|
13291
|
+
CollectionTrial = "COLLECTION_TRIAL",
|
|
13292
|
+
Enterprise = "ENTERPRISE",
|
|
13293
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
13294
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
13295
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
13296
|
+
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
13297
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
13298
|
+
}
|
|
13299
|
+
export declare enum CommerceExpCcpOfferingStatus {
|
|
13300
|
+
Active = "ACTIVE",
|
|
13301
|
+
AtNotice = "AT_NOTICE",
|
|
13302
|
+
Draft = "DRAFT",
|
|
13303
|
+
Expired = "EXPIRED"
|
|
13304
|
+
}
|
|
13305
|
+
export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase & CommerceExpNode & {
|
|
13306
|
+
__typename?: 'CommerceExpCcpOrder';
|
|
13307
|
+
additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
|
|
13308
|
+
createdDate?: Maybe<Scalars['Float']['output']>;
|
|
13309
|
+
error?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
13310
|
+
id: Scalars['ID']['output'];
|
|
13311
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13312
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
13313
|
+
key: Scalars['String']['output'];
|
|
13314
|
+
processingResult?: Maybe<CommerceExpOrderProcessingResult>;
|
|
13315
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
13316
|
+
status?: Maybe<CommerceExpOrderStatus>;
|
|
13317
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13318
|
+
};
|
|
13319
|
+
export declare type CommerceExpCcpOrderBase = {
|
|
13320
|
+
additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrderBase>>>;
|
|
13321
|
+
createdDate?: Maybe<Scalars['Float']['output']>;
|
|
13322
|
+
id: Scalars['ID']['output'];
|
|
13323
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13324
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
13325
|
+
key: Scalars['String']['output'];
|
|
13326
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
13327
|
+
};
|
|
13328
|
+
export declare type CommerceExpCcpOrderDefault = {
|
|
13329
|
+
__typename?: 'CommerceExpCcpOrderDefault';
|
|
13330
|
+
billingAnchorTime?: Maybe<CommerceExpOrderDefaultBillingAnchorTime>;
|
|
13331
|
+
endTimestamp?: Maybe<CommerceExpOrderDefaultEndTimestamp>;
|
|
13332
|
+
invoiceGroup?: Maybe<CommerceExpOrderDefaultInvoiceGroup>;
|
|
13333
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13334
|
+
pricingPlan?: Maybe<CommerceExpOrderDefaultPricingPlan>;
|
|
13335
|
+
};
|
|
13336
|
+
export declare type CommerceExpCcpOrderPreview = CommerceExpCcpOrderBase & {
|
|
13337
|
+
__typename?: 'CommerceExpCcpOrderPreview';
|
|
13338
|
+
additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrderPreview>>>;
|
|
13339
|
+
createdDate?: Maybe<Scalars['Float']['output']>;
|
|
13340
|
+
error?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
13341
|
+
id: Scalars['ID']['output'];
|
|
13342
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13343
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderItem>>>;
|
|
13344
|
+
key: Scalars['String']['output'];
|
|
13345
|
+
processingResult?: Maybe<CommerceExpOrderProcessingResult>;
|
|
13346
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
13347
|
+
status?: Maybe<CommerceExpOrderStatus>;
|
|
13348
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13349
|
+
};
|
|
13350
|
+
export declare type CommerceExpCcpOrderV3 = {
|
|
13351
|
+
__typename?: 'CommerceExpCcpOrderV3';
|
|
13352
|
+
error?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
13353
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
13354
|
+
processingResult?: Maybe<CommerceExpOrderProcessingResult>;
|
|
13355
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
13356
|
+
successResult?: Maybe<CommerceExpCcpOrder>;
|
|
13357
|
+
};
|
|
13358
|
+
export declare type CommerceExpCcpOrderValidationError = {
|
|
13359
|
+
__typename?: 'CommerceExpCcpOrderValidationError';
|
|
13360
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
13361
|
+
detail?: Maybe<Scalars['String']['output']>;
|
|
13362
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13363
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
13364
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13365
|
+
};
|
|
13366
|
+
export declare type CommerceExpCcpPreDunning = {
|
|
13367
|
+
__typename?: 'CommerceExpCcpPreDunning';
|
|
13368
|
+
endAt?: Maybe<Scalars['Float']['output']>;
|
|
13369
|
+
preDunningAttempts?: Maybe<Array<Maybe<CommerceExpPreDunningAttempt>>>;
|
|
13370
|
+
};
|
|
13371
|
+
export declare type CommerceExpCcpPricingPlan = CommerceExpNode & {
|
|
13372
|
+
__typename?: 'CommerceExpCcpPricingPlan';
|
|
13373
|
+
activatedWithReason?: Maybe<CommerceExpPricingPlanActivatedReason>;
|
|
13374
|
+
currency?: Maybe<CommerceExpPricingPlanCurrency>;
|
|
13375
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13376
|
+
id: Scalars['ID']['output'];
|
|
13377
|
+
items?: Maybe<Array<Maybe<CommerceExpPricingPlanItem>>>;
|
|
13378
|
+
key: Scalars['String']['output'];
|
|
13379
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13380
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
13381
|
+
offeringName?: Maybe<Scalars['String']['output']>;
|
|
13382
|
+
primaryCycle?: Maybe<CommerceExpPricingPlanCycle>;
|
|
13383
|
+
productKey?: Maybe<Scalars['ID']['output']>;
|
|
13384
|
+
sku?: Maybe<Scalars['String']['output']>;
|
|
13385
|
+
status?: Maybe<CommerceExpPricingPlanStatus>;
|
|
13386
|
+
supportedBillingSystems?: Maybe<Array<Maybe<CommerceExpSupportedBillingSystems>>>;
|
|
13387
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
13388
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13389
|
+
};
|
|
13390
|
+
export declare type CommerceExpCcpPricingPlanItemsArgs = {
|
|
13391
|
+
chargeTypesFilter?: InputMaybe<Array<InputMaybe<CommerceExpPricingPlanItemChargeType>>>;
|
|
13392
|
+
};
|
|
13393
|
+
export declare enum CommerceExpCcpPricingType {
|
|
13394
|
+
External = "EXTERNAL",
|
|
13395
|
+
Free = "FREE",
|
|
13396
|
+
LimitedFree = "LIMITED_FREE",
|
|
13397
|
+
Paid = "PAID"
|
|
13398
|
+
}
|
|
13399
|
+
export declare type CommerceExpCcpProduct = CommerceExpNode & {
|
|
13400
|
+
__typename?: 'CommerceExpCcpProduct';
|
|
13401
|
+
chargeElements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13402
|
+
id: Scalars['ID']['output'];
|
|
13403
|
+
key: Scalars['String']['output'];
|
|
13404
|
+
};
|
|
13405
|
+
export declare type CommerceExpCcpPromotion = {
|
|
13406
|
+
__typename?: 'CommerceExpCcpPromotion';
|
|
13407
|
+
allowedRedemptionMethods?: Maybe<Array<Maybe<CommerceExpAllowedRedemptionMethods>>>;
|
|
13408
|
+
applicationReason?: Maybe<CommerceExpApplicationReasonResponse>;
|
|
13409
|
+
benefits?: Maybe<Array<Maybe<CommerceExpPromotionBenefit>>>;
|
|
13410
|
+
eligibilityRules?: Maybe<CommerceExpEligibilityRule>;
|
|
13411
|
+
eligiblePromotionWindow?: Maybe<CommerceExpEligiblePromotionWindow>;
|
|
13412
|
+
key: Scalars['String']['output'];
|
|
13413
|
+
maxRedemptions?: Maybe<Scalars['Int']['output']>;
|
|
13414
|
+
promotionCodeType?: Maybe<CommerceExpPromotionCodeType>;
|
|
13415
|
+
promotionInstanceId?: Maybe<Scalars['String']['output']>;
|
|
13416
|
+
purpose?: Maybe<CommerceExpPromotionPurpose>;
|
|
13417
|
+
status?: Maybe<CommerceExpPromotionStatus>;
|
|
13418
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13419
|
+
type?: Maybe<CommerceExpPromotionType>;
|
|
13420
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13421
|
+
};
|
|
12474
13422
|
export declare type CommerceExpCcpQuery = {
|
|
12475
13423
|
__typename?: 'CommerceExpCcpQuery';
|
|
12476
|
-
|
|
13424
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
13425
|
+
entitlementSearch?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
13426
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13427
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13428
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
13429
|
+
isPromocodeApplicable?: Maybe<CommerceExpOfferingIsPromocodeApplicable>;
|
|
13430
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
13431
|
+
orderV3?: Maybe<CommerceExpCcpOrderV3>;
|
|
13432
|
+
orders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
|
|
13433
|
+
paginatedTransactionAccountsForUser?: Maybe<CommerceExpTransactionAccountConnection>;
|
|
13434
|
+
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
13435
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
13436
|
+
pricingPlans?: Maybe<Array<Maybe<CommerceExpCcpPricingPlan>>>;
|
|
13437
|
+
product?: Maybe<CommerceExpCcpProduct>;
|
|
13438
|
+
products?: Maybe<Array<Maybe<CommerceExpCcpProduct>>>;
|
|
13439
|
+
quote?: Maybe<CommerceExpCcpQuote>;
|
|
13440
|
+
testField?: Maybe<CommerceExpCommerceExpTestField>;
|
|
13441
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13442
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
13443
|
+
transactionAccountsForUser?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
13444
|
+
};
|
|
13445
|
+
export declare type CommerceExpCcpQueryEntitlementArgs = {
|
|
13446
|
+
id: Scalars['ID']['input'];
|
|
13447
|
+
};
|
|
13448
|
+
export declare type CommerceExpCcpQueryEntitlementSearchArgs = {
|
|
13449
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13450
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13451
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13453
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
12477
13454
|
};
|
|
12478
|
-
export declare type
|
|
12479
|
-
|
|
13455
|
+
export declare type CommerceExpCcpQueryEntitlementsArgs = {
|
|
13456
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13457
|
+
};
|
|
13458
|
+
export declare type CommerceExpCcpQueryInvoiceGroupArgs = {
|
|
13459
|
+
id: Scalars['ID']['input'];
|
|
13460
|
+
};
|
|
13461
|
+
export declare type CommerceExpCcpQueryInvoiceGroupsArgs = {
|
|
13462
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13463
|
+
};
|
|
13464
|
+
export declare type CommerceExpCcpQueryIsPromocodeApplicableArgs = {
|
|
13465
|
+
applicationType?: InputMaybe<CommerceExpPromotionApplicationType>;
|
|
13466
|
+
code: Scalars['String']['input'];
|
|
13467
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
13468
|
+
cycleInterval?: InputMaybe<CommerceExpCycleInterval>;
|
|
13469
|
+
offeringLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
13470
|
+
offeringLevelPrev?: InputMaybe<Scalars['Int']['input']>;
|
|
13471
|
+
offeringStatus: CommerceExpCcpOfferingStatus;
|
|
13472
|
+
pricingType?: InputMaybe<CommerceExpCcpPricingType>;
|
|
13473
|
+
productKey: Scalars['ID']['input'];
|
|
13474
|
+
};
|
|
13475
|
+
export declare type CommerceExpCcpQueryOrderArgs = {
|
|
13476
|
+
id: Scalars['ID']['input'];
|
|
13477
|
+
};
|
|
13478
|
+
export declare type CommerceExpCcpQueryOrderV3Args = {
|
|
13479
|
+
id: Scalars['ID']['input'];
|
|
13480
|
+
transactionAccountId: Scalars['String']['input'];
|
|
13481
|
+
};
|
|
13482
|
+
export declare type CommerceExpCcpQueryOrdersArgs = {
|
|
13483
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13484
|
+
};
|
|
13485
|
+
export declare type CommerceExpCcpQueryPaginatedTransactionAccountsForUserArgs = {
|
|
13486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13487
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13489
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13490
|
+
};
|
|
13491
|
+
export declare type CommerceExpCcpQueryPaymentMethodArgs = {
|
|
13492
|
+
id: Scalars['ID']['input'];
|
|
13493
|
+
};
|
|
13494
|
+
export declare type CommerceExpCcpQueryPricingPlanArgs = {
|
|
13495
|
+
id: Scalars['ID']['input'];
|
|
13496
|
+
};
|
|
13497
|
+
export declare type CommerceExpCcpQueryPricingPlansArgs = {
|
|
13498
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13499
|
+
};
|
|
13500
|
+
export declare type CommerceExpCcpQueryProductArgs = {
|
|
13501
|
+
id: Scalars['ID']['input'];
|
|
13502
|
+
};
|
|
13503
|
+
export declare type CommerceExpCcpQueryProductsArgs = {
|
|
13504
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13505
|
+
};
|
|
13506
|
+
export declare type CommerceExpCcpQueryQuoteArgs = {
|
|
13507
|
+
id: Scalars['ID']['input'];
|
|
13508
|
+
};
|
|
13509
|
+
export declare type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
13510
|
+
id: Scalars['ID']['input'];
|
|
13511
|
+
};
|
|
13512
|
+
export declare type CommerceExpCcpQueryTransactionAccountsArgs = {
|
|
13513
|
+
ids: Array<Scalars['ID']['input']>;
|
|
13514
|
+
};
|
|
13515
|
+
export declare type CommerceExpCcpQuote = CommerceExpNode & {
|
|
13516
|
+
__typename?: 'CommerceExpCcpQuote';
|
|
13517
|
+
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
13518
|
+
aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
13519
|
+
aggregatedUpcomingBillsLineForBAC?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
13520
|
+
cancelledReason?: Maybe<CommerceExpCanceledReason>;
|
|
13521
|
+
contacts?: Maybe<Array<Maybe<CommerceExpContact>>>;
|
|
13522
|
+
contractType?: Maybe<Scalars['String']['output']>;
|
|
13523
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
13524
|
+
createdBy?: Maybe<CommerceExpAuthorContextDto>;
|
|
13525
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
13526
|
+
expiresAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
13527
|
+
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
13528
|
+
externalNotes?: Maybe<Array<Maybe<CommerceExpNoteDto>>>;
|
|
13529
|
+
finalizedAt?: Maybe<Scalars['Float']['output']>;
|
|
13530
|
+
fromQuote?: Maybe<Scalars['String']['output']>;
|
|
13531
|
+
hasPauseBillingLineItemForEntitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
13532
|
+
id: Scalars['ID']['output'];
|
|
13533
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13534
|
+
isEnterpriseQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
13535
|
+
isMultiScheduledQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
13536
|
+
key: Scalars['String']['output'];
|
|
13537
|
+
lineItemDisplayGroupForBAC?: Maybe<Array<Maybe<CommerceExpGroupedQuoteLineItem>>>;
|
|
13538
|
+
lineItemDisplayGroupForBAC2?: Maybe<CommerceExpLineItemDisplayGroupResult>;
|
|
13539
|
+
lineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
|
|
13540
|
+
lineItems2?: Maybe<CommerceExpLineItemsResult>;
|
|
13541
|
+
lineItemsCount?: Maybe<Scalars['Int']['output']>;
|
|
13542
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
13543
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13544
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
13545
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
13546
|
+
revision?: Maybe<Scalars['Int']['output']>;
|
|
13547
|
+
staleReason?: Maybe<CommerceExpStaleReason>;
|
|
13548
|
+
status?: Maybe<CommerceExpQuoteStatus>;
|
|
13549
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
13550
|
+
taxEstimate?: Maybe<Scalars['Float']['output']>;
|
|
13551
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
13552
|
+
transactionAccount: CommerceExpCcpTransactionAccount;
|
|
13553
|
+
upcomingBills?: Maybe<CommerceExpUpcomingBills>;
|
|
13554
|
+
upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
|
|
13555
|
+
upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
|
|
13556
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
13557
|
+
updatedBy?: Maybe<CommerceExpAuthorContextDto>;
|
|
13558
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13559
|
+
};
|
|
13560
|
+
export declare type CommerceExpCcpQuoteHasPauseBillingLineItemForEntitlementArgs = {
|
|
13561
|
+
entitlementId: Scalars['ID']['input'];
|
|
13562
|
+
};
|
|
13563
|
+
export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBacArgs = {
|
|
13564
|
+
groupingLevel?: InputMaybe<CommerceExpQuoteLineItemGroupingLevelType>;
|
|
13565
|
+
};
|
|
13566
|
+
export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBac2Args = {
|
|
13567
|
+
groupingLevel?: InputMaybe<CommerceExpQuoteLineItemGroupingLevelType>;
|
|
13568
|
+
};
|
|
13569
|
+
export declare type CommerceExpCcpRelationshipFilter = {
|
|
13570
|
+
relationshipType?: InputMaybe<Scalars['String']['input']>;
|
|
13571
|
+
};
|
|
13572
|
+
export declare type CommerceExpCcpSubscription = {
|
|
13573
|
+
__typename?: 'CommerceExpCcpSubscription';
|
|
13574
|
+
accountDetails?: Maybe<CommerceExpAccountDetails>;
|
|
13575
|
+
allowances?: Maybe<Array<Maybe<CommerceExpAllowanceDetails>>>;
|
|
13576
|
+
billingPeriodDetails?: Maybe<CommerceExpBillingPeriodDetails>;
|
|
13577
|
+
chargeDetails?: Maybe<CommerceExpChargeDetails>;
|
|
13578
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
13579
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
13580
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13581
|
+
isInPreDunning?: Maybe<Scalars['Boolean']['output']>;
|
|
13582
|
+
isInvoiceGenerationPending?: Maybe<Scalars['Boolean']['output']>;
|
|
13583
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
13584
|
+
pauseBilling?: Maybe<CommerceExpPauseBilling>;
|
|
13585
|
+
relatedQuoteForNextCycleScheduledChange?: Maybe<CommerceExpCcpQuote>;
|
|
13586
|
+
scheduledChanges?: Maybe<CommerceExpScheduledChanges>;
|
|
13587
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
13588
|
+
status?: Maybe<CommerceExpSubscriptionStatus>;
|
|
13589
|
+
trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
|
|
13590
|
+
unpaidInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
13591
|
+
};
|
|
13592
|
+
export declare type CommerceExpCcpSubscriptionIsInPreDunningArgs = {
|
|
13593
|
+
invoiceRequestStatus: CommerceExpInvoiceRequestStatusType;
|
|
13594
|
+
};
|
|
13595
|
+
export declare type CommerceExpCcpSubscriptionIsInvoiceGenerationPendingArgs = {
|
|
13596
|
+
invoiceRequestStatus: CommerceExpInvoiceRequestStatusType;
|
|
13597
|
+
};
|
|
13598
|
+
export declare type CommerceExpCcpSubscriptionTrial = {
|
|
13599
|
+
__typename?: 'CommerceExpCcpSubscriptionTrial';
|
|
13600
|
+
endBehaviour?: Maybe<CommerceExpSubscriptionTrialEndBehaviour>;
|
|
13601
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
13602
|
+
isCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
13603
|
+
offeringId?: Maybe<Scalars['String']['output']>;
|
|
13604
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
13605
|
+
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
13606
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
13607
|
+
};
|
|
13608
|
+
export declare type CommerceExpCcpTransactionAccount = CommerceExpNode & {
|
|
13609
|
+
__typename?: 'CommerceExpCcpTransactionAccount';
|
|
13610
|
+
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
13611
|
+
billToPartyResult?: Maybe<CommerceExpBillToPartyResult>;
|
|
13612
|
+
billingAdminIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
13613
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
13614
|
+
createdAt2?: Maybe<Scalars['Float']['output']>;
|
|
13615
|
+
creditDetails?: Maybe<Array<Maybe<CommerceExpCreditDetails>>>;
|
|
13616
|
+
creditDetailsResult?: Maybe<Array<Maybe<CommerceExpCreditDetailsResult>>>;
|
|
13617
|
+
creditNotes?: Maybe<Array<Maybe<CommerceExpCcpCreditNote>>>;
|
|
13618
|
+
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
13619
|
+
defaultEffectivePaymentMethod?: Maybe<CommerceExpEffectivePaymentMethod>;
|
|
13620
|
+
defaultPaymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
13621
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13622
|
+
effectivePaymentMethods?: Maybe<Array<Maybe<CommerceExpEffectivePaymentMethod>>>;
|
|
13623
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13624
|
+
entitlements2?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
13625
|
+
entitlementsUnbounded?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
13626
|
+
hasActiveContract?: Maybe<Scalars['Boolean']['output']>;
|
|
13627
|
+
id: Scalars['ID']['output'];
|
|
13628
|
+
invoice?: Maybe<CommerceExpCcpInvoice>;
|
|
13629
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
13630
|
+
invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
13631
|
+
isTransactionAccountWhitelistedForHwm?: Maybe<Scalars['Boolean']['output']>;
|
|
13632
|
+
key: Scalars['String']['output'];
|
|
13633
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13634
|
+
paginatedInvoiceGroupsResult?: Maybe<CommerceExpInvoiceGroupResultConnection>;
|
|
13635
|
+
paymentMethods?: Maybe<Array<Maybe<CommerceExpPaymentMethod>>>;
|
|
13636
|
+
quotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
13637
|
+
shipToParties?: Maybe<Array<Maybe<CommerceExpShipToParty>>>;
|
|
13638
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
13639
|
+
status?: Maybe<CommerceExpTransactionAccountStatus>;
|
|
13640
|
+
usersWithRolesOnEntitlements?: Maybe<Array<Maybe<CommerceExpUserEntitlementRoles>>>;
|
|
13641
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13642
|
+
};
|
|
13643
|
+
export declare type CommerceExpCcpTransactionAccountCurrentUserPermissionsArgs = {
|
|
13644
|
+
permissionIds: Array<Scalars['String']['input']>;
|
|
13645
|
+
};
|
|
13646
|
+
export declare type CommerceExpCcpTransactionAccountEntitlementsArgs = {
|
|
13647
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13648
|
+
};
|
|
13649
|
+
export declare type CommerceExpCcpTransactionAccountEntitlements2Args = {
|
|
13650
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13651
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13652
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13653
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13654
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13655
|
+
};
|
|
13656
|
+
export declare type CommerceExpCcpTransactionAccountEntitlementsUnboundedArgs = {
|
|
13657
|
+
filter?: InputMaybe<CommerceExpEntitlementFilter>;
|
|
13658
|
+
};
|
|
13659
|
+
export declare type CommerceExpCcpTransactionAccountInvoiceArgs = {
|
|
13660
|
+
id: Scalars['ID']['input'];
|
|
13661
|
+
};
|
|
13662
|
+
export declare type CommerceExpCcpTransactionAccountPaginatedInvoiceGroupsResultArgs = {
|
|
13663
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13664
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
13665
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13666
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
13667
|
+
};
|
|
13668
|
+
export declare type CommerceExpCcpTransactionAccountQuotesArgs = {
|
|
13669
|
+
filter?: InputMaybe<CommerceExpQuoteFilter>;
|
|
13670
|
+
sort?: InputMaybe<Array<CommerceExpSort>>;
|
|
12480
13671
|
};
|
|
12481
|
-
export declare type
|
|
12482
|
-
__typename?: '
|
|
13672
|
+
export declare type CommerceExpChargeDetails = {
|
|
13673
|
+
__typename?: 'CommerceExpChargeDetails';
|
|
13674
|
+
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
13675
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13676
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
13677
|
+
promotionInstances?: Maybe<Array<Maybe<CommerceExpPromotionInstance>>>;
|
|
13678
|
+
};
|
|
13679
|
+
export declare type CommerceExpChargeElementDetails = {
|
|
13680
|
+
chargeElement: Scalars['String']['input'];
|
|
13681
|
+
quantity: Scalars['Int']['input'];
|
|
13682
|
+
};
|
|
13683
|
+
export declare type CommerceExpChargeQuantity = {
|
|
13684
|
+
__typename?: 'CommerceExpChargeQuantity';
|
|
13685
|
+
chargeElement: Scalars['String']['output'];
|
|
13686
|
+
lastChargedQuantity?: Maybe<Scalars['Int']['output']>;
|
|
13687
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
13688
|
+
quantity: Scalars['Int']['output'];
|
|
13689
|
+
};
|
|
13690
|
+
export declare type CommerceExpChargingDetails = {
|
|
13691
|
+
__typename?: 'CommerceExpChargingDetails';
|
|
13692
|
+
chargeQuantities?: Maybe<Array<Maybe<CommerceExpChargeQuantity>>>;
|
|
13693
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
13694
|
+
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
13695
|
+
};
|
|
13696
|
+
export declare type CommerceExpCommerceExpTestField = {
|
|
13697
|
+
__typename?: 'CommerceExpCommerceExpTestField';
|
|
12483
13698
|
age?: Maybe<Scalars['Int']['output']>;
|
|
12484
13699
|
name?: Maybe<Scalars['String']['output']>;
|
|
12485
13700
|
};
|
|
13701
|
+
export declare type CommerceExpCommercialContract = {
|
|
13702
|
+
__typename?: 'CommerceExpCommercialContract';
|
|
13703
|
+
billToParty?: Maybe<CommerceExpContractBillToParty>;
|
|
13704
|
+
contractEntitlement?: Maybe<CommerceExpContractEntitlement>;
|
|
13705
|
+
contractNumber?: Maybe<Scalars['String']['output']>;
|
|
13706
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
13707
|
+
currency?: Maybe<CommerceExpCurrency>;
|
|
13708
|
+
endsAt?: Maybe<Scalars['Float']['output']>;
|
|
13709
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpContractEntitlement>>>;
|
|
13710
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13711
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
13712
|
+
originalOrder?: Maybe<CommerceExpCcpOrder>;
|
|
13713
|
+
originalOrderId?: Maybe<Scalars['String']['output']>;
|
|
13714
|
+
paymentMethod?: Maybe<CommerceExpContractPaymentMethod>;
|
|
13715
|
+
purchaseOrderNumber?: Maybe<Scalars['String']['output']>;
|
|
13716
|
+
shipToParty?: Maybe<CommerceExpContractShipToParty>;
|
|
13717
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
13718
|
+
status?: Maybe<CommerceExpContractStatus>;
|
|
13719
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
13720
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
13721
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13722
|
+
versionChangeContext?: Maybe<CommerceExpVersionChangeContext>;
|
|
13723
|
+
};
|
|
13724
|
+
export declare type CommerceExpCommercialContractContractEntitlementArgs = {
|
|
13725
|
+
entitlementId: Scalars['ID']['input'];
|
|
13726
|
+
};
|
|
13727
|
+
export declare type CommerceExpComputedDetails = {
|
|
13728
|
+
__typename?: 'CommerceExpComputedDetails';
|
|
13729
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
13730
|
+
orderedPromotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
13731
|
+
removedPromotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
13732
|
+
usageOptions?: Maybe<CommerceExpOptedUsageOption>;
|
|
13733
|
+
};
|
|
13734
|
+
export declare type CommerceExpConfirmPaymentIntent = {
|
|
13735
|
+
__typename?: 'CommerceExpConfirmPaymentIntent';
|
|
13736
|
+
ccpInvoiceId?: Maybe<Scalars['String']['output']>;
|
|
13737
|
+
ccpPaymentMethodId?: Maybe<Scalars['String']['output']>;
|
|
13738
|
+
paymentIntentClientSecret?: Maybe<Scalars['String']['output']>;
|
|
13739
|
+
paymentIntentId?: Maybe<Scalars['String']['output']>;
|
|
13740
|
+
publicKey?: Maybe<Scalars['String']['output']>;
|
|
13741
|
+
stripePaymentMethodId?: Maybe<Scalars['String']['output']>;
|
|
13742
|
+
};
|
|
13743
|
+
export declare type CommerceExpConfirmPaymentIntentInput = {
|
|
13744
|
+
ccpPaymentMethod?: InputMaybe<Scalars['String']['input']>;
|
|
13745
|
+
};
|
|
13746
|
+
export declare type CommerceExpConfirmPaymentIntentPayload = CommerceExpMutationPayload & {
|
|
13747
|
+
__typename?: 'CommerceExpConfirmPaymentIntentPayload';
|
|
13748
|
+
confirmPayment?: Maybe<CommerceExpConfirmPaymentIntent>;
|
|
13749
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13750
|
+
success: Scalars['Boolean']['output'];
|
|
13751
|
+
};
|
|
13752
|
+
export declare type CommerceExpContact = {
|
|
13753
|
+
__typename?: 'CommerceExpContact';
|
|
13754
|
+
contactType?: Maybe<CommerceExpContactType>;
|
|
13755
|
+
customerType?: Maybe<CommerceExpCustomerType>;
|
|
13756
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
13757
|
+
principalAri?: Maybe<Scalars['String']['output']>;
|
|
13758
|
+
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
13759
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13760
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
13761
|
+
};
|
|
13762
|
+
export declare type CommerceExpContactInput = {
|
|
13763
|
+
contactType: CommerceExpContactType;
|
|
13764
|
+
customerType: CommerceExpCustomerType;
|
|
13765
|
+
principalAri: Scalars['String']['input'];
|
|
13766
|
+
resourceAri: Scalars['String']['input'];
|
|
13767
|
+
};
|
|
13768
|
+
export declare type CommerceExpContactManagementQuery = {
|
|
13769
|
+
__typename?: 'CommerceExpContactManagementQuery';
|
|
13770
|
+
contactsForCurrentUser?: Maybe<CommerceExpContactsForCurrentUser>;
|
|
13771
|
+
};
|
|
13772
|
+
export declare enum CommerceExpContactType {
|
|
13773
|
+
BusinessContact = "BUSINESS_CONTACT",
|
|
13774
|
+
CustomerContact = "CUSTOMER_CONTACT",
|
|
13775
|
+
OauthApiContact = "OAUTH_API_CONTACT",
|
|
13776
|
+
QuoteContact = "QUOTE_CONTACT"
|
|
13777
|
+
}
|
|
13778
|
+
export declare type CommerceExpContactsForCurrentUser = {
|
|
13779
|
+
__typename?: 'CommerceExpContactsForCurrentUser';
|
|
13780
|
+
isECCUser?: Maybe<Scalars['Boolean']['output']>;
|
|
13781
|
+
};
|
|
13782
|
+
export declare type CommerceExpContainerQuoteLineItem = {
|
|
13783
|
+
__typename?: 'CommerceExpContainerQuoteLineItem';
|
|
13784
|
+
apps?: Maybe<Array<CommerceExpLineItemResponse>>;
|
|
13785
|
+
products?: Maybe<Array<CommerceExpLineItemResponse>>;
|
|
13786
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
13787
|
+
};
|
|
13788
|
+
export declare type CommerceExpContractAchInfo = {
|
|
13789
|
+
__typename?: 'CommerceExpContractAchInfo';
|
|
13790
|
+
accountHolder?: Maybe<Scalars['String']['output']>;
|
|
13791
|
+
bankName?: Maybe<Scalars['String']['output']>;
|
|
13792
|
+
last4?: Maybe<Scalars['String']['output']>;
|
|
13793
|
+
routingNumber?: Maybe<Scalars['String']['output']>;
|
|
13794
|
+
valid?: Maybe<Scalars['Boolean']['output']>;
|
|
13795
|
+
};
|
|
13796
|
+
export declare type CommerceExpContractAchPaymentMethod = CommerceExpContractPaymentMethod & {
|
|
13797
|
+
__typename?: 'CommerceExpContractAchPaymentMethod';
|
|
13798
|
+
ach?: Maybe<CommerceExpContractAchInfo>;
|
|
13799
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
13800
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13801
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
13802
|
+
};
|
|
13803
|
+
export declare type CommerceExpContractAdjustment = {
|
|
13804
|
+
__typename?: 'CommerceExpContractAdjustment';
|
|
13805
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
13806
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
13807
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
13808
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
13809
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
13810
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
13811
|
+
};
|
|
13812
|
+
export declare type CommerceExpContractBillToParty = {
|
|
13813
|
+
__typename?: 'CommerceExpContractBillToParty';
|
|
13814
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13815
|
+
postalAddress?: Maybe<CommerceExpContractPostalAddress>;
|
|
13816
|
+
taxIds?: Maybe<Array<Maybe<CommerceExpContractTaxId>>>;
|
|
13817
|
+
};
|
|
13818
|
+
export declare type CommerceExpContractCardDetails = {
|
|
13819
|
+
__typename?: 'CommerceExpContractCardDetails';
|
|
13820
|
+
brand?: Maybe<Scalars['String']['output']>;
|
|
13821
|
+
cardHolderName?: Maybe<Scalars['String']['output']>;
|
|
13822
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
13823
|
+
expMonth?: Maybe<Scalars['Float']['output']>;
|
|
13824
|
+
expYear?: Maybe<Scalars['Float']['output']>;
|
|
13825
|
+
funding?: Maybe<Scalars['String']['output']>;
|
|
13826
|
+
last4?: Maybe<Scalars['String']['output']>;
|
|
13827
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
13828
|
+
};
|
|
13829
|
+
export declare type CommerceExpContractCardPaymentMethod = CommerceExpContractPaymentMethod & {
|
|
13830
|
+
__typename?: 'CommerceExpContractCardPaymentMethod';
|
|
13831
|
+
card?: Maybe<CommerceExpContractCardDetails>;
|
|
13832
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
13833
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13834
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
13835
|
+
};
|
|
13836
|
+
export declare type CommerceExpContractCreditNoteItem = {
|
|
13837
|
+
__typename?: 'CommerceExpContractCreditNoteItem';
|
|
13838
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
13839
|
+
creditNoteId?: Maybe<Scalars['ID']['output']>;
|
|
13840
|
+
creditNoteItemId?: Maybe<Scalars['ID']['output']>;
|
|
13841
|
+
invoice?: Maybe<CommerceExpCcpInvoice>;
|
|
13842
|
+
invoiceId?: Maybe<Scalars['ID']['output']>;
|
|
13843
|
+
invoiceItemIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
13844
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
13845
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
13846
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
13847
|
+
};
|
|
13848
|
+
export declare type CommerceExpContractDeferredPaymentMethod = CommerceExpContractPaymentMethod & {
|
|
13849
|
+
__typename?: 'CommerceExpContractDeferredPaymentMethod';
|
|
13850
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
13851
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13852
|
+
terms?: Maybe<CommerceExpTerms>;
|
|
13853
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
13854
|
+
};
|
|
13855
|
+
export declare type CommerceExpContractEntitlement = {
|
|
13856
|
+
__typename?: 'CommerceExpContractEntitlement';
|
|
13857
|
+
creditNoteItems?: Maybe<Array<Maybe<CommerceExpContractCreditNoteItem>>>;
|
|
13858
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
13859
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
13860
|
+
entitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
13861
|
+
expectedBills?: Maybe<Array<Maybe<CommerceExpExpectedBillsLine>>>;
|
|
13862
|
+
isMultiScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
13863
|
+
latestModification?: Maybe<CommerceExpContractModification>;
|
|
13864
|
+
latestModificationVersion?: Maybe<Scalars['Int']['output']>;
|
|
13865
|
+
modifications?: Maybe<Array<Maybe<CommerceExpContractModification>>>;
|
|
13866
|
+
status?: Maybe<CommerceExpEntitlementStatus>;
|
|
13867
|
+
};
|
|
13868
|
+
export declare type CommerceExpContractInvoiceItem = {
|
|
13869
|
+
__typename?: 'CommerceExpContractInvoiceItem';
|
|
13870
|
+
invoice?: Maybe<CommerceExpCcpInvoice>;
|
|
13871
|
+
invoiceId?: Maybe<Scalars['ID']['output']>;
|
|
13872
|
+
invoiceItemId?: Maybe<Scalars['ID']['output']>;
|
|
13873
|
+
invoiceNumber?: Maybe<Scalars['String']['output']>;
|
|
13874
|
+
period?: Maybe<CommerceExpPeriodResponse>;
|
|
13875
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
13876
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
13877
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
13878
|
+
};
|
|
13879
|
+
export declare type CommerceExpContractInvoiceItemMarginBlendedComputation = {
|
|
13880
|
+
__typename?: 'CommerceExpContractInvoiceItemMarginBlendedComputation';
|
|
13881
|
+
blendedMargin?: Maybe<Scalars['Float']['output']>;
|
|
13882
|
+
newGlp?: Maybe<Scalars['Float']['output']>;
|
|
13883
|
+
previousGlp?: Maybe<Scalars['Float']['output']>;
|
|
13884
|
+
renewPercentage?: Maybe<Scalars['Float']['output']>;
|
|
13885
|
+
renewalMargin?: Maybe<Scalars['Float']['output']>;
|
|
13886
|
+
renewalValue?: Maybe<Scalars['Float']['output']>;
|
|
13887
|
+
upsellMargin?: Maybe<Scalars['Float']['output']>;
|
|
13888
|
+
upsellPercentage?: Maybe<Scalars['Float']['output']>;
|
|
13889
|
+
upsellValue?: Maybe<Scalars['Float']['output']>;
|
|
13890
|
+
};
|
|
13891
|
+
export declare type CommerceExpContractMargin = {
|
|
13892
|
+
__typename?: 'CommerceExpContractMargin';
|
|
13893
|
+
amount: Scalars['Int']['output'];
|
|
13894
|
+
blended?: Maybe<Scalars['Boolean']['output']>;
|
|
13895
|
+
blendedComputation?: Maybe<CommerceExpContractInvoiceItemMarginBlendedComputation>;
|
|
13896
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
13897
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
13898
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
13899
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
13900
|
+
type: Scalars['String']['output'];
|
|
13901
|
+
};
|
|
13902
|
+
export declare type CommerceExpContractModification = {
|
|
13903
|
+
__typename?: 'CommerceExpContractModification';
|
|
13904
|
+
modifiedAt?: Maybe<Scalars['Int']['output']>;
|
|
13905
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
13906
|
+
orderId?: Maybe<Scalars['ID']['output']>;
|
|
13907
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
13908
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
13909
|
+
};
|
|
13910
|
+
export declare type CommerceExpContractPaymentMethod = {
|
|
13911
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
13912
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13913
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
13914
|
+
};
|
|
13915
|
+
export declare type CommerceExpContractPaypalInfo = {
|
|
13916
|
+
__typename?: 'CommerceExpContractPaypalInfo';
|
|
13917
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
13918
|
+
merchantId?: Maybe<Scalars['String']['output']>;
|
|
13919
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13920
|
+
};
|
|
13921
|
+
export declare type CommerceExpContractPaypalPaymentMethod = CommerceExpContractPaymentMethod & {
|
|
13922
|
+
__typename?: 'CommerceExpContractPaypalPaymentMethod';
|
|
13923
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
13924
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
13925
|
+
payPal?: Maybe<CommerceExpContractPaypalInfo>;
|
|
13926
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
13927
|
+
};
|
|
13928
|
+
export declare type CommerceExpContractPostalAddress = {
|
|
13929
|
+
__typename?: 'CommerceExpContractPostalAddress';
|
|
13930
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
13931
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
13932
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
13933
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
13934
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
13935
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
13936
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
13937
|
+
};
|
|
13938
|
+
export declare type CommerceExpContractShipToParty = {
|
|
13939
|
+
__typename?: 'CommerceExpContractShipToParty';
|
|
13940
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13941
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13942
|
+
postalAddress?: Maybe<CommerceExpContractPostalAddress>;
|
|
13943
|
+
taxIds?: Maybe<Array<Maybe<CommerceExpContractTaxId>>>;
|
|
13944
|
+
};
|
|
13945
|
+
export declare enum CommerceExpContractStatus {
|
|
13946
|
+
Active = "ACTIVE",
|
|
13947
|
+
Inactive = "INACTIVE"
|
|
13948
|
+
}
|
|
13949
|
+
export declare type CommerceExpContractTaxId = {
|
|
13950
|
+
__typename?: 'CommerceExpContractTaxId';
|
|
13951
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
13952
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
13953
|
+
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
13954
|
+
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
13955
|
+
};
|
|
13956
|
+
export declare type CommerceExpCreateAdminInput = {
|
|
13957
|
+
email: Scalars['String']['input'];
|
|
13958
|
+
};
|
|
13959
|
+
export declare type CommerceExpCreateAdminPayload = CommerceExpMutationPayload & {
|
|
13960
|
+
__typename?: 'CommerceExpCreateAdminPayload';
|
|
13961
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13962
|
+
success: Scalars['Boolean']['output'];
|
|
13963
|
+
};
|
|
13964
|
+
export declare type CommerceExpCreateContactInput = {
|
|
13965
|
+
contactType: CommerceExpContactType;
|
|
13966
|
+
customerType: CommerceExpCustomerType;
|
|
13967
|
+
email: Scalars['String']['input'];
|
|
13968
|
+
resourceAri: Scalars['String']['input'];
|
|
13969
|
+
};
|
|
13970
|
+
export declare type CommerceExpCreateContactPayload = CommerceExpMutationPayload & {
|
|
13971
|
+
__typename?: 'CommerceExpCreateContactPayload';
|
|
13972
|
+
contact?: Maybe<CommerceExpContact>;
|
|
13973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13974
|
+
success: Scalars['Boolean']['output'];
|
|
13975
|
+
};
|
|
13976
|
+
export declare type CommerceExpCreateEntitlementCartDirectBuyInput = {
|
|
13977
|
+
chargeQuantity: Scalars['Int']['input'];
|
|
13978
|
+
invoiceGroupId: Scalars['ID']['input'];
|
|
13979
|
+
pricingPlanId: Scalars['ID']['input'];
|
|
13980
|
+
};
|
|
13981
|
+
export declare type CommerceExpCreateEntitlementExistingEntitlementInformation = {
|
|
13982
|
+
entitlementId: Scalars['ID']['input'];
|
|
13983
|
+
};
|
|
13984
|
+
export declare type CommerceExpCreateEntitlementInput = {
|
|
13985
|
+
offeringKey?: InputMaybe<Scalars['String']['input']>;
|
|
13986
|
+
orderOptions?: InputMaybe<CommerceExpCreateEntitlementOrderOptions>;
|
|
13987
|
+
relatedEntitlements?: InputMaybe<Array<CommerceExpCreateEntitlementRelationship>>;
|
|
13988
|
+
relatesToEntitlements?: InputMaybe<Array<CommerceExpCreateEntitlementRelatesTo>>;
|
|
13989
|
+
};
|
|
13990
|
+
export declare type CommerceExpCreateEntitlementNewEntitlementInformation = {
|
|
13991
|
+
hostName?: InputMaybe<Scalars['String']['input']>;
|
|
13992
|
+
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
13993
|
+
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
13994
|
+
relatedEntitlements?: InputMaybe<Array<CommerceExpCreateEntitlementRelationship>>;
|
|
13995
|
+
};
|
|
13996
|
+
export declare type CommerceExpCreateEntitlementOrderOptions = {
|
|
13997
|
+
billingCycle?: InputMaybe<CommerceExpPricingPlanInterval>;
|
|
13998
|
+
invoiceGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
13999
|
+
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
14000
|
+
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
14001
|
+
trial?: InputMaybe<CommerceExpTrialIntentInput>;
|
|
14002
|
+
};
|
|
14003
|
+
export declare type CommerceExpCreateEntitlementProfilePayload = CommerceExpMutationPayload & {
|
|
14004
|
+
__typename?: 'CommerceExpCreateEntitlementProfilePayload';
|
|
14005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14006
|
+
success: Scalars['Boolean']['output'];
|
|
14007
|
+
};
|
|
14008
|
+
export declare type CommerceExpCreateEntitlementRelatesTo = {
|
|
14009
|
+
entitlement?: InputMaybe<CommerceExpEntitlementDetailsForCreateEntitlement>;
|
|
14010
|
+
};
|
|
14011
|
+
export declare type CommerceExpCreateEntitlementRelationship = {
|
|
14012
|
+
direction: CommerceExpCcpOfferingRelationshipDirection;
|
|
14013
|
+
entitlement: CommerceExpCreateEntitlementRelationshipEntitlementInformation;
|
|
14014
|
+
relationshipType: CommerceExpCcpOfferingRelationshipType;
|
|
14015
|
+
};
|
|
14016
|
+
export declare type CommerceExpCreateEntitlementRelationshipEntitlementInformation = {
|
|
14017
|
+
existingEntitlement?: InputMaybe<CommerceExpCreateEntitlementExistingEntitlementInformation>;
|
|
14018
|
+
newEntitlement?: InputMaybe<CommerceExpCreateEntitlementNewEntitlementInformation>;
|
|
14019
|
+
};
|
|
14020
|
+
export declare type CommerceExpCreateInvoiceGroupForTxaInput = {
|
|
14021
|
+
txaId: Scalars['ID']['input'];
|
|
14022
|
+
};
|
|
14023
|
+
export declare type CommerceExpCreateInvoiceGroupForTxaPayload = CommerceExpMutationPayload & {
|
|
14024
|
+
__typename?: 'CommerceExpCreateInvoiceGroupForTxaPayload';
|
|
14025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14026
|
+
newlyCreatedInvoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14027
|
+
success: Scalars['Boolean']['output'];
|
|
14028
|
+
};
|
|
14029
|
+
export declare type CommerceExpCreateInvoiceGroupIfNeededInput = {
|
|
14030
|
+
entitlementId: Scalars['ID']['input'];
|
|
14031
|
+
skipMutation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14032
|
+
};
|
|
14033
|
+
export declare type CommerceExpCreateInvoiceGroupIfNeededPayload = CommerceExpMutationPayload & {
|
|
14034
|
+
__typename?: 'CommerceExpCreateInvoiceGroupIfNeededPayload';
|
|
14035
|
+
createdInvoiceGroupForCardPaymentMethod?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14036
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14038
|
+
hasInvoiceGroupForDeferredPayment?: Maybe<Scalars['Boolean']['output']>;
|
|
14039
|
+
success: Scalars['Boolean']['output'];
|
|
14040
|
+
};
|
|
14041
|
+
export declare type CommerceExpCreatePaymentMethodInput = {
|
|
14042
|
+
currency: CommerceExpPaymentMethodCreationCurrency;
|
|
14043
|
+
payPal: CommerceExpPayPalInput;
|
|
14044
|
+
type: CommerceExpPaymentMethodCreationType;
|
|
14045
|
+
};
|
|
14046
|
+
export declare type CommerceExpCreatePaymentMethodPayload = CommerceExpMutationPayload & {
|
|
14047
|
+
__typename?: 'CommerceExpCreatePaymentMethodPayload';
|
|
14048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14049
|
+
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
14050
|
+
success: Scalars['Boolean']['output'];
|
|
14051
|
+
};
|
|
14052
|
+
export declare type CommerceExpCreateTransactionAccountInput = {
|
|
14053
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
14054
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14055
|
+
};
|
|
14056
|
+
export declare type CommerceExpCreateTransactionAccountPayload = CommerceExpMutationPayload & {
|
|
14057
|
+
__typename?: 'CommerceExpCreateTransactionAccountPayload';
|
|
14058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14059
|
+
success: Scalars['Boolean']['output'];
|
|
14060
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
14061
|
+
};
|
|
14062
|
+
export declare type CommerceExpCreateTxaAndIgIfNeededForCartPlaceOrderPayload = CommerceExpMutationPayload & {
|
|
14063
|
+
__typename?: 'CommerceExpCreateTxaAndIgIfNeededForCartPlaceOrderPayload';
|
|
14064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14065
|
+
success: Scalars['Boolean']['output'];
|
|
14066
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
14067
|
+
};
|
|
14068
|
+
export declare type CommerceExpCreditDetails = {
|
|
14069
|
+
__typename?: 'CommerceExpCreditDetails';
|
|
14070
|
+
availableCreditLimit?: Maybe<Scalars['Float']['output']>;
|
|
14071
|
+
creditOutstanding?: Maybe<Scalars['Float']['output']>;
|
|
14072
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14073
|
+
totalCreditLimit?: Maybe<Scalars['Float']['output']>;
|
|
14074
|
+
};
|
|
14075
|
+
export declare type CommerceExpCreditDetailsResult = CommerceExpCreditDetails | QueryError;
|
|
14076
|
+
export declare enum CommerceExpCreditNoteDtoRefundTypeEnum {
|
|
14077
|
+
CreditGrant = "CREDIT_GRANT",
|
|
14078
|
+
DunningCancellationCredit = "DUNNING_CANCELLATION_CREDIT",
|
|
14079
|
+
FullItemRefund = "FULL_ITEM_REFUND",
|
|
14080
|
+
TaxOnlyRefund = "TAX_ONLY_REFUND",
|
|
14081
|
+
WriteOff = "WRITE_OFF"
|
|
14082
|
+
}
|
|
14083
|
+
export declare enum CommerceExpCurrency {
|
|
14084
|
+
Jpy = "JPY",
|
|
14085
|
+
Usd = "USD"
|
|
14086
|
+
}
|
|
14087
|
+
export declare type CommerceExpCustomPromotionValueDto = {
|
|
14088
|
+
__typename?: 'CommerceExpCustomPromotionValueDto';
|
|
14089
|
+
applicationReason?: Maybe<CommerceExpApplicationReasonDto>;
|
|
14090
|
+
benefits?: Maybe<Array<Maybe<CommerceExpPromotionBenefitDto>>>;
|
|
14091
|
+
};
|
|
14092
|
+
export declare enum CommerceExpCustomerType {
|
|
14093
|
+
Direct = "DIRECT",
|
|
14094
|
+
Partner = "PARTNER"
|
|
14095
|
+
}
|
|
14096
|
+
export declare type CommerceExpCustomisableApplicationReasonResponse = {
|
|
14097
|
+
__typename?: 'CommerceExpCustomisableApplicationReasonResponse';
|
|
14098
|
+
id?: Maybe<CommerceExpApplicationReasonResponseSetLimiter>;
|
|
14099
|
+
};
|
|
14100
|
+
export declare type CommerceExpCustomisedValues = {
|
|
14101
|
+
__typename?: 'CommerceExpCustomisedValues';
|
|
14102
|
+
applicationReason?: Maybe<CommerceExpApplicationReason>;
|
|
14103
|
+
benefits?: Maybe<Array<Maybe<CommerceExpBenefit>>>;
|
|
14104
|
+
};
|
|
14105
|
+
export declare type CommerceExpCycle = {
|
|
14106
|
+
__typename?: 'CommerceExpCycle';
|
|
14107
|
+
interval?: Maybe<CommerceExpBillingCycle>;
|
|
14108
|
+
};
|
|
14109
|
+
export declare enum CommerceExpCycleInterval {
|
|
14110
|
+
Day = "DAY",
|
|
14111
|
+
Month = "MONTH",
|
|
14112
|
+
Week = "WEEK",
|
|
14113
|
+
Year = "YEAR"
|
|
14114
|
+
}
|
|
14115
|
+
export declare type CommerceExpDecimalLimiter = {
|
|
14116
|
+
__typename?: 'CommerceExpDecimalLimiter';
|
|
14117
|
+
type?: Maybe<CommerceExpDecimalLimiterType>;
|
|
14118
|
+
};
|
|
14119
|
+
export declare enum CommerceExpDecimalLimiterType {
|
|
14120
|
+
Range = "RANGE",
|
|
14121
|
+
Set = "SET"
|
|
14122
|
+
}
|
|
14123
|
+
export declare type CommerceExpDefaultAllowance = {
|
|
14124
|
+
__typename?: 'CommerceExpDefaultAllowance';
|
|
14125
|
+
amount?: Maybe<Scalars['Int']['output']>;
|
|
14126
|
+
cycle?: Maybe<CommerceExpAllowanceCycle>;
|
|
14127
|
+
isConsumer?: Maybe<Scalars['Boolean']['output']>;
|
|
14128
|
+
recipientEntity?: Maybe<CommerceExpRecipientEntity>;
|
|
14129
|
+
type?: Maybe<CommerceExpAllowanceType>;
|
|
14130
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
14131
|
+
};
|
|
14132
|
+
export declare type CommerceExpDeferredPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
|
|
14133
|
+
__typename?: 'CommerceExpDeferredPaymentMethod';
|
|
14134
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14135
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
14136
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
14137
|
+
id: Scalars['ID']['output'];
|
|
14138
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
14139
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
14140
|
+
terms?: Maybe<CommerceExpTerms>;
|
|
14141
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
14142
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
14143
|
+
};
|
|
14144
|
+
export declare type CommerceExpDeferredPaymentMethodPaginatedEntitlementsArgs = {
|
|
14145
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14146
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
14147
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14148
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
14149
|
+
};
|
|
14150
|
+
export declare type CommerceExpDeleteContactPayload = CommerceExpMutationPayload & {
|
|
14151
|
+
__typename?: 'CommerceExpDeleteContactPayload';
|
|
14152
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14153
|
+
success: Scalars['Boolean']['output'];
|
|
14154
|
+
};
|
|
14155
|
+
export declare type CommerceExpDeletePaymentMethodPayload = CommerceExpMutationPayload & {
|
|
14156
|
+
__typename?: 'CommerceExpDeletePaymentMethodPayload';
|
|
14157
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14158
|
+
success: Scalars['Boolean']['output'];
|
|
14159
|
+
};
|
|
14160
|
+
export declare type CommerceExpDiscount = CommerceExpPromotionBenefit & {
|
|
14161
|
+
__typename?: 'CommerceExpDiscount';
|
|
14162
|
+
benefitType?: Maybe<CommerceExpBenefitType>;
|
|
14163
|
+
customisable?: Maybe<CommerceExpPromotionBenefitCustomisable>;
|
|
14164
|
+
duration?: Maybe<CommerceExpDurationEnum>;
|
|
14165
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
14166
|
+
subBenefitType?: Maybe<CommerceExpSubBenefitType>;
|
|
14167
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
14168
|
+
};
|
|
14169
|
+
export declare type CommerceExpDowngradeOrderInput = {
|
|
14170
|
+
entitlementId: Scalars['String']['input'];
|
|
14171
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
14172
|
+
pricingType?: InputMaybe<CommerceExpCcpPricingType>;
|
|
14173
|
+
};
|
|
14174
|
+
export declare type CommerceExpDunningStatus = {
|
|
14175
|
+
__typename?: 'CommerceExpDunningStatus';
|
|
14176
|
+
attempt?: Maybe<CommerceExpDunningStatusAttempt>;
|
|
14177
|
+
attemptCount?: Maybe<Scalars['Int']['output']>;
|
|
14178
|
+
declineCode?: Maybe<Scalars['String']['output']>;
|
|
14179
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
14180
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14181
|
+
nextPaymentAttemptDate?: Maybe<Scalars['Float']['output']>;
|
|
14182
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
14183
|
+
};
|
|
14184
|
+
export declare enum CommerceExpDunningStatusAttempt {
|
|
14185
|
+
Five = "FIVE",
|
|
14186
|
+
Four = "FOUR",
|
|
14187
|
+
One = "ONE",
|
|
14188
|
+
Three = "THREE",
|
|
14189
|
+
Two = "TWO"
|
|
14190
|
+
}
|
|
14191
|
+
export declare type CommerceExpDurationDto = {
|
|
14192
|
+
__typename?: 'CommerceExpDurationDto';
|
|
14193
|
+
interval?: Maybe<CommerceExpDurationInterval>;
|
|
14194
|
+
intervalCount?: Maybe<Scalars['Int']['output']>;
|
|
14195
|
+
};
|
|
14196
|
+
export declare enum CommerceExpDurationEnum {
|
|
14197
|
+
Forever = "FOREVER",
|
|
14198
|
+
Once = "ONCE",
|
|
14199
|
+
Repeating = "REPEATING"
|
|
14200
|
+
}
|
|
14201
|
+
export declare enum CommerceExpDurationInterval {
|
|
14202
|
+
Month = "MONTH",
|
|
14203
|
+
Year = "YEAR"
|
|
14204
|
+
}
|
|
14205
|
+
export declare type CommerceExpEffectivePaymentMethod = CommerceExpAchPaymentMethod | CommerceExpCardPaymentMethod | CommerceExpDeferredPaymentMethod | CommerceExpPaymentMethodError | CommerceExpPaypalPaymentMethod;
|
|
14206
|
+
export declare type CommerceExpEffectiveTime = {
|
|
14207
|
+
__typename?: 'CommerceExpEffectiveTime';
|
|
14208
|
+
endsAt?: Maybe<CommerceExpEndsAt>;
|
|
14209
|
+
startsAt?: Maybe<CommerceExpStartsAt>;
|
|
14210
|
+
};
|
|
14211
|
+
export declare type CommerceExpEligibilityRule = {
|
|
14212
|
+
__typename?: 'CommerceExpEligibilityRule';
|
|
14213
|
+
pricingType?: Maybe<Array<Maybe<CommerceExpPricingType>>>;
|
|
14214
|
+
ruleCondition?: Maybe<CommerceExpRuleCondition>;
|
|
14215
|
+
};
|
|
14216
|
+
export declare type CommerceExpEligibleCondition = {
|
|
14217
|
+
__typename?: 'CommerceExpEligibleCondition';
|
|
14218
|
+
currency?: Maybe<Array<Maybe<CommerceExpEligibleConditionsCurrency>>>;
|
|
14219
|
+
cycleInterval?: Maybe<Array<Maybe<CommerceExpCycleInterval>>>;
|
|
14220
|
+
partnerTier?: Maybe<Array<Maybe<CommerceExpPartnerTier>>>;
|
|
14221
|
+
partnerType?: Maybe<Array<Maybe<CommerceExpPartnerType>>>;
|
|
14222
|
+
pricingType?: Maybe<Array<Maybe<CommerceExpPricingType>>>;
|
|
14223
|
+
productKey?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14224
|
+
products?: Maybe<Array<Maybe<CommerceExpEligibleConditionsProducts>>>;
|
|
14225
|
+
ruleCondition?: Maybe<CommerceExpRuleCondition>;
|
|
14226
|
+
saleTransitionType?: Maybe<Array<Maybe<CommerceExpEligibleConditionsSaleTransitionType>>>;
|
|
14227
|
+
unit?: Maybe<CommerceExpIntegerComparator>;
|
|
14228
|
+
};
|
|
14229
|
+
export declare enum CommerceExpEligibleConditionsCurrency {
|
|
14230
|
+
Usd = "USD"
|
|
14231
|
+
}
|
|
14232
|
+
export declare enum CommerceExpEligibleConditionsProducts {
|
|
14233
|
+
Statuspage = "STATUSPAGE"
|
|
14234
|
+
}
|
|
14235
|
+
export declare enum CommerceExpEligibleConditionsSaleTransitionType {
|
|
14236
|
+
Downgrade = "DOWNGRADE",
|
|
14237
|
+
New = "NEW",
|
|
14238
|
+
Renewal = "RENEWAL",
|
|
14239
|
+
Upgrade = "UPGRADE"
|
|
14240
|
+
}
|
|
14241
|
+
export declare type CommerceExpEligiblePromotionWindow = {
|
|
14242
|
+
__typename?: 'CommerceExpEligiblePromotionWindow';
|
|
14243
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
14244
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
14245
|
+
};
|
|
14246
|
+
export declare type CommerceExpEndCollectionOrderInput = {
|
|
14247
|
+
entitlementId: Scalars['String']['input'];
|
|
14248
|
+
};
|
|
14249
|
+
export declare type CommerceExpEndsAt = {
|
|
14250
|
+
__typename?: 'CommerceExpEndsAt';
|
|
14251
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14252
|
+
};
|
|
14253
|
+
export declare type CommerceExpEnterpriseGatekeeper = {
|
|
14254
|
+
__typename?: 'CommerceExpEnterpriseGatekeeper';
|
|
14255
|
+
organisations?: Maybe<Array<Maybe<CommerceExpOrganisation>>>;
|
|
14256
|
+
};
|
|
14257
|
+
export declare type CommerceExpEnterpriseInstanceFilter = {
|
|
14258
|
+
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
14259
|
+
};
|
|
14260
|
+
export declare type CommerceExpEntitlementAccountModificationForBac = {
|
|
14261
|
+
__typename?: 'CommerceExpEntitlementAccountModificationForBac';
|
|
14262
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14263
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
14264
|
+
validAccountModificationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
14265
|
+
};
|
|
14266
|
+
export declare enum CommerceExpEntitlementActionExperienceType {
|
|
14267
|
+
ContactSupport = "CONTACT_SUPPORT",
|
|
14268
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
14269
|
+
SelfServe = "SELF_SERVE"
|
|
14270
|
+
}
|
|
14271
|
+
export declare type CommerceExpEntitlementActionResult = {
|
|
14272
|
+
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
14273
|
+
};
|
|
14274
|
+
export declare type CommerceExpEntitlementActions = {
|
|
14275
|
+
__typename?: 'CommerceExpEntitlementActions';
|
|
14276
|
+
canApplyPromoCode?: Maybe<Scalars['Boolean']['output']>;
|
|
14277
|
+
canCancel?: Maybe<Scalars['Boolean']['output']>;
|
|
14278
|
+
canChangePlan?: Maybe<Scalars['Boolean']['output']>;
|
|
14279
|
+
canChangeQuantity?: Maybe<Scalars['Boolean']['output']>;
|
|
14280
|
+
canEndTrialToCanel?: Maybe<Scalars['Boolean']['output']>;
|
|
14281
|
+
canManageCustomerContact?: Maybe<Scalars['Boolean']['output']>;
|
|
14282
|
+
canOptOutTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
14283
|
+
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
14284
|
+
canRemoveFromEnterprise?: Maybe<Scalars['Boolean']['output']>;
|
|
14285
|
+
canUndoCancellation?: Maybe<Scalars['Boolean']['output']>;
|
|
14286
|
+
canViewBilllingPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
14287
|
+
};
|
|
14288
|
+
export declare type CommerceExpEntitlementActionsV2 = {
|
|
14289
|
+
__typename?: 'CommerceExpEntitlementActionsV2';
|
|
14290
|
+
applyPromoCode?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14291
|
+
cancel?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14292
|
+
changePlan?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14293
|
+
changeQuantity?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14294
|
+
deleteAppData?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14295
|
+
endTrialToCancel?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14296
|
+
manageCustomerContact?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14297
|
+
optOutTrial?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14298
|
+
reactivate?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14299
|
+
removeFromEnterprise?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14300
|
+
removeFromMultiInstance?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14301
|
+
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14302
|
+
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
14303
|
+
};
|
|
14304
|
+
export declare type CommerceExpEntitlementBillingPeriod = {
|
|
14305
|
+
__typename?: 'CommerceExpEntitlementBillingPeriod';
|
|
14306
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14307
|
+
entitlementId: Scalars['ID']['output'];
|
|
14308
|
+
isCurrentBillingPeriod?: Maybe<Scalars['Boolean']['output']>;
|
|
14309
|
+
isPricingPlanEligibleForHWM?: Maybe<Scalars['Boolean']['output']>;
|
|
14310
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14311
|
+
usageAggregations?: Maybe<CommerceExpUsageAggregationResponse>;
|
|
14312
|
+
};
|
|
14313
|
+
export declare type CommerceExpEntitlementBillingPeriodUsageAggregationsArgs = {
|
|
14314
|
+
input: CommerceExpUsageAggregationsInput;
|
|
14315
|
+
};
|
|
14316
|
+
export declare type CommerceExpEntitlementDetailsForCreateEntitlement = {
|
|
14317
|
+
entitlementId: Scalars['ID']['input'];
|
|
14318
|
+
};
|
|
14319
|
+
export declare type CommerceExpEntitlementFilter = {
|
|
14320
|
+
excludeMultiInstanceChild?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14321
|
+
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14322
|
+
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14323
|
+
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14324
|
+
pricingPlanTypes?: InputMaybe<Array<CommerceExpCcpPricingType>>;
|
|
14325
|
+
productKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14326
|
+
productName?: InputMaybe<Scalars['String']['input']>;
|
|
14327
|
+
status?: InputMaybe<CommerceExpEntitlementStatus>;
|
|
14328
|
+
types?: InputMaybe<Array<CommerceExpEntitlementType>>;
|
|
14329
|
+
};
|
|
14330
|
+
export declare type CommerceExpEntitlementHistory = {
|
|
14331
|
+
__typename?: 'CommerceExpEntitlementHistory';
|
|
14332
|
+
currentOfferingLevel?: Maybe<Scalars['Int']['output']>;
|
|
14333
|
+
glpForCurrentPlan?: Maybe<Scalars['Float']['output']>;
|
|
14334
|
+
glpForLastPaidPlan?: Maybe<Scalars['Float']['output']>;
|
|
14335
|
+
lastOfferingLevel?: Maybe<Scalars['Int']['output']>;
|
|
14336
|
+
};
|
|
14337
|
+
export declare type CommerceExpEntitlementKind = {
|
|
14338
|
+
__typename?: 'CommerceExpEntitlementKind';
|
|
14339
|
+
isAddon?: Maybe<Scalars['Boolean']['output']>;
|
|
14340
|
+
isApp?: Maybe<Scalars['Boolean']['output']>;
|
|
14341
|
+
isCollection?: Maybe<Scalars['Boolean']['output']>;
|
|
14342
|
+
isCollectionInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
14343
|
+
isEnterprise?: Maybe<Scalars['Boolean']['output']>;
|
|
14344
|
+
isEnterpriseInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
14345
|
+
isFamilyContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
14346
|
+
isMultiInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
14347
|
+
isMultiInstanceChild?: Maybe<Scalars['Boolean']['output']>;
|
|
14348
|
+
isPlatformApp?: Maybe<Scalars['Boolean']['output']>;
|
|
14349
|
+
};
|
|
14350
|
+
export declare enum CommerceExpEntitlementLevel {
|
|
14351
|
+
BitbucketWorkspace = "BitbucketWorkspace",
|
|
14352
|
+
Organisation = "Organisation",
|
|
14353
|
+
Site = "Site"
|
|
14354
|
+
}
|
|
14355
|
+
export declare type CommerceExpEntitlementProvisioning = {
|
|
14356
|
+
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
14357
|
+
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
14358
|
+
level?: Maybe<CommerceExpEntitlementLevel>;
|
|
14359
|
+
lifecycleState?: Maybe<Scalars['String']['output']>;
|
|
14360
|
+
organisation?: Maybe<CommerceExpOrganisation>;
|
|
14361
|
+
resourceAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14362
|
+
sourceEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14363
|
+
status?: Maybe<CommerceExpEntitlementProvisioningStatus>;
|
|
14364
|
+
suspensionReasons?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
14365
|
+
};
|
|
14366
|
+
export declare enum CommerceExpEntitlementProvisioningStatus {
|
|
14367
|
+
Active = "ACTIVE",
|
|
14368
|
+
Destroyed = "DESTROYED",
|
|
14369
|
+
Inactive = "INACTIVE",
|
|
14370
|
+
Suspended = "SUSPENDED",
|
|
14371
|
+
Unknown = "UNKNOWN"
|
|
14372
|
+
}
|
|
14373
|
+
export declare type CommerceExpEntitlementReactivationForBac = {
|
|
14374
|
+
__typename?: 'CommerceExpEntitlementReactivationForBac';
|
|
14375
|
+
billingAnchorTime?: Maybe<Scalars['Float']['output']>;
|
|
14376
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14377
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14378
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
14379
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
14380
|
+
validReactivationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
14381
|
+
};
|
|
14382
|
+
export declare enum CommerceExpEntitlementStatus {
|
|
14383
|
+
Active = "ACTIVE",
|
|
14384
|
+
Inactive = "INACTIVE"
|
|
14385
|
+
}
|
|
14386
|
+
export declare type CommerceExpEntitlementTransitionForBac = {
|
|
14387
|
+
__typename?: 'CommerceExpEntitlementTransitionForBac';
|
|
14388
|
+
billingAnchorTime?: Maybe<Scalars['Float']['output']>;
|
|
14389
|
+
billingCycle?: Maybe<CommerceExpBillingCycle>;
|
|
14390
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14391
|
+
isRecommendedTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
14392
|
+
isTrialAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
14393
|
+
offeringFeatures?: Maybe<CommerceExpOfferingFeatures>;
|
|
14394
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
14395
|
+
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
14396
|
+
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
14397
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
14398
|
+
transitionResult?: Maybe<CommerceExpEntitlementTransitionResultForBac>;
|
|
14399
|
+
};
|
|
14400
|
+
export declare enum CommerceExpEntitlementTransitionResultForBac {
|
|
14401
|
+
Allowed = "ALLOWED",
|
|
14402
|
+
NotAllowed = "NOT_ALLOWED",
|
|
14403
|
+
NoEffect = "NO_EFFECT"
|
|
14404
|
+
}
|
|
14405
|
+
export declare enum CommerceExpEntitlementType {
|
|
14406
|
+
AddOn = "ADD_ON",
|
|
14407
|
+
App = "APP",
|
|
14408
|
+
Collection = "COLLECTION",
|
|
14409
|
+
CollectionInstance = "COLLECTION_INSTANCE",
|
|
14410
|
+
Enterprise = "ENTERPRISE",
|
|
14411
|
+
EnterpriseInstance = "ENTERPRISE_INSTANCE",
|
|
14412
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
14413
|
+
Product = "PRODUCT"
|
|
14414
|
+
}
|
|
14415
|
+
export declare type CommerceExpEntitlementUpdateInput = {
|
|
14416
|
+
entitlementId: Scalars['String']['input'];
|
|
14417
|
+
promotionId?: InputMaybe<Scalars['String']['input']>;
|
|
14418
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14419
|
+
targetBillingCycle?: InputMaybe<CommerceExpBillingCycle>;
|
|
14420
|
+
targetOfferingName?: InputMaybe<Scalars['String']['input']>;
|
|
14421
|
+
};
|
|
14422
|
+
export declare type CommerceExpErrorResponse = {
|
|
14423
|
+
__typename?: 'CommerceExpErrorResponse';
|
|
14424
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
14425
|
+
items?: Maybe<Array<CommerceExpItemValidationError>>;
|
|
14426
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14427
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
14428
|
+
};
|
|
14429
|
+
export declare enum CommerceExpErrorType {
|
|
14430
|
+
PermissionDenied = "PERMISSION_DENIED"
|
|
14431
|
+
}
|
|
14432
|
+
export declare enum CommerceExpEstimateLineType {
|
|
14433
|
+
AccruedCharges = "ACCRUED_CHARGES",
|
|
14434
|
+
Dst = "DST",
|
|
14435
|
+
Negative = "NEGATIVE",
|
|
14436
|
+
Positive = "POSITIVE"
|
|
14437
|
+
}
|
|
14438
|
+
export declare type CommerceExpExpectedBillsLine = {
|
|
14439
|
+
__typename?: 'CommerceExpExpectedBillsLine';
|
|
14440
|
+
billsAt?: Maybe<Scalars['Float']['output']>;
|
|
14441
|
+
invoice?: Maybe<CommerceExpCcpInvoice>;
|
|
14442
|
+
items?: Maybe<Array<Maybe<CommerceExpExpectedBillsLineItem>>>;
|
|
14443
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
14444
|
+
status?: Maybe<CommerceExpBillLineStatus>;
|
|
14445
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
14446
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
14447
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14448
|
+
};
|
|
14449
|
+
export declare type CommerceExpExpectedBillsLineItem = {
|
|
14450
|
+
__typename?: 'CommerceExpExpectedBillsLineItem';
|
|
14451
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpContractAdjustment>>>;
|
|
14452
|
+
currency?: Maybe<CommerceExpCurrency>;
|
|
14453
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14454
|
+
invoiceItem?: Maybe<CommerceExpContractInvoiceItem>;
|
|
14455
|
+
lineId?: Maybe<Scalars['ID']['output']>;
|
|
14456
|
+
margins?: Maybe<Array<Maybe<CommerceExpContractMargin>>>;
|
|
14457
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
14458
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
14459
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
14460
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
14461
|
+
period?: Maybe<CommerceExpPeriodResponse>;
|
|
14462
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
14463
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
14464
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
14465
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
14466
|
+
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
14467
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14468
|
+
};
|
|
14469
|
+
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
14470
|
+
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
14471
|
+
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
14472
|
+
};
|
|
14473
|
+
export declare type CommerceExpGenericError = {
|
|
14474
|
+
__typename?: 'CommerceExpGenericError';
|
|
14475
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
14476
|
+
};
|
|
14477
|
+
export declare type CommerceExpGenericMutationPayload = CommerceExpMutationPayload & {
|
|
14478
|
+
__typename?: 'CommerceExpGenericMutationPayload';
|
|
14479
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14480
|
+
success: Scalars['Boolean']['output'];
|
|
14481
|
+
};
|
|
14482
|
+
export declare type CommerceExpGroupedByBillingPeriodLineItem = {
|
|
14483
|
+
__typename?: 'CommerceExpGroupedByBillingPeriodLineItem';
|
|
14484
|
+
billingPeriod?: Maybe<CommerceExpPeriodResponse>;
|
|
14485
|
+
billingPeriodItems?: Maybe<Array<Maybe<CommerceExpBillingPeriodItem>>>;
|
|
14486
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
14487
|
+
};
|
|
14488
|
+
export declare type CommerceExpGroupedByBillingScheduleLineItem = {
|
|
14489
|
+
__typename?: 'CommerceExpGroupedByBillingScheduleLineItem';
|
|
14490
|
+
aggregatedDiscountTotal?: Maybe<Scalars['Float']['output']>;
|
|
14491
|
+
aggregatedTaxItems?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
14492
|
+
aggregatedUpcomingBillsLine?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
14493
|
+
billDate?: Maybe<CommerceExpBillDateResponse>;
|
|
14494
|
+
billingScheduleItems?: Maybe<Array<Maybe<CommerceExpBillingScheduleItem>>>;
|
|
14495
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14496
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
14497
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
14498
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14499
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
14500
|
+
};
|
|
14501
|
+
export declare type CommerceExpGroupedByOrgQuoteLineItem = {
|
|
14502
|
+
__typename?: 'CommerceExpGroupedByOrgQuoteLineItem';
|
|
14503
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
14504
|
+
orgItems?: Maybe<Array<Maybe<CommerceExpOrgItem>>>;
|
|
14505
|
+
organisation?: Maybe<CommerceExpOrganisation>;
|
|
14506
|
+
reservedOrgName?: Maybe<Scalars['String']['output']>;
|
|
14507
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
14508
|
+
};
|
|
14509
|
+
export declare type CommerceExpGroupedBySiteQuoteLineItem = {
|
|
14510
|
+
__typename?: 'CommerceExpGroupedBySiteQuoteLineItem';
|
|
14511
|
+
items?: Maybe<Array<Maybe<CommerceExpContainerQuoteLineItem>>>;
|
|
14512
|
+
reservedSiteName?: Maybe<Scalars['String']['output']>;
|
|
14513
|
+
siteId?: Maybe<Scalars['ID']['output']>;
|
|
14514
|
+
siteItems?: Maybe<Array<Maybe<CommerceExpSiteItem>>>;
|
|
14515
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
14516
|
+
};
|
|
14517
|
+
export declare type CommerceExpGroupedQuoteLineItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedByBillingPeriodLineItem | CommerceExpGroupedByBillingScheduleLineItem | CommerceExpGroupedByOrgQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
14518
|
+
export declare type CommerceExpGupsMutation = {
|
|
14519
|
+
__typename?: 'CommerceExpGupsMutation';
|
|
14520
|
+
createEntitlementProfile?: Maybe<CommerceExpCreateEntitlementProfilePayload>;
|
|
14521
|
+
};
|
|
14522
|
+
export declare type CommerceExpGupsMutationCreateEntitlementProfileArgs = {
|
|
14523
|
+
orderId: Scalars['ID']['input'];
|
|
14524
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
14525
|
+
};
|
|
14526
|
+
export declare type CommerceExpIntegerComparator = {
|
|
14527
|
+
__typename?: 'CommerceExpIntegerComparator';
|
|
14528
|
+
equals?: Maybe<Scalars['Int']['output']>;
|
|
14529
|
+
range?: Maybe<CommerceExpRange>;
|
|
14530
|
+
};
|
|
14531
|
+
export declare type CommerceExpIntegerLimiter = {
|
|
14532
|
+
__typename?: 'CommerceExpIntegerLimiter';
|
|
14533
|
+
type?: Maybe<CommerceExpIntegerLimiterType>;
|
|
14534
|
+
};
|
|
14535
|
+
export declare enum CommerceExpIntegerLimiterType {
|
|
14536
|
+
Range = "RANGE",
|
|
14537
|
+
Set = "SET"
|
|
14538
|
+
}
|
|
14539
|
+
export declare type CommerceExpIntercomQuery = {
|
|
14540
|
+
__typename?: 'CommerceExpIntercomQuery';
|
|
14541
|
+
identityVerificationHash: Scalars['String']['output'];
|
|
14542
|
+
};
|
|
14543
|
+
export declare type CommerceExpInvoiceErrorObject = {
|
|
14544
|
+
__typename?: 'CommerceExpInvoiceErrorObject';
|
|
14545
|
+
errorType?: Maybe<CommerceExpErrorType>;
|
|
14546
|
+
};
|
|
14547
|
+
export declare type CommerceExpInvoiceGroupEdge = {
|
|
14548
|
+
__typename?: 'CommerceExpInvoiceGroupEdge';
|
|
14549
|
+
cursor: Scalars['String']['output'];
|
|
14550
|
+
node?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14551
|
+
};
|
|
14552
|
+
export declare type CommerceExpInvoiceGroupInput = {
|
|
14553
|
+
defaultPaymentMethod?: InputMaybe<Scalars['String']['input']>;
|
|
14554
|
+
memo?: InputMaybe<Scalars['String']['input']>;
|
|
14555
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14556
|
+
purchaseOrder?: InputMaybe<CommerceExpPurchaseOrderInput>;
|
|
14557
|
+
shipToParty?: InputMaybe<Scalars['String']['input']>;
|
|
14558
|
+
};
|
|
14559
|
+
export declare type CommerceExpInvoiceGroupResultConnection = {
|
|
14560
|
+
__typename?: 'CommerceExpInvoiceGroupResultConnection';
|
|
14561
|
+
edges?: Maybe<Array<Maybe<CommerceExpInvoiceGroupEdge>>>;
|
|
14562
|
+
error?: Maybe<QueryError>;
|
|
14563
|
+
nodes?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
14564
|
+
pageInfo: PageInfo;
|
|
14565
|
+
};
|
|
14566
|
+
export declare type CommerceExpInvoiceGroupStatus = {
|
|
14567
|
+
__typename?: 'CommerceExpInvoiceGroupStatus';
|
|
14568
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14569
|
+
invoiceable?: Maybe<Scalars['Boolean']['output']>;
|
|
14570
|
+
issues?: Maybe<Array<Maybe<CommerceExpInvoiceGroupStatusIssue>>>;
|
|
14571
|
+
};
|
|
14572
|
+
export declare type CommerceExpInvoiceGroupStatusIssue = {
|
|
14573
|
+
__typename?: 'CommerceExpInvoiceGroupStatusIssue';
|
|
14574
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
14575
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14576
|
+
severity?: Maybe<CommerceExpStatusIssueSeverity>;
|
|
14577
|
+
};
|
|
14578
|
+
export declare type CommerceExpInvoiceItem = {
|
|
14579
|
+
__typename?: 'CommerceExpInvoiceItem';
|
|
14580
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpInvoiceItemAdjustment>>>;
|
|
14581
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14582
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14583
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
14584
|
+
entitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
14585
|
+
exchangeRate?: Maybe<Scalars['Float']['output']>;
|
|
14586
|
+
exchangeRateDate?: Maybe<Scalars['String']['output']>;
|
|
14587
|
+
expandedEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14588
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14589
|
+
invoiceRequest?: Maybe<Scalars['String']['output']>;
|
|
14590
|
+
margins?: Maybe<Array<Maybe<CommerceExpInvoiceItemMargin>>>;
|
|
14591
|
+
offeringKey?: Maybe<Scalars['String']['output']>;
|
|
14592
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
14593
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
14594
|
+
originalInvoiceReferral?: Maybe<CommerceExpOriginalInvoiceReferral>;
|
|
14595
|
+
period?: Maybe<CommerceExpPeriod>;
|
|
14596
|
+
planObj?: Maybe<CommerceExpPlan>;
|
|
14597
|
+
proration?: Maybe<Scalars['Boolean']['output']>;
|
|
14598
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
14599
|
+
subscriptionObj?: Maybe<CommerceExpInvoiceItemSubscription>;
|
|
14600
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
14601
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
14602
|
+
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
14603
|
+
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
14604
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14605
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
14606
|
+
};
|
|
14607
|
+
export declare type CommerceExpInvoiceItemAdjustment = {
|
|
14608
|
+
__typename?: 'CommerceExpInvoiceItemAdjustment';
|
|
14609
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
14610
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
14611
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
14612
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
14613
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
14614
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14615
|
+
};
|
|
14616
|
+
export declare type CommerceExpInvoiceItemMargin = {
|
|
14617
|
+
__typename?: 'CommerceExpInvoiceItemMargin';
|
|
14618
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
14619
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
14620
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
14621
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
14622
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
14623
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14624
|
+
};
|
|
14625
|
+
export declare type CommerceExpInvoiceItemSubscription = {
|
|
14626
|
+
__typename?: 'CommerceExpInvoiceItemSubscription';
|
|
14627
|
+
chargeType?: Maybe<Scalars['String']['output']>;
|
|
14628
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14629
|
+
itemId?: Maybe<Scalars['ID']['output']>;
|
|
14630
|
+
};
|
|
14631
|
+
export declare type CommerceExpInvoiceList = {
|
|
14632
|
+
__typename?: 'CommerceExpInvoiceList';
|
|
14633
|
+
invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
14634
|
+
};
|
|
14635
|
+
export declare type CommerceExpInvoiceOrNoPermissions = CommerceExpInvoiceErrorObject | CommerceExpInvoiceList;
|
|
14636
|
+
export declare type CommerceExpInvoiceRequest = CommerceExpNode & {
|
|
14637
|
+
__typename?: 'CommerceExpInvoiceRequest';
|
|
14638
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
14639
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14640
|
+
id: Scalars['ID']['output'];
|
|
14641
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
14642
|
+
invoiceId?: Maybe<Scalars['String']['output']>;
|
|
14643
|
+
invoiceImmediately?: Maybe<Scalars['Boolean']['output']>;
|
|
14644
|
+
invoicedAt?: Maybe<Scalars['Float']['output']>;
|
|
14645
|
+
items?: Maybe<Array<CommerceExpInvoiceRequestItem>>;
|
|
14646
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
14647
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
14648
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
14649
|
+
preDunning?: Maybe<CommerceExpCcpPreDunning>;
|
|
14650
|
+
predunningInvoiceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
14651
|
+
previousInvoiceId?: Maybe<Scalars['String']['output']>;
|
|
14652
|
+
reInvoice?: Maybe<Scalars['Boolean']['output']>;
|
|
14653
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
14654
|
+
stripeInvoiceItemId?: Maybe<Scalars['String']['output']>;
|
|
14655
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
14656
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14657
|
+
uninvoiceableAt?: Maybe<Scalars['Float']['output']>;
|
|
14658
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
14659
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
14660
|
+
};
|
|
14661
|
+
export declare type CommerceExpInvoiceRequestItem = {
|
|
14662
|
+
__typename?: 'CommerceExpInvoiceRequestItem';
|
|
14663
|
+
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
14664
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14665
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14666
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14667
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
14668
|
+
entitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
14669
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14670
|
+
irIssuedTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14671
|
+
offeringKey?: Maybe<Scalars['String']['output']>;
|
|
14672
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
14673
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
14674
|
+
originalItemReferral?: Maybe<CommerceExpOriginalItemReferral>;
|
|
14675
|
+
period?: Maybe<CommerceExpPeriod>;
|
|
14676
|
+
planObj?: Maybe<CommerceExpPlan>;
|
|
14677
|
+
proration?: Maybe<Scalars['Boolean']['output']>;
|
|
14678
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
14679
|
+
subscriptionObj?: Maybe<CommerceExpInvoiceItemSubscription>;
|
|
14680
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
14681
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14682
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
14683
|
+
};
|
|
14684
|
+
export declare enum CommerceExpInvoiceRequestStatusType {
|
|
14685
|
+
Open = "OPEN",
|
|
14686
|
+
Pending = "PENDING"
|
|
14687
|
+
}
|
|
14688
|
+
export declare enum CommerceExpInvoiceSourceSystem {
|
|
14689
|
+
Ccp = "CCP",
|
|
14690
|
+
Hams = "HAMS",
|
|
14691
|
+
Loom = "LOOM"
|
|
14692
|
+
}
|
|
14693
|
+
export declare enum CommerceExpInvoiceStatus {
|
|
14694
|
+
DeferredPaid = "DEFERRED_PAID",
|
|
14695
|
+
Draft = "DRAFT",
|
|
14696
|
+
Open = "OPEN",
|
|
14697
|
+
Paid = "PAID",
|
|
14698
|
+
PaymentDeferred = "PAYMENT_DEFERRED",
|
|
14699
|
+
Uncollectible = "UNCOLLECTIBLE",
|
|
14700
|
+
Void = "VOID"
|
|
14701
|
+
}
|
|
14702
|
+
export declare enum CommerceExpInvoiceStatusFilter {
|
|
14703
|
+
Paid = "PAID",
|
|
14704
|
+
Unpaid = "UNPAID"
|
|
14705
|
+
}
|
|
14706
|
+
export declare type CommerceExpItemValidationError = {
|
|
14707
|
+
__typename?: 'CommerceExpItemValidationError';
|
|
14708
|
+
errors?: Maybe<Array<CommerceExpLineItemValidationError>>;
|
|
14709
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
14710
|
+
};
|
|
14711
|
+
export declare type CommerceExpLineItemDisplayGroupList = {
|
|
14712
|
+
__typename?: 'CommerceExpLineItemDisplayGroupList';
|
|
14713
|
+
items?: Maybe<Array<Maybe<CommerceExpGroupedQuoteLineItem>>>;
|
|
14714
|
+
};
|
|
14715
|
+
export declare type CommerceExpLineItemDisplayGroupResult = CommerceExpLineItemDisplayGroupList | QueryError;
|
|
14716
|
+
export declare type CommerceExpLineItemEndsAt = {
|
|
14717
|
+
__typename?: 'CommerceExpLineItemEndsAt';
|
|
14718
|
+
duration?: Maybe<CommerceExpDurationDto>;
|
|
14719
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
14720
|
+
type?: Maybe<CommerceExpTermedSubscriptionEndType>;
|
|
14721
|
+
};
|
|
14722
|
+
export declare type CommerceExpLineItemResponse = {
|
|
14723
|
+
__typename?: 'CommerceExpLineItemResponse';
|
|
14724
|
+
accumulateAccruedCharges?: Maybe<Scalars['Float']['output']>;
|
|
14725
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpAdjustmentDetail>>>;
|
|
14726
|
+
billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14727
|
+
chargeQuantities?: Maybe<Array<Maybe<CommerceExpBillEstimateChargeQuantity>>>;
|
|
14728
|
+
discountTotal?: Maybe<Scalars['Float']['output']>;
|
|
14729
|
+
endsAt?: Maybe<CommerceExpLineItemEndsAt>;
|
|
14730
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14731
|
+
entitlementVersion?: Maybe<Scalars['String']['output']>;
|
|
14732
|
+
isMultiYear?: Maybe<Scalars['Boolean']['output']>;
|
|
14733
|
+
lineItemId?: Maybe<Scalars['String']['output']>;
|
|
14734
|
+
lineItemTermType?: Maybe<CommerceExpLineItemTermType>;
|
|
14735
|
+
lineItemType?: Maybe<CommerceExpLineItemType>;
|
|
14736
|
+
lockContext?: Maybe<CommerceExpLockContextDto>;
|
|
14737
|
+
mergedUpcomingBillsLineForBAC?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
14738
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
14739
|
+
period?: Maybe<CommerceExpPeriodResponse>;
|
|
14740
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
14741
|
+
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
14742
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
|
|
14743
|
+
saleTransitionDetails?: Maybe<CommerceExpQuoteLineItemSaleTransitionDetails>;
|
|
14744
|
+
startsAt?: Maybe<CommerceExpLineItemStartsAt>;
|
|
14745
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
14746
|
+
taxEstimate?: Maybe<Scalars['Float']['output']>;
|
|
14747
|
+
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
14748
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14749
|
+
usageTier?: Maybe<CommerceExpPricingPlanItemTier>;
|
|
14750
|
+
};
|
|
14751
|
+
export declare type CommerceExpLineItemResponseMergedUpcomingBillsLineForBacArgs = {
|
|
14752
|
+
include?: InputMaybe<Array<CommerceExpEstimateLineType>>;
|
|
14753
|
+
};
|
|
14754
|
+
export declare type CommerceExpLineItemStartsAt = {
|
|
14755
|
+
__typename?: 'CommerceExpLineItemStartsAt';
|
|
14756
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
14757
|
+
type?: Maybe<CommerceExpTermedSubscriptionStartType>;
|
|
14758
|
+
};
|
|
14759
|
+
export declare enum CommerceExpLineItemTermType {
|
|
14760
|
+
Evergreen = "EVERGREEN",
|
|
14761
|
+
Termed = "TERMED"
|
|
14762
|
+
}
|
|
14763
|
+
export declare enum CommerceExpLineItemType {
|
|
14764
|
+
AccountModification = "ACCOUNT_MODIFICATION",
|
|
14765
|
+
Amend = "AMEND",
|
|
14766
|
+
AmendEntitlement = "AMEND_ENTITLEMENT",
|
|
14767
|
+
ApplyPromotion = "APPLY_PROMOTION",
|
|
14768
|
+
CancelEntitlement = "CANCEL_ENTITLEMENT",
|
|
14769
|
+
CreateEntitlement = "CREATE_ENTITLEMENT",
|
|
14770
|
+
New = "NEW",
|
|
14771
|
+
ReactivateEntitlement = "REACTIVATE_ENTITLEMENT",
|
|
14772
|
+
RevertTrial = "REVERT_TRIAL"
|
|
14773
|
+
}
|
|
14774
|
+
export declare type CommerceExpLineItemValidationError = {
|
|
14775
|
+
__typename?: 'CommerceExpLineItemValidationError';
|
|
14776
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
14777
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
14778
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
14779
|
+
};
|
|
14780
|
+
export declare type CommerceExpLineItemsResponseList = {
|
|
14781
|
+
__typename?: 'CommerceExpLineItemsResponseList';
|
|
14782
|
+
items?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
|
|
14783
|
+
};
|
|
14784
|
+
export declare type CommerceExpLineItemsResult = CommerceExpLineItemsResponseList | QueryError;
|
|
14785
|
+
export declare type CommerceExpLocalTaxId = {
|
|
14786
|
+
__typename?: 'CommerceExpLocalTaxId';
|
|
14787
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14788
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14789
|
+
vat?: Maybe<Scalars['Boolean']['output']>;
|
|
14790
|
+
};
|
|
14791
|
+
export declare type CommerceExpLockContextDto = {
|
|
14792
|
+
__typename?: 'CommerceExpLockContextDto';
|
|
14793
|
+
isPriceLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
14794
|
+
isPromotionLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
14795
|
+
};
|
|
14796
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationQueryGroup = {
|
|
14797
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageAggregationQueryGroup';
|
|
14798
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14799
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
14800
|
+
};
|
|
14801
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationQueryGroups = {
|
|
14802
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageAggregationQueryGroups';
|
|
14803
|
+
group?: Maybe<Array<Maybe<CommerceExpMeteredChargeElementUsageAggregationQueryGroup>>>;
|
|
14804
|
+
resolution?: Maybe<CommerceExpMeteredUsageQueryResolution>;
|
|
14805
|
+
statistics?: Maybe<Array<Maybe<CommerceExpMeteredChargeElementUsageAggregationQueryStatistic>>>;
|
|
14806
|
+
};
|
|
14807
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationQueryStatistic = {
|
|
14808
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageAggregationQueryStatistic';
|
|
14809
|
+
type?: Maybe<CommerceExpMeteredUsageQueryStatistics>;
|
|
14810
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
14811
|
+
};
|
|
14812
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationResponse = {
|
|
14813
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageAggregationResponse';
|
|
14814
|
+
results?: Maybe<Array<Maybe<CommerceExpMeteredChargeElementUsageAggregationResult>>>;
|
|
14815
|
+
};
|
|
14816
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationResult = {
|
|
14817
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageAggregationResult';
|
|
14818
|
+
end?: Maybe<Scalars['Float']['output']>;
|
|
14819
|
+
groups?: Maybe<Array<Maybe<CommerceExpMeteredChargeElementUsageAggregationQueryGroups>>>;
|
|
14820
|
+
start?: Maybe<Scalars['Float']['output']>;
|
|
14821
|
+
};
|
|
14822
|
+
export declare type CommerceExpMeteredChargeElementUsageAggregationsInput = {
|
|
14823
|
+
chargeElementName: Scalars['String']['input'];
|
|
14824
|
+
end?: InputMaybe<Scalars['Float']['input']>;
|
|
14825
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
14826
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
14827
|
+
resolution: CommerceExpMeteredUsageQueryResolution;
|
|
14828
|
+
start?: InputMaybe<Scalars['Float']['input']>;
|
|
14829
|
+
statistics?: InputMaybe<CommerceExpMeteredUsageQueryStatistics>;
|
|
14830
|
+
};
|
|
14831
|
+
export declare type CommerceExpMeteredChargeElementUsageLatest = {
|
|
14832
|
+
__typename?: 'CommerceExpMeteredChargeElementUsageLatest';
|
|
14833
|
+
chargeElementName?: Maybe<Scalars['String']['output']>;
|
|
14834
|
+
usageLatestValue?: Maybe<Scalars['Float']['output']>;
|
|
14835
|
+
};
|
|
14836
|
+
export declare enum CommerceExpMeteredUsageQueryResolution {
|
|
14837
|
+
OneDay = "ONE_DAY",
|
|
14838
|
+
OneHour = "ONE_HOUR",
|
|
14839
|
+
OneMonth = "ONE_MONTH"
|
|
14840
|
+
}
|
|
14841
|
+
export declare enum CommerceExpMeteredUsageQueryStatistics {
|
|
14842
|
+
Latest = "LATEST",
|
|
14843
|
+
Sum = "SUM"
|
|
14844
|
+
}
|
|
14845
|
+
export declare type CommerceExpMultipleEntitlementUpdatesInput = {
|
|
14846
|
+
entitlements: Array<CommerceExpEntitlementUpdateInput>;
|
|
14847
|
+
};
|
|
14848
|
+
export declare type CommerceExpMutateIfValidEntitlement = {
|
|
14849
|
+
__typename?: 'CommerceExpMutateIfValidEntitlement';
|
|
14850
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
14851
|
+
mutation?: Maybe<CommerceExpCcpMutation>;
|
|
14852
|
+
};
|
|
14853
|
+
export declare type CommerceExpMutationPayload = {
|
|
14854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14855
|
+
success: Scalars['Boolean']['output'];
|
|
14856
|
+
};
|
|
14857
|
+
export declare type CommerceExpNextCycleChange = {
|
|
14858
|
+
__typename?: 'CommerceExpNextCycleChange';
|
|
14859
|
+
changeTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14860
|
+
chargeDetails?: Maybe<CommerceExpChargeDetails>;
|
|
14861
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
14862
|
+
relatedQuote?: Maybe<CommerceExpCcpQuote>;
|
|
14863
|
+
subscriptionScheduleAction?: Maybe<CommerceExpSubscriptionScheduleAction>;
|
|
14864
|
+
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
14865
|
+
};
|
|
14866
|
+
export declare type CommerceExpNode = {
|
|
14867
|
+
id: Scalars['ID']['output'];
|
|
14868
|
+
};
|
|
14869
|
+
export declare type CommerceExpNoteDto = {
|
|
14870
|
+
__typename?: 'CommerceExpNoteDto';
|
|
14871
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
14872
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
14873
|
+
};
|
|
14874
|
+
export declare type CommerceExpNotification = {
|
|
14875
|
+
__typename?: 'CommerceExpNotification';
|
|
14876
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
14877
|
+
id: Scalars['ID']['output'];
|
|
14878
|
+
status: Scalars['String']['output'];
|
|
14879
|
+
title: Scalars['String']['output'];
|
|
14880
|
+
transactionAccountId: Scalars['String']['output'];
|
|
14881
|
+
triggerId?: Maybe<Scalars['String']['output']>;
|
|
14882
|
+
};
|
|
14883
|
+
export declare type CommerceExpNotificationMutation = {
|
|
14884
|
+
__typename?: 'CommerceExpNotificationMutation';
|
|
14885
|
+
sendNotification?: Maybe<CommerceExpSendNotificationPayload>;
|
|
14886
|
+
};
|
|
14887
|
+
export declare type CommerceExpNotificationMutationSendNotificationArgs = {
|
|
14888
|
+
input: CommerceExpSendNotificationInput;
|
|
14889
|
+
};
|
|
14890
|
+
export declare enum CommerceExpNotificationSource {
|
|
14891
|
+
BacOsbPage = "BAC_OSB_PAGE",
|
|
14892
|
+
BacSubscriptionDetailsPage = "BAC_SUBSCRIPTION_DETAILS_PAGE"
|
|
14893
|
+
}
|
|
14894
|
+
export declare type CommerceExpOfferingFeatures = {
|
|
14895
|
+
__typename?: 'CommerceExpOfferingFeatures';
|
|
14896
|
+
features?: Maybe<Array<CommerceExpOfferingFeaturesDetails>>;
|
|
14897
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14898
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
14899
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
14900
|
+
status?: Maybe<CommerceExpOfferingListingOfferingStatus>;
|
|
14901
|
+
tagLine?: Maybe<Scalars['String']['output']>;
|
|
14902
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
14903
|
+
};
|
|
14904
|
+
export declare type CommerceExpOfferingFeaturesDetails = {
|
|
14905
|
+
__typename?: 'CommerceExpOfferingFeaturesDetails';
|
|
14906
|
+
description: Scalars['String']['output'];
|
|
14907
|
+
id: Scalars['ID']['output'];
|
|
14908
|
+
name: Scalars['String']['output'];
|
|
14909
|
+
position: Scalars['Int']['output'];
|
|
14910
|
+
};
|
|
14911
|
+
export declare enum CommerceExpOfferingGroup {
|
|
14912
|
+
Default = "default",
|
|
14913
|
+
Sandbox = "sandbox"
|
|
14914
|
+
}
|
|
14915
|
+
export declare type CommerceExpOfferingIsPromocodeApplicable = CommerceExpPromocodeIsApplicable | CommerceExpPromocodeIsNotApplicable;
|
|
14916
|
+
export declare enum CommerceExpOfferingListingOfferingStatus {
|
|
14917
|
+
Active = "ACTIVE",
|
|
14918
|
+
Archived = "ARCHIVED",
|
|
14919
|
+
Deleted = "DELETED",
|
|
14920
|
+
Draft = "DRAFT"
|
|
14921
|
+
}
|
|
14922
|
+
export declare type CommerceExpOfferingTransition = {
|
|
14923
|
+
__typename?: 'CommerceExpOfferingTransition';
|
|
14924
|
+
fromId?: Maybe<Scalars['ID']['output']>;
|
|
14925
|
+
toId?: Maybe<Scalars['ID']['output']>;
|
|
14926
|
+
};
|
|
14927
|
+
export declare type CommerceExpOmsPromotionDefinitionDto = {
|
|
14928
|
+
__typename?: 'CommerceExpOmsPromotionDefinitionDto';
|
|
14929
|
+
customisedValues?: Maybe<CommerceExpCustomPromotionValueDto>;
|
|
14930
|
+
promotion?: Maybe<CommerceExpCcpPromotion>;
|
|
14931
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
14932
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
14933
|
+
};
|
|
14934
|
+
export declare type CommerceExpOmsPromotionDto = {
|
|
14935
|
+
__typename?: 'CommerceExpOmsPromotionDto';
|
|
14936
|
+
promotionDefinition?: Maybe<CommerceExpOmsPromotionDefinitionDto>;
|
|
14937
|
+
promotionInstanceId?: Maybe<Scalars['ID']['output']>;
|
|
14938
|
+
};
|
|
14939
|
+
export declare type CommerceExpOpsgenieMigrationOrderInput = {
|
|
14940
|
+
chargeQuantitiesForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14941
|
+
chargeQuantitiesForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14942
|
+
cloudId: Scalars['String']['input'];
|
|
14943
|
+
customerId: Scalars['String']['input'];
|
|
14944
|
+
entitlementIds?: InputMaybe<Scalars['String']['input']>;
|
|
14945
|
+
invoiceGroupId: Scalars['String']['input'];
|
|
14946
|
+
jcsServiceCollectionOfferingIdsForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14947
|
+
jcsServiceCollectionOfferingIdsForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14948
|
+
jsmServiceCollectionOfferingIdsForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14949
|
+
jsmServiceCollectionOfferingIdsForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14950
|
+
migrationId: Scalars['String']['input'];
|
|
14951
|
+
offeringIdsForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14952
|
+
offeringIdsForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14953
|
+
pricingPlanIdsForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14954
|
+
pricingPlanIdsForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14955
|
+
promotionIdsForAmend?: InputMaybe<Scalars['String']['input']>;
|
|
14956
|
+
promotionIdsForCreate?: InputMaybe<Scalars['String']['input']>;
|
|
14957
|
+
};
|
|
14958
|
+
export declare type CommerceExpOptOutTrialOrderInput = {
|
|
14959
|
+
entitlementId: Scalars['String']['input'];
|
|
14960
|
+
};
|
|
14961
|
+
export declare type CommerceExpOptedQuantity = {
|
|
14962
|
+
__typename?: 'CommerceExpOptedQuantity';
|
|
14963
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
14964
|
+
quantity?: Maybe<Scalars['Int']['output']>;
|
|
14965
|
+
source?: Maybe<CommerceExpOptedQuantitySource>;
|
|
14966
|
+
};
|
|
14967
|
+
export declare enum CommerceExpOptedQuantitySource {
|
|
14968
|
+
CeilingLimit = "CEILING_LIMIT",
|
|
14969
|
+
Inherited = "INHERITED",
|
|
14970
|
+
UserOpted = "USER_OPTED"
|
|
14971
|
+
}
|
|
14972
|
+
export declare type CommerceExpOptedUsageOption = {
|
|
14973
|
+
__typename?: 'CommerceExpOptedUsageOption';
|
|
14974
|
+
billingBehaviour?: Maybe<CommerceExpBillingBehaviour>;
|
|
14975
|
+
chargingDetails?: Maybe<CommerceExpChargingDetails>;
|
|
14976
|
+
effectiveTime?: Maybe<CommerceExpEffectiveTime>;
|
|
14977
|
+
trial?: Maybe<CommerceExpTrialIntent>;
|
|
14978
|
+
};
|
|
14979
|
+
export declare type CommerceExpOrRuleCondition = {
|
|
14980
|
+
__typename?: 'CommerceExpOrRuleCondition';
|
|
14981
|
+
operatorType?: Maybe<CommerceExpRuleConditionOperatorType>;
|
|
14982
|
+
};
|
|
14983
|
+
export declare type CommerceExpOrderAccountModificationItem = {
|
|
14984
|
+
__typename?: 'CommerceExpOrderAccountModificationItem';
|
|
14985
|
+
accountModification?: Maybe<CommerceExpAccountModification>;
|
|
14986
|
+
itemId: Scalars['String']['output'];
|
|
14987
|
+
type: CommerceExpOrderType;
|
|
14988
|
+
};
|
|
14989
|
+
export declare type CommerceExpOrderAmendmentItem = {
|
|
14990
|
+
__typename?: 'CommerceExpOrderAmendmentItem';
|
|
14991
|
+
entitlement: CommerceExpOrderEntitlementRef;
|
|
14992
|
+
isImmediate?: Maybe<Scalars['Boolean']['output']>;
|
|
14993
|
+
itemId: Scalars['String']['output'];
|
|
14994
|
+
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
14995
|
+
offeringId: Scalars['ID']['output'];
|
|
14996
|
+
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
14997
|
+
type: CommerceExpOrderType;
|
|
14998
|
+
};
|
|
14999
|
+
export declare type CommerceExpOrderBillEstimate = {
|
|
15000
|
+
__typename?: 'CommerceExpOrderBillEstimate';
|
|
15001
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
15002
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
15003
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
15004
|
+
grandTotal?: Maybe<Scalars['Float']['output']>;
|
|
15005
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
15006
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderBillEstimateItem>>>;
|
|
15007
|
+
saleTransitionDetails?: Maybe<CommerceExpSaleTransitionDetails>;
|
|
15008
|
+
subscriptionState?: Maybe<CommerceExpSubscriptionState>;
|
|
15009
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
15010
|
+
totalTax?: Maybe<Scalars['Float']['output']>;
|
|
15011
|
+
type?: Maybe<CommerceExpOrderType>;
|
|
15012
|
+
};
|
|
15013
|
+
export declare type CommerceExpOrderBillEstimateItem = {
|
|
15014
|
+
__typename?: 'CommerceExpOrderBillEstimateItem';
|
|
15015
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpBillEstimateAdjustment>>>;
|
|
15016
|
+
billPeriod?: Maybe<CommerceExpBillEstimatePeriod>;
|
|
15017
|
+
chargeQuantity?: Maybe<CommerceExpBillEstimateChargeQuantity>;
|
|
15018
|
+
isArrears?: Maybe<Scalars['Boolean']['output']>;
|
|
15019
|
+
offeringId?: Maybe<Scalars['String']['output']>;
|
|
15020
|
+
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
15021
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
15022
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
15023
|
+
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItem>>>;
|
|
15024
|
+
taxPercent?: Maybe<Scalars['Int']['output']>;
|
|
15025
|
+
taxPercent2?: Maybe<Scalars['Float']['output']>;
|
|
15026
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
15027
|
+
};
|
|
15028
|
+
export declare type CommerceExpOrderBuilderInput = {
|
|
15029
|
+
addonPurchaseOrderInput?: InputMaybe<CommerceExpAddonPurchaseOrderInput>;
|
|
15030
|
+
buyCurrentTrialInput?: InputMaybe<CommerceExpBuyCurrentTrialInput>;
|
|
15031
|
+
changeIntentEntitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
15032
|
+
createEntitlementCartDirectBuyInput?: InputMaybe<CommerceExpCreateEntitlementCartDirectBuyInput>;
|
|
15033
|
+
createEntitlementInput?: InputMaybe<CommerceExpCreateEntitlementInput>;
|
|
15034
|
+
downgradeOrderInput?: InputMaybe<CommerceExpDowngradeOrderInput>;
|
|
15035
|
+
endCollectionOrderInput?: InputMaybe<CommerceExpEndCollectionOrderInput>;
|
|
15036
|
+
multipleEntitlementUpdatesInput?: InputMaybe<CommerceExpMultipleEntitlementUpdatesInput>;
|
|
15037
|
+
opsgenieMigrationOrderInput?: InputMaybe<CommerceExpOpsgenieMigrationOrderInput>;
|
|
15038
|
+
optOutTrialOrderInput?: InputMaybe<CommerceExpOptOutTrialOrderInput>;
|
|
15039
|
+
orderBuilderType: CommerceExpOrderBuilderType;
|
|
15040
|
+
orderId?: InputMaybe<Scalars['String']['input']>;
|
|
15041
|
+
promotionsInput?: InputMaybe<CommerceExpPromotionsInput>;
|
|
15042
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
15043
|
+
undoScheduledDeactivationInput?: InputMaybe<CommerceExpUndoScheduledDeactivationInput>;
|
|
15044
|
+
};
|
|
15045
|
+
export declare enum CommerceExpOrderBuilderType {
|
|
15046
|
+
AddOnsPurchase = "ADD_ONS_PURCHASE",
|
|
15047
|
+
BuyCurrentTrial = "BUY_CURRENT_TRIAL",
|
|
15048
|
+
CreateEntitlement = "CREATE_ENTITLEMENT",
|
|
15049
|
+
CreateEntitlementCartDirectBuy = "CREATE_ENTITLEMENT_CART_DIRECT_BUY",
|
|
15050
|
+
Downgrade = "DOWNGRADE",
|
|
15051
|
+
EndCollection = "END_COLLECTION",
|
|
15052
|
+
MultipleEntitlementUpdates = "MULTIPLE_ENTITLEMENT_UPDATES",
|
|
15053
|
+
OpsgenieMigration = "OPSGENIE_MIGRATION",
|
|
15054
|
+
OptOutTrial = "OPT_OUT_TRIAL",
|
|
15055
|
+
Promotions = "PROMOTIONS",
|
|
15056
|
+
UndoScheduledDeactivation = "UNDO_SCHEDULED_DEACTIVATION"
|
|
15057
|
+
}
|
|
15058
|
+
export declare type CommerceExpOrderCreationItem = {
|
|
15059
|
+
__typename?: 'CommerceExpOrderCreationItem';
|
|
15060
|
+
billingAnchorTime?: Maybe<Scalars['Float']['output']>;
|
|
15061
|
+
entitlementHistory?: Maybe<CommerceExpEntitlementHistory>;
|
|
15062
|
+
hostName?: Maybe<Scalars['String']['output']>;
|
|
15063
|
+
itemId: Scalars['String']['output'];
|
|
15064
|
+
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15065
|
+
offeringId: Scalars['ID']['output'];
|
|
15066
|
+
parentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
15067
|
+
parentEntitlementId?: Maybe<Scalars['ID']['output']>;
|
|
15068
|
+
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
15069
|
+
subscriptionStartTime?: Maybe<Scalars['Float']['output']>;
|
|
15070
|
+
type: CommerceExpOrderType;
|
|
15071
|
+
};
|
|
15072
|
+
export declare type CommerceExpOrderDefaultBillingAnchorTime = {
|
|
15073
|
+
__typename?: 'CommerceExpOrderDefaultBillingAnchorTime';
|
|
15074
|
+
constrained?: Maybe<Scalars['Boolean']['output']>;
|
|
15075
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
15076
|
+
};
|
|
15077
|
+
export declare type CommerceExpOrderDefaultEndTimestamp = {
|
|
15078
|
+
__typename?: 'CommerceExpOrderDefaultEndTimestamp';
|
|
15079
|
+
constrained?: Maybe<Scalars['Boolean']['output']>;
|
|
15080
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
15081
|
+
};
|
|
15082
|
+
export declare type CommerceExpOrderDefaultInvoiceGroup = {
|
|
15083
|
+
__typename?: 'CommerceExpOrderDefaultInvoiceGroup';
|
|
15084
|
+
constrained?: Maybe<Scalars['Boolean']['output']>;
|
|
15085
|
+
value?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
15086
|
+
};
|
|
15087
|
+
export declare type CommerceExpOrderDefaultPricingPlan = {
|
|
15088
|
+
__typename?: 'CommerceExpOrderDefaultPricingPlan';
|
|
15089
|
+
constrained?: Maybe<Scalars['Boolean']['output']>;
|
|
15090
|
+
value?: Maybe<CommerceExpCcpPricingPlan>;
|
|
15091
|
+
};
|
|
15092
|
+
export declare type CommerceExpOrderEntitlementRef = {
|
|
15093
|
+
__typename?: 'CommerceExpOrderEntitlementRef';
|
|
15094
|
+
currentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
15095
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
15096
|
+
};
|
|
15097
|
+
export declare type CommerceExpOrderIntentEstimate = {
|
|
15098
|
+
__typename?: 'CommerceExpOrderIntentEstimate';
|
|
15099
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderBillEstimate>>>;
|
|
15100
|
+
orderIntentId?: Maybe<Scalars['String']['output']>;
|
|
15101
|
+
};
|
|
15102
|
+
export declare type CommerceExpOrderItem = {
|
|
15103
|
+
__typename?: 'CommerceExpOrderItem';
|
|
15104
|
+
backdateTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15105
|
+
billingAnchorTime?: Maybe<Scalars['Float']['output']>;
|
|
15106
|
+
hostNameForCreationOrder?: Maybe<Scalars['String']['output']>;
|
|
15107
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
15108
|
+
isImmediate?: Maybe<Scalars['Boolean']['output']>;
|
|
15109
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
15110
|
+
nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15111
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
15112
|
+
optedUsageOptions?: Maybe<CommerceExpOptedUsageOption>;
|
|
15113
|
+
originalOrderItemId?: Maybe<Scalars['ID']['output']>;
|
|
15114
|
+
parentEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
15115
|
+
processingInfo?: Maybe<CommerceExpProcessingInfo>;
|
|
15116
|
+
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
15117
|
+
provisioningResourceAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
15118
|
+
quoteLineItemDetailsReference?: Maybe<CommerceExpOrderLineItemQuoteDetails>;
|
|
15119
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
15120
|
+
rebillOptions?: Maybe<CommerceExpRebillOptions>;
|
|
15121
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpOrderItemRelatesFromDetails>>>;
|
|
15122
|
+
rewindToOrderItemId?: Maybe<Scalars['ID']['output']>;
|
|
15123
|
+
subscriptionStartTime?: Maybe<Scalars['Float']['output']>;
|
|
15124
|
+
transition?: Maybe<CommerceExpTransition>;
|
|
15125
|
+
trialEndTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15126
|
+
type?: Maybe<CommerceExpOrderType>;
|
|
15127
|
+
};
|
|
15128
|
+
export declare type CommerceExpOrderItemRelatesFromDetails = {
|
|
15129
|
+
__typename?: 'CommerceExpOrderItemRelatesFromDetails';
|
|
15130
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
15131
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
15132
|
+
orderItem?: Maybe<CommerceExpOrderItem>;
|
|
15133
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
15134
|
+
referenceType?: Maybe<CommerceExpOrderItemRelatesFromReferenceType>;
|
|
15135
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
15136
|
+
};
|
|
15137
|
+
export declare enum CommerceExpOrderItemRelatesFromReferenceType {
|
|
15138
|
+
Entitlement = "ENTITLEMENT",
|
|
15139
|
+
OrderItem = "ORDER_ITEM"
|
|
15140
|
+
}
|
|
15141
|
+
export declare type CommerceExpOrderLineItemQuoteDetails = {
|
|
15142
|
+
__typename?: 'CommerceExpOrderLineItemQuoteDetails';
|
|
15143
|
+
quote?: Maybe<CommerceExpCcpQuote>;
|
|
15144
|
+
quoteId?: Maybe<Scalars['ID']['output']>;
|
|
15145
|
+
quoteLineItemId?: Maybe<Scalars['ID']['output']>;
|
|
15146
|
+
quoteLineItemType?: Maybe<CommerceExpLineItemType>;
|
|
15147
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
15148
|
+
};
|
|
15149
|
+
export declare type CommerceExpOrderProcessingItems = {
|
|
15150
|
+
__typename?: 'CommerceExpOrderProcessingItems';
|
|
15151
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
15152
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
15153
|
+
};
|
|
15154
|
+
export declare type CommerceExpOrderProcessingResult = {
|
|
15155
|
+
__typename?: 'CommerceExpOrderProcessingResult';
|
|
15156
|
+
items?: Maybe<Array<Maybe<CommerceExpOrderProcessingItems>>>;
|
|
15157
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
15158
|
+
};
|
|
15159
|
+
export declare type CommerceExpOrderRequest = {
|
|
15160
|
+
__typename?: 'CommerceExpOrderRequest';
|
|
15161
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
15162
|
+
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
15163
|
+
items?: Maybe<Array<CommerceExpOrderRequestItem>>;
|
|
15164
|
+
orderId: Scalars['String']['output'];
|
|
15165
|
+
orderIntentId?: Maybe<Scalars['String']['output']>;
|
|
15166
|
+
source?: Maybe<CommerceExpOrderSource>;
|
|
15167
|
+
};
|
|
15168
|
+
export declare type CommerceExpOrderRequestItem = CommerceExpOrderAccountModificationItem | CommerceExpOrderAmendmentItem | CommerceExpOrderCreationItem;
|
|
15169
|
+
export declare enum CommerceExpOrderSource {
|
|
15170
|
+
OrderIntent = "ORDER_INTENT",
|
|
15171
|
+
OrderItems = "ORDER_ITEMS",
|
|
15172
|
+
Quote = "QUOTE"
|
|
15173
|
+
}
|
|
15174
|
+
export declare enum CommerceExpOrderStatus {
|
|
15175
|
+
Failed = "FAILED",
|
|
15176
|
+
Pending = "PENDING",
|
|
15177
|
+
Processing = "PROCESSING",
|
|
15178
|
+
Success = "SUCCESS",
|
|
15179
|
+
SyncOrder = "SYNC_ORDER"
|
|
15180
|
+
}
|
|
15181
|
+
export declare enum CommerceExpOrderType {
|
|
15182
|
+
AccountModificationOrder = "ACCOUNT_MODIFICATION_ORDER",
|
|
15183
|
+
AmendmentOrder = "AMENDMENT_ORDER",
|
|
15184
|
+
CancellationOrder = "CANCELLATION_ORDER",
|
|
15185
|
+
CreationOrder = "CREATION_ORDER",
|
|
15186
|
+
CurrencySwitchOrder = "CURRENCY_SWITCH_ORDER",
|
|
15187
|
+
PatchEntitlementDetailsOrder = "PATCH_ENTITLEMENT_DETAILS_ORDER",
|
|
15188
|
+
ReactivationOrder = "REACTIVATION_ORDER",
|
|
15189
|
+
RebillOrder = "REBILL_ORDER",
|
|
15190
|
+
RevertTrialOrder = "REVERT_TRIAL_ORDER",
|
|
15191
|
+
RewindOrder = "REWIND_ORDER",
|
|
15192
|
+
SystemAmendmentOrder = "SYSTEM_AMENDMENT_ORDER",
|
|
15193
|
+
SystemCancellationOrder = "SYSTEM_CANCELLATION_ORDER",
|
|
15194
|
+
SystemPatchEntitlementDetailsOrder = "SYSTEM_PATCH_ENTITLEMENT_DETAILS_ORDER",
|
|
15195
|
+
TransferInCreateOrder = "TRANSFER_IN_CREATE_ORDER",
|
|
15196
|
+
TransferInOrder = "TRANSFER_IN_ORDER",
|
|
15197
|
+
TransferOutOrder = "TRANSFER_OUT_ORDER",
|
|
15198
|
+
TransitionOrder = "TRANSITION_ORDER"
|
|
15199
|
+
}
|
|
15200
|
+
export declare type CommerceExpOrgItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
15201
|
+
export declare type CommerceExpOrganisation = CommerceExpNode & {
|
|
15202
|
+
__typename?: 'CommerceExpOrganisation';
|
|
15203
|
+
id: Scalars['ID']['output'];
|
|
15204
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15205
|
+
};
|
|
15206
|
+
export declare type CommerceExpOriginalInvoiceReferral = {
|
|
15207
|
+
__typename?: 'CommerceExpOriginalInvoiceReferral';
|
|
15208
|
+
invoice?: Maybe<Scalars['String']['output']>;
|
|
15209
|
+
invoiceNumber?: Maybe<Scalars['String']['output']>;
|
|
15210
|
+
};
|
|
15211
|
+
export declare type CommerceExpOriginalItemReferral = {
|
|
15212
|
+
__typename?: 'CommerceExpOriginalItemReferral';
|
|
15213
|
+
externalInvoiceId?: Maybe<Scalars['String']['output']>;
|
|
15214
|
+
invoiceDate?: Maybe<Scalars['Float']['output']>;
|
|
15215
|
+
invoiceRequestId?: Maybe<Scalars['String']['output']>;
|
|
15216
|
+
invoiceRequestItemIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
15217
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
15218
|
+
};
|
|
15219
|
+
export declare type CommerceExpOverRide = CommerceExpPromotionBenefit & {
|
|
15220
|
+
__typename?: 'CommerceExpOverRide';
|
|
15221
|
+
benefitType?: Maybe<CommerceExpBenefitType>;
|
|
15222
|
+
customisable?: Maybe<CommerceExpPromotionBenefitCustomisable>;
|
|
15223
|
+
duration?: Maybe<CommerceExpDurationEnum>;
|
|
15224
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
15225
|
+
subBenefitType?: Maybe<CommerceExpSubBenefitType>;
|
|
15226
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
15227
|
+
};
|
|
15228
|
+
export declare enum CommerceExpPartnerTier {
|
|
15229
|
+
Access = "ACCESS",
|
|
15230
|
+
Gold = "GOLD",
|
|
15231
|
+
Platinum = "PLATINUM",
|
|
15232
|
+
Silver = "SILVER"
|
|
15233
|
+
}
|
|
15234
|
+
export declare enum CommerceExpPartnerType {
|
|
15235
|
+
Aggregator = "AGGREGATOR",
|
|
15236
|
+
CorporateReseller = "CORPORATE_RESELLER",
|
|
15237
|
+
GlobalAlliancePartner = "GLOBAL_ALLIANCE_PARTNER",
|
|
15238
|
+
SolutionPartner = "SOLUTION_PARTNER"
|
|
15239
|
+
}
|
|
15240
|
+
export declare type CommerceExpPauseBilling = {
|
|
15241
|
+
__typename?: 'CommerceExpPauseBilling';
|
|
15242
|
+
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15243
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15244
|
+
};
|
|
15245
|
+
export declare type CommerceExpPayPalInfo = {
|
|
15246
|
+
__typename?: 'CommerceExpPayPalInfo';
|
|
15247
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
15248
|
+
merchantId?: Maybe<Scalars['String']['output']>;
|
|
15249
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15250
|
+
};
|
|
15251
|
+
export declare type CommerceExpPayPalInput = {
|
|
15252
|
+
email: Scalars['String']['input'];
|
|
15253
|
+
merchantId: Scalars['String']['input'];
|
|
15254
|
+
name: Scalars['String']['input'];
|
|
15255
|
+
nonce: Scalars['String']['input'];
|
|
15256
|
+
};
|
|
15257
|
+
export declare type CommerceExpPaymentMethod = {
|
|
15258
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
15259
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
15260
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15261
|
+
id: Scalars['ID']['output'];
|
|
15262
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
15263
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
15264
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15265
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
15266
|
+
};
|
|
15267
|
+
export declare type CommerceExpPaymentMethodPaginatedEntitlementsArgs = {
|
|
15268
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15269
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
15270
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15271
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15272
|
+
};
|
|
15273
|
+
export declare enum CommerceExpPaymentMethodCreationCurrency {
|
|
15274
|
+
Usd = "USD"
|
|
15275
|
+
}
|
|
15276
|
+
export declare enum CommerceExpPaymentMethodCreationType {
|
|
15277
|
+
Deferred = "DEFERRED",
|
|
15278
|
+
Paypal = "PAYPAL"
|
|
15279
|
+
}
|
|
15280
|
+
export declare type CommerceExpPaymentMethodError = {
|
|
15281
|
+
__typename?: 'CommerceExpPaymentMethodError';
|
|
15282
|
+
code?: Maybe<Scalars['Int']['output']>;
|
|
15283
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
15284
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
15285
|
+
};
|
|
15286
|
+
export declare enum CommerceExpPaymentMethodType {
|
|
15287
|
+
Ach = "ACH",
|
|
15288
|
+
Card = "CARD",
|
|
15289
|
+
Deferred = "DEFERRED",
|
|
15290
|
+
Paypal = "PAYPAL"
|
|
15291
|
+
}
|
|
15292
|
+
export declare type CommerceExpPaymentStatus = {
|
|
15293
|
+
__typename?: 'CommerceExpPaymentStatus';
|
|
15294
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
15295
|
+
status?: Maybe<CommerceExpPaymentStatusType>;
|
|
15296
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15297
|
+
};
|
|
15298
|
+
export declare enum CommerceExpPaymentStatusType {
|
|
15299
|
+
NoAction = "NO_ACTION",
|
|
15300
|
+
RequiresAction = "REQUIRES_ACTION",
|
|
15301
|
+
RequiresDifferentPaymentMethod = "REQUIRES_DIFFERENT_PAYMENT_METHOD"
|
|
15302
|
+
}
|
|
15303
|
+
export declare type CommerceExpPaypalPaymentMethod = CommerceExpNode & CommerceExpPaymentMethod & {
|
|
15304
|
+
__typename?: 'CommerceExpPaypalPaymentMethod';
|
|
15305
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
15306
|
+
default?: Maybe<Scalars['Boolean']['output']>;
|
|
15307
|
+
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15308
|
+
id: Scalars['ID']['output'];
|
|
15309
|
+
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
15310
|
+
paginatedEntitlements?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
15311
|
+
payPal?: Maybe<CommerceExpPayPalInfo>;
|
|
15312
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15313
|
+
type?: Maybe<CommerceExpPaymentMethodType>;
|
|
15314
|
+
};
|
|
15315
|
+
export declare type CommerceExpPaypalPaymentMethodPaginatedEntitlementsArgs = {
|
|
15316
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15317
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
15318
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15319
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15320
|
+
};
|
|
15321
|
+
export declare type CommerceExpPeriod = {
|
|
15322
|
+
__typename?: 'CommerceExpPeriod';
|
|
15323
|
+
endAt?: Maybe<Scalars['Float']['output']>;
|
|
15324
|
+
startAt?: Maybe<Scalars['Float']['output']>;
|
|
15325
|
+
};
|
|
15326
|
+
export declare type CommerceExpPeriodResponse = {
|
|
15327
|
+
__typename?: 'CommerceExpPeriodResponse';
|
|
15328
|
+
endsAt?: Maybe<Scalars['Float']['output']>;
|
|
15329
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
15330
|
+
};
|
|
15331
|
+
export declare type CommerceExpPhase = {
|
|
15332
|
+
__typename?: 'CommerceExpPhase';
|
|
15333
|
+
billingBehaviourConfiguration?: Maybe<CommerceExpBillingBehaviourConfiguration>;
|
|
15334
|
+
billingCycleAnchor?: Maybe<CommerceExpBillingCycleAnchor>;
|
|
15335
|
+
chargeDetails?: Maybe<CommerceExpChargeDetails>;
|
|
15336
|
+
endsAt?: Maybe<Scalars['Float']['output']>;
|
|
15337
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
15338
|
+
glp?: Maybe<Scalars['Float']['output']>;
|
|
15339
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
15340
|
+
orderId?: Maybe<Scalars['ID']['output']>;
|
|
15341
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
15342
|
+
relatedQuote?: Maybe<CommerceExpCcpQuote>;
|
|
15343
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
15344
|
+
subscriptionScheduleAction?: Maybe<CommerceExpSubscriptionScheduleAction>;
|
|
15345
|
+
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
15346
|
+
trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
|
|
15347
|
+
};
|
|
15348
|
+
export declare type CommerceExpPlan = {
|
|
15349
|
+
__typename?: 'CommerceExpPlan';
|
|
15350
|
+
cycle?: Maybe<CommerceExpCycle>;
|
|
15351
|
+
};
|
|
15352
|
+
export declare enum CommerceExpPlsErrorType {
|
|
15353
|
+
NoPermission = "NO_PERMISSION"
|
|
15354
|
+
}
|
|
15355
|
+
export declare type CommerceExpPlsOrgEntitlementConnection = {
|
|
15356
|
+
__typename?: 'CommerceExpPlsOrgEntitlementConnection';
|
|
15357
|
+
edges?: Maybe<Array<Maybe<CommerceExpCcpEntitlementEdge>>>;
|
|
15358
|
+
nodes?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15359
|
+
pageInfo: PageInfo;
|
|
15360
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15361
|
+
};
|
|
15362
|
+
export declare type CommerceExpPlsQuery = {
|
|
15363
|
+
__typename?: 'CommerceExpPlsQuery';
|
|
15364
|
+
organisationEntitlementsV2?: Maybe<CommerceExpPlsQueryResult>;
|
|
15365
|
+
};
|
|
15366
|
+
export declare type CommerceExpPlsQueryOrganisationEntitlementsV2Args = {
|
|
15367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15368
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
15369
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15370
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15371
|
+
orgId: Scalars['ID']['input'];
|
|
15372
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
15373
|
+
};
|
|
15374
|
+
export declare type CommerceExpPlsQueryError = {
|
|
15375
|
+
__typename?: 'CommerceExpPlsQueryError';
|
|
15376
|
+
error?: Maybe<CommerceExpPlsErrorType>;
|
|
15377
|
+
};
|
|
15378
|
+
export declare type CommerceExpPlsQueryResult = CommerceExpPlsOrgEntitlementConnection | CommerceExpPlsQueryError;
|
|
15379
|
+
export declare type CommerceExpPostalAddress = {
|
|
15380
|
+
__typename?: 'CommerceExpPostalAddress';
|
|
15381
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
15382
|
+
country: Scalars['String']['output'];
|
|
15383
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
15384
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
15385
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
15386
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
15387
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
15388
|
+
};
|
|
15389
|
+
export declare type CommerceExpPreDunningAttempt = {
|
|
15390
|
+
__typename?: 'CommerceExpPreDunningAttempt';
|
|
15391
|
+
attemptCount?: Maybe<Scalars['Int']['output']>;
|
|
15392
|
+
attemptedAt?: Maybe<Scalars['String']['output']>;
|
|
15393
|
+
reasons?: Maybe<Array<Maybe<CommerceExpPreDunningAttemptReasons>>>;
|
|
15394
|
+
};
|
|
15395
|
+
export declare enum CommerceExpPreDunningAttemptReasons {
|
|
15396
|
+
NoBillTo = "NO_BILL_TO",
|
|
15397
|
+
NoPaymentMethod = "NO_PAYMENT_METHOD"
|
|
15398
|
+
}
|
|
15399
|
+
export declare enum CommerceExpPricingPlanActivatedReason {
|
|
15400
|
+
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
15401
|
+
DefaultPricing = "DEFAULT_PRICING",
|
|
15402
|
+
ExperimentalPricing = "EXPERIMENTAL_PRICING"
|
|
15403
|
+
}
|
|
15404
|
+
export declare enum CommerceExpPricingPlanCurrency {
|
|
15405
|
+
Jpy = "JPY",
|
|
15406
|
+
Usd = "USD"
|
|
15407
|
+
}
|
|
15408
|
+
export declare type CommerceExpPricingPlanCycle = {
|
|
15409
|
+
__typename?: 'CommerceExpPricingPlanCycle';
|
|
15410
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
15411
|
+
interval: CommerceExpPricingPlanInterval;
|
|
15412
|
+
name: Scalars['String']['output'];
|
|
15413
|
+
};
|
|
15414
|
+
export declare enum CommerceExpPricingPlanInterval {
|
|
15415
|
+
Day = "DAY",
|
|
15416
|
+
Month = "MONTH",
|
|
15417
|
+
Week = "WEEK",
|
|
15418
|
+
Year = "YEAR"
|
|
15419
|
+
}
|
|
15420
|
+
export declare type CommerceExpPricingPlanItem = {
|
|
15421
|
+
__typename?: 'CommerceExpPricingPlanItem';
|
|
15422
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
15423
|
+
chargeType?: Maybe<CommerceExpPricingPlanItemChargeType>;
|
|
15424
|
+
cycle?: Maybe<CommerceExpPricingPlanCycle>;
|
|
15425
|
+
prorateOnUsageChange?: Maybe<CommerceExpProratedOnUsageChange>;
|
|
15426
|
+
prorationBehaviour?: Maybe<CommerceExpProrationBehaviour>;
|
|
15427
|
+
tiers?: Maybe<Array<Maybe<CommerceExpPricingPlanItemTier>>>;
|
|
15428
|
+
tiersMode?: Maybe<CommerceExpPricingPlanItemTiersMode>;
|
|
15429
|
+
usageUpdateCadence?: Maybe<CommerceExpPricingPlanItemUsageUpdateCadence>;
|
|
15430
|
+
};
|
|
15431
|
+
export declare enum CommerceExpPricingPlanItemChargeType {
|
|
15432
|
+
AutoScaling = "AUTO_SCALING",
|
|
15433
|
+
Licensed = "LICENSED",
|
|
15434
|
+
Metered = "METERED"
|
|
15435
|
+
}
|
|
15436
|
+
export declare type CommerceExpPricingPlanItemTier = {
|
|
15437
|
+
__typename?: 'CommerceExpPricingPlanItemTier';
|
|
15438
|
+
amount?: Maybe<Scalars['Int']['output']>;
|
|
15439
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
15440
|
+
flatAmount?: Maybe<Scalars['Int']['output']>;
|
|
15441
|
+
floor?: Maybe<Scalars['Int']['output']>;
|
|
15442
|
+
policy?: Maybe<CommerceExpPricingPlanItemTierPolicy>;
|
|
15443
|
+
unitAmount?: Maybe<Scalars['Int']['output']>;
|
|
15444
|
+
};
|
|
15445
|
+
export declare enum CommerceExpPricingPlanItemTierPolicy {
|
|
15446
|
+
Block = "BLOCK",
|
|
15447
|
+
PerUnit = "PER_UNIT"
|
|
15448
|
+
}
|
|
15449
|
+
export declare enum CommerceExpPricingPlanItemTiersMode {
|
|
15450
|
+
Graduated = "GRADUATED",
|
|
15451
|
+
Volume = "VOLUME"
|
|
15452
|
+
}
|
|
15453
|
+
export declare type CommerceExpPricingPlanItemUsageUpdateCadence = {
|
|
15454
|
+
__typename?: 'CommerceExpPricingPlanItemUsageUpdateCadence';
|
|
15455
|
+
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
15456
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15457
|
+
};
|
|
15458
|
+
export declare enum CommerceExpPricingPlanStatus {
|
|
15459
|
+
Active = "ACTIVE",
|
|
15460
|
+
AtNotice = "AT_NOTICE",
|
|
15461
|
+
Draft = "DRAFT",
|
|
15462
|
+
Expired = "EXPIRED"
|
|
15463
|
+
}
|
|
15464
|
+
export declare type CommerceExpPricingPlanTransition = {
|
|
15465
|
+
__typename?: 'CommerceExpPricingPlanTransition';
|
|
15466
|
+
fromId?: Maybe<Scalars['ID']['output']>;
|
|
15467
|
+
toId?: Maybe<Scalars['ID']['output']>;
|
|
15468
|
+
};
|
|
15469
|
+
export declare enum CommerceExpPricingType {
|
|
15470
|
+
Free = "FREE",
|
|
15471
|
+
LimitedFree = "LIMITED_FREE",
|
|
15472
|
+
Paid = "PAID"
|
|
15473
|
+
}
|
|
15474
|
+
export declare type CommerceExpProcessingInfo = {
|
|
15475
|
+
__typename?: 'CommerceExpProcessingInfo';
|
|
15476
|
+
accountModification?: Maybe<CommerceExpAccountModification>;
|
|
15477
|
+
computedDetails?: Maybe<CommerceExpComputedDetails>;
|
|
15478
|
+
entitlementRef?: Maybe<CommerceExpOrderEntitlementRef>;
|
|
15479
|
+
saleTransitionDetails?: Maybe<CommerceExpSaleTransitionDetails>;
|
|
15480
|
+
saleTransitionType?: Maybe<CommerceExpSaleTransitionType>;
|
|
15481
|
+
status?: Maybe<CommerceExpProcessingInfoStatus>;
|
|
15482
|
+
transitionTime?: Maybe<CommerceExpTransitionTime>;
|
|
15483
|
+
transitionTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15484
|
+
};
|
|
15485
|
+
export declare enum CommerceExpProcessingInfoStatus {
|
|
15486
|
+
Fail = "FAIL",
|
|
15487
|
+
Processing = "PROCESSING",
|
|
15488
|
+
Success = "SUCCESS"
|
|
15489
|
+
}
|
|
15490
|
+
export declare type CommerceExpPromocodeIsApplicable = {
|
|
15491
|
+
__typename?: 'CommerceExpPromocodeIsApplicable';
|
|
15492
|
+
promotion?: Maybe<CommerceExpCcpPromotion>;
|
|
15493
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
15494
|
+
promotionKey?: Maybe<Scalars['String']['output']>;
|
|
15495
|
+
};
|
|
15496
|
+
export declare type CommerceExpPromocodeIsNotApplicable = {
|
|
15497
|
+
__typename?: 'CommerceExpPromocodeIsNotApplicable';
|
|
15498
|
+
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
15499
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
15500
|
+
};
|
|
15501
|
+
export declare enum CommerceExpPromotionApplicationType {
|
|
15502
|
+
ContinuePromo = "CONTINUE_PROMO",
|
|
15503
|
+
FreshPromo = "FRESH_PROMO"
|
|
15504
|
+
}
|
|
15505
|
+
export declare type CommerceExpPromotionBenefit = {
|
|
15506
|
+
benefitType?: Maybe<CommerceExpBenefitType>;
|
|
15507
|
+
customisable?: Maybe<CommerceExpPromotionBenefitCustomisable>;
|
|
15508
|
+
duration?: Maybe<CommerceExpDurationEnum>;
|
|
15509
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
15510
|
+
subBenefitType?: Maybe<CommerceExpSubBenefitType>;
|
|
15511
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
15512
|
+
};
|
|
15513
|
+
export declare type CommerceExpPromotionBenefitCustomisable = {
|
|
15514
|
+
__typename?: 'CommerceExpPromotionBenefitCustomisable';
|
|
15515
|
+
duration?: Maybe<Array<Maybe<CommerceExpDurationEnum>>>;
|
|
15516
|
+
iterations?: Maybe<CommerceExpIntegerLimiter>;
|
|
15517
|
+
value?: Maybe<CommerceExpDecimalLimiter>;
|
|
15518
|
+
};
|
|
15519
|
+
export declare type CommerceExpPromotionBenefitDto = {
|
|
15520
|
+
__typename?: 'CommerceExpPromotionBenefitDto';
|
|
15521
|
+
duration?: Maybe<CommerceExpPromotionBenefitDtoDuration>;
|
|
15522
|
+
iterations?: Maybe<Scalars['Int']['output']>;
|
|
15523
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
15524
|
+
};
|
|
15525
|
+
export declare enum CommerceExpPromotionBenefitDtoDuration {
|
|
15526
|
+
Forever = "FOREVER",
|
|
15527
|
+
Once = "ONCE",
|
|
15528
|
+
Repeating = "REPEATING",
|
|
15529
|
+
Variable = "VARIABLE"
|
|
15530
|
+
}
|
|
15531
|
+
export declare enum CommerceExpPromotionCodeType {
|
|
15532
|
+
None = "NONE",
|
|
15533
|
+
Shared = "SHARED",
|
|
15534
|
+
Unique = "UNIQUE"
|
|
15535
|
+
}
|
|
15536
|
+
export declare type CommerceExpPromotionDefinition = {
|
|
15537
|
+
__typename?: 'CommerceExpPromotionDefinition';
|
|
15538
|
+
customisedValues?: Maybe<CommerceExpCustomisedValues>;
|
|
15539
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
15540
|
+
};
|
|
15541
|
+
export declare type CommerceExpPromotionFilter = {
|
|
15542
|
+
type?: InputMaybe<CommerceExpPromotionType>;
|
|
15543
|
+
};
|
|
15544
|
+
export declare type CommerceExpPromotionInstance = {
|
|
15545
|
+
__typename?: 'CommerceExpPromotionInstance';
|
|
15546
|
+
promotionDefinition?: Maybe<CommerceExpPromotionDefinition>;
|
|
15547
|
+
promotionInstanceId?: Maybe<Scalars['ID']['output']>;
|
|
15548
|
+
};
|
|
15549
|
+
export declare type CommerceExpPromotionPurpose = {
|
|
15550
|
+
__typename?: 'CommerceExpPromotionPurpose';
|
|
15551
|
+
invoiceNote?: Maybe<Scalars['String']['output']>;
|
|
15552
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15553
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
15554
|
+
};
|
|
15555
|
+
export declare enum CommerceExpPromotionStatus {
|
|
15556
|
+
Active = "ACTIVE",
|
|
15557
|
+
Cancelled = "CANCELLED",
|
|
15558
|
+
Drafted = "DRAFTED",
|
|
15559
|
+
Expired = "EXPIRED",
|
|
15560
|
+
Inactive = "INACTIVE",
|
|
15561
|
+
Withdrawn = "WITHDRAWN"
|
|
15562
|
+
}
|
|
15563
|
+
export declare enum CommerceExpPromotionType {
|
|
15564
|
+
DealRegistrationMargin = "DEAL_REGISTRATION_MARGIN",
|
|
15565
|
+
DiscretionaryDiscount = "DISCRETIONARY_DISCOUNT",
|
|
15566
|
+
ListPrice = "LIST_PRICE",
|
|
15567
|
+
ListPriceAdjustment = "LIST_PRICE_ADJUSTMENT",
|
|
15568
|
+
LoyaltyDiscount = "LOYALTY_DISCOUNT",
|
|
15569
|
+
PartnerDiscount = "PARTNER_DISCOUNT",
|
|
15570
|
+
PartnerMargin = "PARTNER_MARGIN",
|
|
15571
|
+
PromoCode = "PROMO_CODE",
|
|
15572
|
+
TrialExtension = "TRIAL_EXTENSION"
|
|
15573
|
+
}
|
|
15574
|
+
export declare type CommerceExpPromotionsInput = {
|
|
15575
|
+
entitlementId: Scalars['String']['input'];
|
|
15576
|
+
promotionId: Scalars['String']['input'];
|
|
15577
|
+
};
|
|
15578
|
+
export declare enum CommerceExpProratedOnUsageChange {
|
|
15579
|
+
AlwaysInvoice = "ALWAYS_INVOICE",
|
|
15580
|
+
CreateProrations = "CREATE_PRORATIONS",
|
|
15581
|
+
None = "NONE"
|
|
15582
|
+
}
|
|
15583
|
+
export declare type CommerceExpProrationBehaviour = {
|
|
15584
|
+
__typename?: 'CommerceExpProrationBehaviour';
|
|
15585
|
+
hasRemediationPeriod?: Maybe<Scalars['Boolean']['output']>;
|
|
15586
|
+
onExceeding?: Maybe<CommerceExpProratedOnUsageChange>;
|
|
15587
|
+
};
|
|
15588
|
+
export declare type CommerceExpPurchaseOrder = {
|
|
15589
|
+
__typename?: 'CommerceExpPurchaseOrder';
|
|
15590
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
15591
|
+
oneTimeUse?: Maybe<Scalars['Boolean']['output']>;
|
|
15592
|
+
};
|
|
15593
|
+
export declare type CommerceExpPurchaseOrderInput = {
|
|
15594
|
+
number: Scalars['String']['input'];
|
|
15595
|
+
oneTimeUse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15596
|
+
};
|
|
15597
|
+
export declare type CommerceExpQuoteFilter = {
|
|
15598
|
+
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
15599
|
+
};
|
|
15600
|
+
export declare enum CommerceExpQuoteLineItemContainerType {
|
|
15601
|
+
BillingPeriod = "BILLING_PERIOD",
|
|
15602
|
+
BillingSchedule = "BILLING_SCHEDULE",
|
|
15603
|
+
Container = "CONTAINER",
|
|
15604
|
+
Org = "ORG",
|
|
15605
|
+
Single = "SINGLE",
|
|
15606
|
+
Site = "SITE"
|
|
15607
|
+
}
|
|
15608
|
+
export declare enum CommerceExpQuoteLineItemGroupingLevelType {
|
|
15609
|
+
BillingSchedule = "BILLING_SCHEDULE",
|
|
15610
|
+
Container = "CONTAINER",
|
|
15611
|
+
Org = "ORG",
|
|
15612
|
+
Site = "SITE"
|
|
15613
|
+
}
|
|
15614
|
+
export declare type CommerceExpQuoteLineItemSaleTransitionDetails = {
|
|
15615
|
+
__typename?: 'CommerceExpQuoteLineItemSaleTransitionDetails';
|
|
15616
|
+
saleTransitionType?: Maybe<CommerceExpQuoteLineItemSaleTransitionType>;
|
|
15617
|
+
};
|
|
15618
|
+
export declare enum CommerceExpQuoteLineItemSaleTransitionType {
|
|
15619
|
+
Downgrade = "DOWNGRADE",
|
|
15620
|
+
Na = "NA",
|
|
15621
|
+
New = "NEW",
|
|
15622
|
+
Renew = "RENEW",
|
|
15623
|
+
Upgrade = "UPGRADE"
|
|
15624
|
+
}
|
|
15625
|
+
export declare enum CommerceExpQuoteStatus {
|
|
15626
|
+
AcceptanceInProgress = "ACCEPTANCE_IN_PROGRESS",
|
|
15627
|
+
Accepted = "ACCEPTED",
|
|
15628
|
+
CancellationInProgress = "CANCELLATION_IN_PROGRESS",
|
|
15629
|
+
Cancelled = "CANCELLED",
|
|
15630
|
+
CloningInProgress = "CLONING_IN_PROGRESS",
|
|
15631
|
+
CreationInProgress = "CREATION_IN_PROGRESS",
|
|
15632
|
+
Draft = "DRAFT",
|
|
15633
|
+
FinalizationInProgress = "FINALIZATION_IN_PROGRESS",
|
|
15634
|
+
Open = "OPEN",
|
|
15635
|
+
RevisionInProgress = "REVISION_IN_PROGRESS",
|
|
15636
|
+
Stale = "STALE",
|
|
15637
|
+
UpdateInProgress = "UPDATE_IN_PROGRESS",
|
|
15638
|
+
ValidationInProgress = "VALIDATION_IN_PROGRESS"
|
|
15639
|
+
}
|
|
15640
|
+
export declare type CommerceExpQuoteStatusFilter = {
|
|
15641
|
+
exclude?: InputMaybe<Array<CommerceExpQuoteStatus>>;
|
|
15642
|
+
include?: InputMaybe<Array<CommerceExpQuoteStatus>>;
|
|
15643
|
+
};
|
|
15644
|
+
export declare type CommerceExpRange = {
|
|
15645
|
+
__typename?: 'CommerceExpRange';
|
|
15646
|
+
lowerBound?: Maybe<Scalars['Int']['output']>;
|
|
15647
|
+
upperBound?: Maybe<Scalars['Int']['output']>;
|
|
15648
|
+
};
|
|
15649
|
+
export declare type CommerceExpReEstimateQuoteResult = CommerceExpCcpQuote | CommerceExpErrorResponse;
|
|
15650
|
+
export declare type CommerceExpRebillOptions = {
|
|
15651
|
+
__typename?: 'CommerceExpRebillOptions';
|
|
15652
|
+
billFromTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15653
|
+
};
|
|
15654
|
+
export declare enum CommerceExpRecipientEntity {
|
|
15655
|
+
Entitlement = "ENTITLEMENT",
|
|
15656
|
+
Pool = "POOL",
|
|
15657
|
+
User = "USER"
|
|
15658
|
+
}
|
|
15659
|
+
export declare type CommerceExpRelatesFromEntitlementDetails = {
|
|
15660
|
+
__typename?: 'CommerceExpRelatesFromEntitlementDetails';
|
|
15661
|
+
entitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
15662
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
15663
|
+
lineItem?: Maybe<CommerceExpLineItemResponse>;
|
|
15664
|
+
lineItemId?: Maybe<Scalars['String']['output']>;
|
|
15665
|
+
referenceType?: Maybe<CommerceExpRelatesFromEntitlementReferenceType>;
|
|
15666
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
15667
|
+
};
|
|
15668
|
+
export declare enum CommerceExpRelatesFromEntitlementReferenceType {
|
|
15669
|
+
Entitlement = "ENTITLEMENT",
|
|
15670
|
+
LineItem = "LINE_ITEM",
|
|
15671
|
+
OrderItem = "ORDER_ITEM"
|
|
15672
|
+
}
|
|
15673
|
+
export declare type CommerceExpRemoveAdminInput = {
|
|
15674
|
+
aaid: Scalars['String']['input'];
|
|
15675
|
+
};
|
|
15676
|
+
export declare type CommerceExpRemoveAdminPayload = CommerceExpMutationPayload & {
|
|
15677
|
+
__typename?: 'CommerceExpRemoveAdminPayload';
|
|
15678
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15679
|
+
success: Scalars['Boolean']['output'];
|
|
15680
|
+
};
|
|
15681
|
+
export declare type CommerceExpRuleCondition = CommerceExpAndRuleCondition | CommerceExpOrRuleCondition;
|
|
15682
|
+
export declare enum CommerceExpRuleConditionOperatorType {
|
|
15683
|
+
And = "AND",
|
|
15684
|
+
Or = "OR"
|
|
15685
|
+
}
|
|
15686
|
+
export declare type CommerceExpSaleTransitionDetails = {
|
|
15687
|
+
__typename?: 'CommerceExpSaleTransitionDetails';
|
|
15688
|
+
currentOfferingLevel?: Maybe<Scalars['Int']['output']>;
|
|
15689
|
+
glpForCurrentPlan?: Maybe<Scalars['Float']['output']>;
|
|
15690
|
+
glpForLastPaidPlan?: Maybe<Scalars['Float']['output']>;
|
|
15691
|
+
glpForNextPlan?: Maybe<Scalars['Float']['output']>;
|
|
15692
|
+
lastPaidOfferingLevel?: Maybe<Scalars['Int']['output']>;
|
|
15693
|
+
nextOfferingLevel?: Maybe<Scalars['Int']['output']>;
|
|
15694
|
+
saleTransitionType?: Maybe<CommerceExpSaleTransitionType>;
|
|
15695
|
+
};
|
|
15696
|
+
export declare enum CommerceExpSaleTransitionType {
|
|
15697
|
+
Downgrade = "DOWNGRADE",
|
|
15698
|
+
Na = "NA",
|
|
15699
|
+
New = "NEW",
|
|
15700
|
+
Renew = "RENEW",
|
|
15701
|
+
Upgrade = "UPGRADE"
|
|
15702
|
+
}
|
|
15703
|
+
export declare type CommerceExpScheduledChanges = {
|
|
15704
|
+
__typename?: 'CommerceExpScheduledChanges';
|
|
15705
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
15706
|
+
nextCycleChange?: Maybe<CommerceExpNextCycleChange>;
|
|
15707
|
+
phases?: Maybe<Array<Maybe<CommerceExpPhase>>>;
|
|
15708
|
+
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
15709
|
+
};
|
|
15710
|
+
export declare type CommerceExpSendNotificationInput = {
|
|
15711
|
+
customMessage?: InputMaybe<Scalars['String']['input']>;
|
|
15712
|
+
invoiceGroupId: Scalars['String']['input'];
|
|
15713
|
+
requesterAccountId: Scalars['String']['input'];
|
|
15714
|
+
source: CommerceExpNotificationSource;
|
|
15715
|
+
transactionAccountId: Scalars['String']['input'];
|
|
15716
|
+
};
|
|
15717
|
+
export declare type CommerceExpSendNotificationPayload = CommerceExpMutationPayload & {
|
|
15718
|
+
__typename?: 'CommerceExpSendNotificationPayload';
|
|
15719
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15720
|
+
notification?: Maybe<Array<Maybe<CommerceExpNotification>>>;
|
|
15721
|
+
success: Scalars['Boolean']['output'];
|
|
15722
|
+
};
|
|
15723
|
+
export declare type CommerceExpSetDefaultPaymentMethodPayload = CommerceExpMutationPayload & {
|
|
15724
|
+
__typename?: 'CommerceExpSetDefaultPaymentMethodPayload';
|
|
15725
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15726
|
+
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
15727
|
+
success: Scalars['Boolean']['output'];
|
|
15728
|
+
};
|
|
15729
|
+
export declare type CommerceExpSetupIntent = {
|
|
15730
|
+
__typename?: 'CommerceExpSetupIntent';
|
|
15731
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
15732
|
+
paymentMethodId?: Maybe<Scalars['String']['output']>;
|
|
15733
|
+
publicKey?: Maybe<Scalars['String']['output']>;
|
|
15734
|
+
};
|
|
15735
|
+
export declare type CommerceExpSetupIntentInput = {
|
|
15736
|
+
collectOpenInvoices?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15737
|
+
defaultForInvoiceGroup?: InputMaybe<Scalars['String']['input']>;
|
|
15738
|
+
invoiceId?: InputMaybe<Scalars['String']['input']>;
|
|
15739
|
+
};
|
|
15740
|
+
export declare type CommerceExpSetupIntentPayload = CommerceExpMutationPayload & {
|
|
15741
|
+
__typename?: 'CommerceExpSetupIntentPayload';
|
|
15742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15743
|
+
setupIntent?: Maybe<CommerceExpSetupIntent>;
|
|
15744
|
+
success: Scalars['Boolean']['output'];
|
|
15745
|
+
};
|
|
15746
|
+
export declare type CommerceExpShipToParty = CommerceExpNode & {
|
|
15747
|
+
__typename?: 'CommerceExpShipToParty';
|
|
15748
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
15749
|
+
id: Scalars['ID']['output'];
|
|
15750
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15751
|
+
name: Scalars['String']['output'];
|
|
15752
|
+
postalAddress?: Maybe<CommerceExpPostalAddress>;
|
|
15753
|
+
taxId?: Maybe<Scalars['String']['output']>;
|
|
15754
|
+
taxIds?: Maybe<Array<Maybe<CommerceExpTaxId>>>;
|
|
15755
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
15756
|
+
};
|
|
15757
|
+
export declare type CommerceExpSingleQuoteLineItem = {
|
|
15758
|
+
__typename?: 'CommerceExpSingleQuoteLineItem';
|
|
15759
|
+
lineItem: CommerceExpLineItemResponse;
|
|
15760
|
+
type: CommerceExpQuoteLineItemContainerType;
|
|
15761
|
+
};
|
|
15762
|
+
export declare type CommerceExpSiteItem = CommerceExpContainerQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
15763
|
+
export declare type CommerceExpSort = {
|
|
15764
|
+
field: Scalars['String']['input'];
|
|
15765
|
+
order: CommerceExpSortOrderType;
|
|
15766
|
+
};
|
|
15767
|
+
export declare enum CommerceExpSortOrderType {
|
|
15768
|
+
Asc = "ASC",
|
|
15769
|
+
Desc = "DESC"
|
|
15770
|
+
}
|
|
15771
|
+
export declare type CommerceExpStaleReason = {
|
|
15772
|
+
__typename?: 'CommerceExpStaleReason';
|
|
15773
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
15774
|
+
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
15775
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
15776
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15777
|
+
};
|
|
15778
|
+
export declare type CommerceExpStartsAt = {
|
|
15779
|
+
__typename?: 'CommerceExpStartsAt';
|
|
15780
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
15781
|
+
};
|
|
15782
|
+
export declare enum CommerceExpStatusIssueSeverity {
|
|
15783
|
+
Error = "ERROR",
|
|
15784
|
+
Uninvoiceable = "UNINVOICEABLE",
|
|
15785
|
+
Warning = "WARNING"
|
|
15786
|
+
}
|
|
15787
|
+
export declare enum CommerceExpSubBenefitType {
|
|
15788
|
+
Flat = "FLAT",
|
|
15789
|
+
MultiPercentage = "MULTI_PERCENTAGE",
|
|
15790
|
+
None = "NONE",
|
|
15791
|
+
Percentage = "PERCENTAGE",
|
|
15792
|
+
Trial = "TRIAL"
|
|
15793
|
+
}
|
|
15794
|
+
export declare enum CommerceExpSubscriptionScheduleAction {
|
|
15795
|
+
Cancel = "CANCEL",
|
|
15796
|
+
Update = "UPDATE"
|
|
15797
|
+
}
|
|
15798
|
+
export declare enum CommerceExpSubscriptionState {
|
|
15799
|
+
Paid = "PAID",
|
|
15800
|
+
Trial = "TRIAL"
|
|
15801
|
+
}
|
|
15802
|
+
export declare enum CommerceExpSubscriptionStatus {
|
|
15803
|
+
Active = "ACTIVE",
|
|
15804
|
+
Cancelled = "CANCELLED",
|
|
15805
|
+
NotStarted = "NOT_STARTED",
|
|
15806
|
+
Processing = "PROCESSING"
|
|
15807
|
+
}
|
|
15808
|
+
export declare enum CommerceExpSubscriptionTrialEndBehaviour {
|
|
15809
|
+
BillingPlan = "BILLING_PLAN",
|
|
15810
|
+
TrialPlan = "TRIAL_PLAN"
|
|
15811
|
+
}
|
|
15812
|
+
export declare enum CommerceExpSupportedBillingSystems {
|
|
15813
|
+
BackOffice = "BACK_OFFICE",
|
|
15814
|
+
Ccp = "CCP",
|
|
15815
|
+
Hams = "HAMS",
|
|
15816
|
+
Opsgenie = "OPSGENIE"
|
|
15817
|
+
}
|
|
15818
|
+
export declare type CommerceExpTaasCountry = {
|
|
15819
|
+
__typename?: 'CommerceExpTaasCountry';
|
|
15820
|
+
currency: Scalars['String']['output'];
|
|
15821
|
+
isoCode: Scalars['String']['output'];
|
|
15822
|
+
localTaxId?: Maybe<CommerceExpLocalTaxId>;
|
|
15823
|
+
name: Scalars['String']['output'];
|
|
15824
|
+
};
|
|
15825
|
+
export declare type CommerceExpTaasQuery = {
|
|
15826
|
+
__typename?: 'CommerceExpTaasQuery';
|
|
15827
|
+
countries?: Maybe<Array<Maybe<CommerceExpTaasCountry>>>;
|
|
15828
|
+
regions?: Maybe<Array<Maybe<CommerceExpTaasRegion>>>;
|
|
15829
|
+
};
|
|
15830
|
+
export declare type CommerceExpTaasQueryCountriesArgs = {
|
|
15831
|
+
locale: Scalars['String']['input'];
|
|
15832
|
+
};
|
|
15833
|
+
export declare type CommerceExpTaasQueryRegionsArgs = {
|
|
15834
|
+
country: Scalars['String']['input'];
|
|
15835
|
+
};
|
|
15836
|
+
export declare type CommerceExpTaasRegion = {
|
|
15837
|
+
__typename?: 'CommerceExpTaasRegion';
|
|
15838
|
+
isoCode: Scalars['String']['output'];
|
|
15839
|
+
name: Scalars['String']['output'];
|
|
15840
|
+
taxIdLabels?: Maybe<Array<CommerceExpTaxIdLabel>>;
|
|
15841
|
+
};
|
|
15842
|
+
export declare type CommerceExpTaxId = {
|
|
15843
|
+
__typename?: 'CommerceExpTaxId';
|
|
15844
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
15845
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
15846
|
+
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
15847
|
+
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
15848
|
+
};
|
|
15849
|
+
export declare type CommerceExpTaxIdLabel = {
|
|
15850
|
+
__typename?: 'CommerceExpTaxIdLabel';
|
|
15851
|
+
description: Scalars['String']['output'];
|
|
15852
|
+
displayName: Scalars['String']['output'];
|
|
15853
|
+
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
15854
|
+
metadata?: Maybe<CommerceExpTaxIdLabelMetadata>;
|
|
15855
|
+
type: Scalars['String']['output'];
|
|
15856
|
+
};
|
|
15857
|
+
export declare type CommerceExpTaxIdLabelMetadata = {
|
|
15858
|
+
__typename?: 'CommerceExpTaxIdLabelMetadata';
|
|
15859
|
+
labels?: Maybe<Array<Maybe<CommerceExpTaxIdLabelMetadataLabel>>>;
|
|
15860
|
+
type: Scalars['String']['output'];
|
|
15861
|
+
};
|
|
15862
|
+
export declare type CommerceExpTaxIdLabelMetadataLabel = {
|
|
15863
|
+
__typename?: 'CommerceExpTaxIdLabelMetadataLabel';
|
|
15864
|
+
default: Scalars['Boolean']['output'];
|
|
15865
|
+
label: Scalars['String']['output'];
|
|
15866
|
+
vatStatus: Scalars['String']['output'];
|
|
15867
|
+
};
|
|
15868
|
+
export declare type CommerceExpTaxItem = {
|
|
15869
|
+
__typename?: 'CommerceExpTaxItem';
|
|
15870
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
15871
|
+
taxAmountLabel?: Maybe<Scalars['String']['output']>;
|
|
15872
|
+
taxPercent?: Maybe<Scalars['Int']['output']>;
|
|
15873
|
+
taxPercent2?: Maybe<Scalars['Float']['output']>;
|
|
15874
|
+
};
|
|
15875
|
+
export declare type CommerceExpTaxItemsResponse = {
|
|
15876
|
+
__typename?: 'CommerceExpTaxItemsResponse';
|
|
15877
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
15878
|
+
taxAmountLabel?: Maybe<Scalars['String']['output']>;
|
|
15879
|
+
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
15880
|
+
};
|
|
15881
|
+
export declare enum CommerceExpTermedSubscriptionEndType {
|
|
15882
|
+
Duration = "DURATION",
|
|
15883
|
+
Timestamp = "TIMESTAMP"
|
|
15884
|
+
}
|
|
15885
|
+
export declare enum CommerceExpTermedSubscriptionStartType {
|
|
15886
|
+
LineItemEnd = "LINE_ITEM_END",
|
|
15887
|
+
QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
|
|
15888
|
+
Timestamp = "TIMESTAMP",
|
|
15889
|
+
UpcomingInvoice = "UPCOMING_INVOICE"
|
|
15890
|
+
}
|
|
15891
|
+
export declare type CommerceExpTerms = {
|
|
15892
|
+
__typename?: 'CommerceExpTerms';
|
|
15893
|
+
invoiceDueDays?: Maybe<Scalars['Int']['output']>;
|
|
15894
|
+
};
|
|
15895
|
+
export declare type CommerceExpTransactionAccountConnection = {
|
|
15896
|
+
__typename?: 'CommerceExpTransactionAccountConnection';
|
|
15897
|
+
edges?: Maybe<Array<Maybe<CommerceExpTransactionAccountEdge>>>;
|
|
15898
|
+
nodes?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
15899
|
+
pageInfo: PageInfo;
|
|
15900
|
+
};
|
|
15901
|
+
export declare type CommerceExpTransactionAccountEdge = {
|
|
15902
|
+
__typename?: 'CommerceExpTransactionAccountEdge';
|
|
15903
|
+
cursor: Scalars['String']['output'];
|
|
15904
|
+
node?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15905
|
+
};
|
|
15906
|
+
export declare type CommerceExpTransactionAccountInput = {
|
|
15907
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15908
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
15909
|
+
};
|
|
15910
|
+
export declare type CommerceExpTransactionAccountStatus = {
|
|
15911
|
+
__typename?: 'CommerceExpTransactionAccountStatus';
|
|
15912
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
15913
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
15914
|
+
partner?: Maybe<Scalars['Boolean']['output']>;
|
|
15915
|
+
type?: Maybe<CommerceExpTransactionAccountType>;
|
|
15916
|
+
};
|
|
15917
|
+
export declare enum CommerceExpTransactionAccountType {
|
|
15918
|
+
Direct = "DIRECT",
|
|
15919
|
+
Partner = "PARTNER",
|
|
15920
|
+
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
15921
|
+
}
|
|
15922
|
+
export declare type CommerceExpTransition = {
|
|
15923
|
+
__typename?: 'CommerceExpTransition';
|
|
15924
|
+
applyAfterTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
15925
|
+
offeringTransition?: Maybe<CommerceExpOfferingTransition>;
|
|
15926
|
+
pricingPlanTransition?: Maybe<CommerceExpPricingPlanTransition>;
|
|
15927
|
+
};
|
|
15928
|
+
export declare enum CommerceExpTransitionTime {
|
|
15929
|
+
Immediate = "IMMEDIATE",
|
|
15930
|
+
NextCycle = "NEXT_CYCLE",
|
|
15931
|
+
Scheduled = "SCHEDULED"
|
|
15932
|
+
}
|
|
15933
|
+
export declare type CommerceExpTrialIntent = {
|
|
15934
|
+
__typename?: 'CommerceExpTrialIntent';
|
|
15935
|
+
behaviourAtEndOfTrial?: Maybe<CommerceExpBehaviourAtEndOfTrial>;
|
|
15936
|
+
skipTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
15937
|
+
};
|
|
15938
|
+
export declare type CommerceExpTrialIntentInput = {
|
|
15939
|
+
behaviourAtEndOfTrial?: InputMaybe<CommerceExpBehaviourAtEndOfTrial>;
|
|
15940
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15941
|
+
};
|
|
15942
|
+
export declare type CommerceExpUndoScheduledDeactivationInput = {
|
|
15943
|
+
entitlementId: Scalars['String']['input'];
|
|
15944
|
+
};
|
|
15945
|
+
export declare type CommerceExpUpcomingBills = {
|
|
15946
|
+
__typename?: 'CommerceExpUpcomingBills';
|
|
15947
|
+
lines?: Maybe<Array<Maybe<CommerceExpUpcomingBillsLineItem>>>;
|
|
15948
|
+
subTotal?: Maybe<Scalars['Int']['output']>;
|
|
15949
|
+
tax?: Maybe<Scalars['Int']['output']>;
|
|
15950
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
15951
|
+
};
|
|
15952
|
+
export declare type CommerceExpUpcomingBillsLineItem = {
|
|
15953
|
+
__typename?: 'CommerceExpUpcomingBillsLineItem';
|
|
15954
|
+
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
15955
|
+
adjustments?: Maybe<Array<Maybe<CommerceExpAdjustmentDetail>>>;
|
|
15956
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
15957
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15958
|
+
estimateLineTypeForBAC?: Maybe<CommerceExpEstimateLineType>;
|
|
15959
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
15960
|
+
period?: Maybe<CommerceExpPeriodResponse>;
|
|
15961
|
+
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
15962
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
15963
|
+
quoteLineId?: Maybe<Scalars['String']['output']>;
|
|
15964
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
15965
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
15966
|
+
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
15967
|
+
taxPercent?: Maybe<Scalars['Int']['output']>;
|
|
15968
|
+
taxPercent2?: Maybe<Scalars['Float']['output']>;
|
|
15969
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
15970
|
+
};
|
|
15971
|
+
export declare type CommerceExpUpdateInvoiceGroupPayload = CommerceExpMutationPayload & {
|
|
15972
|
+
__typename?: 'CommerceExpUpdateInvoiceGroupPayload';
|
|
15973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15974
|
+
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
15975
|
+
success: Scalars['Boolean']['output'];
|
|
15976
|
+
};
|
|
15977
|
+
export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = CommerceExpMutationPayload & {
|
|
15978
|
+
__typename?: 'CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload';
|
|
15979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15980
|
+
success: Scalars['Boolean']['output'];
|
|
15981
|
+
};
|
|
15982
|
+
export declare type CommerceExpUpdateTransactionAccountPayload = CommerceExpMutationPayload & {
|
|
15983
|
+
__typename?: 'CommerceExpUpdateTransactionAccountPayload';
|
|
15984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15985
|
+
success: Scalars['Boolean']['output'];
|
|
15986
|
+
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15987
|
+
};
|
|
15988
|
+
export declare type CommerceExpUsageAggregation = {
|
|
15989
|
+
__typename?: 'CommerceExpUsageAggregation';
|
|
15990
|
+
aggregation: CommerceExpUsageAggregationType;
|
|
15991
|
+
result: Scalars['Int']['output'];
|
|
15992
|
+
};
|
|
15993
|
+
export declare type CommerceExpUsageAggregationResponse = {
|
|
15994
|
+
__typename?: 'CommerceExpUsageAggregationResponse';
|
|
15995
|
+
boundaryUsage?: Maybe<CommerceExpAggregationPeriodBoundaryUsage>;
|
|
15996
|
+
items?: Maybe<Array<CommerceExpUsageAggregationResponseItem>>;
|
|
15997
|
+
period: CommerceExpUsagePeriod;
|
|
15998
|
+
resolution: CommerceExpUsageAggregationsResolution;
|
|
15999
|
+
usageIdentifier: Scalars['String']['output'];
|
|
16000
|
+
};
|
|
16001
|
+
export declare type CommerceExpUsageAggregationResponseItem = {
|
|
16002
|
+
__typename?: 'CommerceExpUsageAggregationResponseItem';
|
|
16003
|
+
dimensionGroup?: Maybe<Scalars['String']['output']>;
|
|
16004
|
+
period: CommerceExpUsagePeriod;
|
|
16005
|
+
statistics: Array<Maybe<CommerceExpUsageAggregation>>;
|
|
16006
|
+
};
|
|
16007
|
+
export declare enum CommerceExpUsageAggregationType {
|
|
16008
|
+
Count = "COUNT",
|
|
16009
|
+
Latest = "LATEST",
|
|
16010
|
+
Max = "MAX",
|
|
16011
|
+
Sum = "SUM"
|
|
16012
|
+
}
|
|
16013
|
+
export declare type CommerceExpUsageAggregationsInput = {
|
|
16014
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
16015
|
+
period?: InputMaybe<CommerceExpUsagePeriodInput>;
|
|
16016
|
+
resolution: CommerceExpUsageAggregationsResolution;
|
|
16017
|
+
statistics: Array<CommerceExpUsageAggregationType>;
|
|
16018
|
+
usageAtStart?: InputMaybe<Scalars['Int']['input']>;
|
|
16019
|
+
usageIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
16020
|
+
};
|
|
16021
|
+
export declare enum CommerceExpUsageAggregationsResolution {
|
|
16022
|
+
FiveMinutes = "FIVE_MINUTES",
|
|
16023
|
+
OneDay = "ONE_DAY",
|
|
16024
|
+
OneHour = "ONE_HOUR",
|
|
16025
|
+
OneMonth = "ONE_MONTH",
|
|
16026
|
+
Period = "PERIOD"
|
|
16027
|
+
}
|
|
16028
|
+
export declare type CommerceExpUsageForUserBasedMeteredChargeElements = {
|
|
16029
|
+
__typename?: 'CommerceExpUsageForUserBasedMeteredChargeElements';
|
|
16030
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
16031
|
+
usersWithOverages?: Maybe<Scalars['Int']['output']>;
|
|
16032
|
+
};
|
|
16033
|
+
export declare type CommerceExpUsageHistoryConnection = {
|
|
16034
|
+
__typename?: 'CommerceExpUsageHistoryConnection';
|
|
16035
|
+
edges?: Maybe<Array<Maybe<CommerceExpUsageHistoryEdge>>>;
|
|
16036
|
+
nodes?: Maybe<Array<Maybe<CommerceExpUsageHistoryDataPoint>>>;
|
|
16037
|
+
pageInfo: PageInfo;
|
|
16038
|
+
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
16039
|
+
};
|
|
16040
|
+
export declare type CommerceExpUsageHistoryDataPoint = {
|
|
16041
|
+
__typename?: 'CommerceExpUsageHistoryDataPoint';
|
|
16042
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
16043
|
+
statistics?: Maybe<CommerceExpUsageHistoryStatistics>;
|
|
16044
|
+
};
|
|
16045
|
+
export declare type CommerceExpUsageHistoryEdge = {
|
|
16046
|
+
__typename?: 'CommerceExpUsageHistoryEdge';
|
|
16047
|
+
cursor: Scalars['String']['output'];
|
|
16048
|
+
node?: Maybe<CommerceExpUsageHistoryDataPoint>;
|
|
16049
|
+
};
|
|
16050
|
+
export declare type CommerceExpUsageHistoryStatistics = {
|
|
16051
|
+
__typename?: 'CommerceExpUsageHistoryStatistics';
|
|
16052
|
+
latest?: Maybe<Scalars['Int']['output']>;
|
|
16053
|
+
};
|
|
16054
|
+
export declare type CommerceExpUsagePeriod = {
|
|
16055
|
+
__typename?: 'CommerceExpUsagePeriod';
|
|
16056
|
+
endTime: Scalars['Float']['output'];
|
|
16057
|
+
startTime: Scalars['Float']['output'];
|
|
16058
|
+
};
|
|
16059
|
+
export declare type CommerceExpUsagePeriodInput = {
|
|
16060
|
+
endTime: Scalars['Float']['input'];
|
|
16061
|
+
startTime: Scalars['Float']['input'];
|
|
16062
|
+
};
|
|
16063
|
+
export declare type CommerceExpUserEntitlementRoles = {
|
|
16064
|
+
__typename?: 'CommerceExpUserEntitlementRoles';
|
|
16065
|
+
customerContactEntitlementIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
16066
|
+
customerContactEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
16067
|
+
isPrimaryContactForSomeEntitlement: Scalars['Boolean']['output'];
|
|
16068
|
+
roles?: Maybe<Array<Maybe<CommerceExpUserRole>>>;
|
|
16069
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
16070
|
+
};
|
|
16071
|
+
export declare type CommerceExpUserPermission = {
|
|
16072
|
+
__typename?: 'CommerceExpUserPermission';
|
|
16073
|
+
permissionId: Scalars['String']['output'];
|
|
16074
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
16075
|
+
};
|
|
16076
|
+
export declare enum CommerceExpUserRole {
|
|
16077
|
+
BillingAdmin = "BILLING_ADMIN",
|
|
16078
|
+
CustomerContact = "CUSTOMER_CONTACT"
|
|
16079
|
+
}
|
|
16080
|
+
export declare type CommerceExpValidOrderError = {
|
|
16081
|
+
__typename?: 'CommerceExpValidOrderError';
|
|
16082
|
+
orderPreviewError?: Maybe<CommerceExpCcpOrderValidationError>;
|
|
16083
|
+
};
|
|
16084
|
+
export declare type CommerceExpValidOrderItem = {
|
|
16085
|
+
__typename?: 'CommerceExpValidOrderItem';
|
|
16086
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
16087
|
+
orderEstimateItem?: Maybe<CommerceExpOrderBillEstimate>;
|
|
16088
|
+
orderPreviewItem?: Maybe<CommerceExpOrderItem>;
|
|
16089
|
+
recuringEstimateItem?: Maybe<CommerceExpOrderBillEstimate>;
|
|
16090
|
+
};
|
|
16091
|
+
export declare type CommerceExpValidOrderResponse = CommerceExpGenericError | CommerceExpValidOrderError | CommerceExpValidOrderSuccess;
|
|
16092
|
+
export declare type CommerceExpValidOrderSuccess = {
|
|
16093
|
+
__typename?: 'CommerceExpValidOrderSuccess';
|
|
16094
|
+
estimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
16095
|
+
order?: Maybe<CommerceExpOrderRequest>;
|
|
16096
|
+
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
16097
|
+
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
16098
|
+
validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
|
|
16099
|
+
};
|
|
16100
|
+
export declare type CommerceExpValidationErrorMessage = {
|
|
16101
|
+
__typename?: 'CommerceExpValidationErrorMessage';
|
|
16102
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
16103
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
16104
|
+
validationMessage?: Maybe<Scalars['String']['output']>;
|
|
16105
|
+
};
|
|
16106
|
+
export declare type CommerceExpVersionChangeContext = {
|
|
16107
|
+
__typename?: 'CommerceExpVersionChangeContext';
|
|
16108
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
16109
|
+
eventType?: Maybe<CommerceExpVersionChangeEntityEnum>;
|
|
16110
|
+
};
|
|
16111
|
+
export declare enum CommerceExpVersionChangeEntityEnum {
|
|
16112
|
+
BillToUpdated = "BILL_TO_UPDATED",
|
|
16113
|
+
CreditNoteGenerated = "CREDIT_NOTE_GENERATED",
|
|
16114
|
+
InvoiceGenerated = "INVOICE_GENERATED",
|
|
16115
|
+
InvoiceGroupUpdated = "INVOICE_GROUP_UPDATED",
|
|
16116
|
+
OrderPlaced = "ORDER_PLACED",
|
|
16117
|
+
PaymentMethodUpdated = "PAYMENT_METHOD_UPDATED",
|
|
16118
|
+
ShipToUpdated = "SHIP_TO_UPDATED"
|
|
16119
|
+
}
|
|
12486
16120
|
export declare type CommerceExperienceCapability = {
|
|
12487
16121
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
12488
16122
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18425,6 +22059,22 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
18425
22059
|
__typename?: 'ConfluenceCommentUpdated';
|
|
18426
22060
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
18427
22061
|
};
|
|
22062
|
+
export declare type ConfluenceConflictedPerson = Person & {
|
|
22063
|
+
__typename?: 'ConfluenceConflictedPerson';
|
|
22064
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
22065
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
22066
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
22067
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
22068
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
22069
|
+
permissionType?: Maybe<SitePermissionType>;
|
|
22070
|
+
profilePicture?: Maybe<Icon>;
|
|
22071
|
+
publicName?: Maybe<Scalars['String']['output']>;
|
|
22072
|
+
spacesAssigned?: Maybe<PaginatedSpaceList>;
|
|
22073
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
22074
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
22075
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
22076
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
22077
|
+
};
|
|
18428
22078
|
export declare type ConfluenceContentAiSummaryResponse = {
|
|
18429
22079
|
__typename?: 'ConfluenceContentAISummaryResponse';
|
|
18430
22080
|
contentAri: Scalars['ID']['output'];
|
|
@@ -21457,7 +25107,7 @@ export declare type ConfluencePrincipal = {
|
|
|
21457
25107
|
__typename?: 'ConfluencePrincipal';
|
|
21458
25108
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
21459
25109
|
displayName: Scalars['String']['output'];
|
|
21460
|
-
effectivePermission
|
|
25110
|
+
effectivePermission?: Maybe<ConfluencePermission>;
|
|
21461
25111
|
explicitPermission: ConfluencePermission;
|
|
21462
25112
|
hasSpaceEditPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
21463
25113
|
hasSpaceViewPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28318,6 +31968,12 @@ export declare type CustomerServiceCsmCustomer = Node & {
|
|
|
28318
31968
|
id: Scalars['ID']['output'];
|
|
28319
31969
|
name?: Maybe<Scalars['String']['output']>;
|
|
28320
31970
|
};
|
|
31971
|
+
export declare type CustomerServiceCsmOrganization = Node & {
|
|
31972
|
+
__typename?: 'CustomerServiceCsmOrganization';
|
|
31973
|
+
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
31974
|
+
id: Scalars['ID']['output'];
|
|
31975
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
31976
|
+
};
|
|
28321
31977
|
export declare type CustomerServiceCustomAttributeOptionStyle = {
|
|
28322
31978
|
__typename?: 'CustomerServiceCustomAttributeOptionStyle';
|
|
28323
31979
|
backgroundColour: Scalars['String']['output'];
|
|
@@ -37713,7 +41369,6 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
37713
41369
|
description?: Maybe<Scalars['String']['output']>;
|
|
37714
41370
|
displayName: Scalars['String']['output'];
|
|
37715
41371
|
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
37716
|
-
hasAgents: Scalars['Boolean']['output'];
|
|
37717
41372
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
37718
41373
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37719
41374
|
isInstalled: Scalars['Boolean']['output'];
|
|
@@ -37745,6 +41400,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
|
37745
41400
|
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
37746
41401
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37747
41402
|
id: Scalars['ID']['output'];
|
|
41403
|
+
productAri?: Maybe<Scalars['String']['output']>;
|
|
37748
41404
|
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
37749
41405
|
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
37750
41406
|
};
|
|
@@ -40896,6 +44552,7 @@ export declare type GraphStore = {
|
|
|
40896
44552
|
focusAreaHasStatusUpdateBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
40897
44553
|
focusAreaHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseConnection>;
|
|
40898
44554
|
focusAreaHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasStatusUpdateConnection>;
|
|
44555
|
+
focusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
40899
44556
|
focusAreaHasWatcher?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherConnection>;
|
|
40900
44557
|
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
40901
44558
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
@@ -43357,6 +47014,14 @@ export declare type GraphStoreFocusAreaHasStatusUpdateInverseBatchArgs = {
|
|
|
43357
47014
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43358
47015
|
sort?: InputMaybe<GraphStoreFocusAreaHasStatusUpdateSortInput>;
|
|
43359
47016
|
};
|
|
47017
|
+
export declare type GraphStoreFocusAreaHasThirdPartyDocumentInverseArgs = {
|
|
47018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
47019
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47020
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47021
|
+
id: Scalars['ID']['input'];
|
|
47022
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
47023
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasThirdPartyDocumentSortInput>;
|
|
47024
|
+
};
|
|
43360
47025
|
export declare type GraphStoreFocusAreaHasWatcherArgs = {
|
|
43361
47026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43362
47027
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49303,7 +52968,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
49303
52968
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
49304
52969
|
id: Scalars['ID']['output'];
|
|
49305
52970
|
};
|
|
49306
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
52971
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49307
52972
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
49308
52973
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
49309
52974
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -49328,7 +52993,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
49328
52993
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
49329
52994
|
id: Scalars['ID']['output'];
|
|
49330
52995
|
};
|
|
49331
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
52996
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
49332
52997
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
49333
52998
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
49334
52999
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -51152,7 +54817,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
51152
54817
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
51153
54818
|
id: Scalars['ID']['output'];
|
|
51154
54819
|
};
|
|
51155
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54820
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
51156
54821
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
51157
54822
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
51158
54823
|
value: Scalars['String']['output'];
|
|
@@ -51166,13 +54831,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
51166
54831
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
51167
54832
|
id: Scalars['ID']['output'];
|
|
51168
54833
|
};
|
|
51169
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54834
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
51170
54835
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
51171
54836
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
51172
54837
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
51173
54838
|
id: Scalars['ID']['output'];
|
|
51174
54839
|
};
|
|
51175
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54840
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
51176
54841
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
51177
54842
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
51178
54843
|
value: Scalars['Boolean']['output'];
|
|
@@ -51285,7 +54950,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
51285
54950
|
V2 = "V2",
|
|
51286
54951
|
V3 = "V3"
|
|
51287
54952
|
}
|
|
51288
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54953
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
51289
54954
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
51290
54955
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
51291
54956
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -51844,6 +55509,9 @@ export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
|
51844
55509
|
export declare type GraphStoreFocusAreaHasStatusUpdateSortInput = {
|
|
51845
55510
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51846
55511
|
};
|
|
55512
|
+
export declare type GraphStoreFocusAreaHasThirdPartyDocumentSortInput = {
|
|
55513
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55514
|
+
};
|
|
51847
55515
|
export declare type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
51848
55516
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51849
55517
|
};
|
|
@@ -52107,7 +55775,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
52107
55775
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
52108
55776
|
id: Scalars['ID']['output'];
|
|
52109
55777
|
};
|
|
52110
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55778
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
52111
55779
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
52112
55780
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
52113
55781
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -52121,7 +55789,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
52121
55789
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
52122
55790
|
id: Scalars['ID']['output'];
|
|
52123
55791
|
};
|
|
52124
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55792
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
52125
55793
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
52126
55794
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
52127
55795
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -58269,8 +61937,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
58269
61937
|
lastUpdated: Scalars['DateTime']['output'];
|
|
58270
61938
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
58271
61939
|
};
|
|
58272
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
58273
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
61940
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
61941
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
58274
61942
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
58275
61943
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
58276
61944
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -59207,6 +62875,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseEdge = {
|
|
|
59207
62875
|
};
|
|
59208
62876
|
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateInverseUnion = MercuryFocusArea;
|
|
59209
62877
|
export declare type GraphStoreSimplifiedFocusAreaHasStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
|
|
62878
|
+
export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
62879
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseConnection';
|
|
62880
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge>>>;
|
|
62881
|
+
pageInfo: PageInfo;
|
|
62882
|
+
};
|
|
62883
|
+
export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge = {
|
|
62884
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseEdge';
|
|
62885
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62886
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62887
|
+
id: Scalars['ID']['output'];
|
|
62888
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62889
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseUnion>;
|
|
62890
|
+
};
|
|
62891
|
+
export declare type GraphStoreSimplifiedFocusAreaHasThirdPartyDocumentInverseUnion = MercuryFocusArea;
|
|
59210
62892
|
export declare type GraphStoreSimplifiedFocusAreaHasWatcherConnection = HasPageInfo & {
|
|
59211
62893
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasWatcherConnection';
|
|
59212
62894
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasWatcherEdge>>>;
|
|
@@ -68089,6 +71771,7 @@ export declare type GraphStoreV2 = {
|
|
|
68089
71771
|
focusFocusAreaHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasExternalPositionInverseConnection>;
|
|
68090
71772
|
focusFocusAreaHasFocusFocusAreaStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateConnection>;
|
|
68091
71773
|
focusFocusAreaHasFocusFocusAreaStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateInverseConnection>;
|
|
71774
|
+
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
68092
71775
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
68093
71776
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
68094
71777
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
@@ -71496,6 +75179,13 @@ export declare type GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateInver
|
|
|
71496
75179
|
id: Scalars['ID']['input'];
|
|
71497
75180
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateSortInput>;
|
|
71498
75181
|
};
|
|
75182
|
+
export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentInverseArgs = {
|
|
75183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75184
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75185
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75186
|
+
id: Scalars['ID']['input'];
|
|
75187
|
+
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput>;
|
|
75188
|
+
};
|
|
71499
75189
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntityArgs = {
|
|
71500
75190
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71501
75191
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73775,7 +77465,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
73775
77465
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
73776
77466
|
id: Scalars['ID']['output'];
|
|
73777
77467
|
};
|
|
73778
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
77468
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
73779
77469
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
73780
77470
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
73781
77471
|
value: Scalars['Boolean']['output'];
|
|
@@ -74537,6 +78227,9 @@ export declare type GraphStoreV2FocusFocusAreaHasExternalPositionSortInput = {
|
|
|
74537
78227
|
export declare type GraphStoreV2FocusFocusAreaHasFocusFocusAreaStatusUpdateSortInput = {
|
|
74538
78228
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74539
78229
|
};
|
|
78230
|
+
export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
78231
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78232
|
+
};
|
|
74540
78233
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
74541
78234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74542
78235
|
};
|
|
@@ -79667,8 +83360,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
79667
83360
|
lastUpdated: Scalars['DateTime']['output'];
|
|
79668
83361
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
79669
83362
|
};
|
|
79670
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
79671
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
83363
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
83364
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
79672
83365
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
79673
83366
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
79674
83367
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
|
|
@@ -82529,6 +86222,20 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusU
|
|
|
82529
86222
|
};
|
|
82530
86223
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateInverseUnion = MercuryFocusArea;
|
|
82531
86224
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasFocusFocusAreaStatusUpdateUnion = MercuryFocusAreaStatusUpdate;
|
|
86225
|
+
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
86226
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection';
|
|
86227
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge>>>;
|
|
86228
|
+
pageInfo: PageInfo;
|
|
86229
|
+
};
|
|
86230
|
+
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge = {
|
|
86231
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseEdge';
|
|
86232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86234
|
+
id: Scalars['ID']['output'];
|
|
86235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86236
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseUnion>;
|
|
86237
|
+
};
|
|
86238
|
+
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseUnion = MercuryFocusArea;
|
|
82532
86239
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection = HasPageInfo & {
|
|
82533
86240
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection';
|
|
82534
86241
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityEdge>>>;
|
|
@@ -85566,6 +89273,7 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
85566
89273
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
85567
89274
|
};
|
|
85568
89275
|
export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
|
|
89276
|
+
autoProvisioningEditionParityDialogDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85569
89277
|
entitlementId: Scalars['ID']['input'];
|
|
85570
89278
|
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85571
89279
|
trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
|
|
@@ -85627,6 +89335,7 @@ export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
|
85627
89335
|
};
|
|
85628
89336
|
export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
85629
89337
|
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
89338
|
+
autoProvisioningEditionParityDialogDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
85630
89339
|
entitlementId: Scalars['ID']['output'];
|
|
85631
89340
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
85632
89341
|
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
@@ -91367,6 +95076,9 @@ export declare type JiraBoardViewFilterConfigArgs = {
|
|
|
91367
95076
|
export declare type JiraBoardViewGroupByConfigArgs = {
|
|
91368
95077
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
91369
95078
|
};
|
|
95079
|
+
export declare type JiraBoardViewGroupByOptionsArgs = {
|
|
95080
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
95081
|
+
};
|
|
91370
95082
|
export declare type JiraBoardViewIsEmptyArgs = {
|
|
91371
95083
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
91372
95084
|
};
|
|
@@ -91534,6 +95246,7 @@ export declare type JiraBoardViewQueryInput = {
|
|
|
91534
95246
|
export declare type JiraBoardViewSettings = {
|
|
91535
95247
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
91536
95248
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
95249
|
+
swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
91537
95250
|
textSearch?: InputMaybe<Scalars['String']['input']>;
|
|
91538
95251
|
};
|
|
91539
95252
|
export declare type JiraBoardViewStatus = {
|
|
@@ -95396,6 +99109,7 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
95396
99109
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
95397
99110
|
};
|
|
95398
99111
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
99112
|
+
fieldTypeGroupsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
95399
99113
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
95400
99114
|
schemeId: Scalars['ID']['input'];
|
|
95401
99115
|
};
|
|
@@ -95547,6 +99261,12 @@ export declare type JiraFieldToWorkTypesAssociation = {
|
|
|
95547
99261
|
availableOnAllWorkTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
95548
99262
|
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
95549
99263
|
};
|
|
99264
|
+
export declare type JiraFieldTranslation = {
|
|
99265
|
+
__typename?: 'JiraFieldTranslation';
|
|
99266
|
+
language: Scalars['String']['output'];
|
|
99267
|
+
translatedDescription?: Maybe<Scalars['String']['output']>;
|
|
99268
|
+
translatedName?: Maybe<Scalars['String']['output']>;
|
|
99269
|
+
};
|
|
95550
99270
|
export declare type JiraFieldType = {
|
|
95551
99271
|
__typename?: 'JiraFieldType';
|
|
95552
99272
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -95596,6 +99316,7 @@ export declare type JiraFieldWorkTypeConfigurationPayload = Payload & {
|
|
|
95596
99316
|
export declare type JiraFieldWorkTypeCustomizationsInput = {
|
|
95597
99317
|
descriptionCustomisations?: InputMaybe<Array<JiraFieldWorkTypeDescriptionCustomizationInput>>;
|
|
95598
99318
|
fieldId: Scalars['ID']['input'];
|
|
99319
|
+
requiredCustomizations?: InputMaybe<Array<JiraFieldWorkTypeRequiredOnCustomizationInput>>;
|
|
95599
99320
|
requiredOnWorkTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
95600
99321
|
schemeId: Scalars['ID']['input'];
|
|
95601
99322
|
workTypeAssociations: JiraFieldWorkTypeAssociationsInput;
|
|
@@ -95611,6 +99332,17 @@ export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
|
|
|
95611
99332
|
isDefault: Scalars['Boolean']['input'];
|
|
95612
99333
|
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
95613
99334
|
};
|
|
99335
|
+
export declare type JiraFieldWorkTypeRequiredCustomization = {
|
|
99336
|
+
__typename?: 'JiraFieldWorkTypeRequiredCustomization';
|
|
99337
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
99338
|
+
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
99339
|
+
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
99340
|
+
};
|
|
99341
|
+
export declare type JiraFieldWorkTypeRequiredOnCustomizationInput = {
|
|
99342
|
+
appliesToAllWorkTypes: Scalars['Boolean']['input'];
|
|
99343
|
+
isRequired: Scalars['Boolean']['input'];
|
|
99344
|
+
workTypeIds: Array<Scalars['ID']['input']>;
|
|
99345
|
+
};
|
|
95614
99346
|
export declare type JiraFilter = {
|
|
95615
99347
|
filterId: Scalars['String']['output'];
|
|
95616
99348
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -97831,9 +101563,11 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
97831
101563
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
97832
101564
|
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
97833
101565
|
providerForgeApp?: Maybe<App>;
|
|
101566
|
+
requiredOnCustomizations?: Maybe<Array<Maybe<JiraFieldWorkTypeRequiredCustomization>>>;
|
|
97834
101567
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
97835
101568
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
97836
101569
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
101570
|
+
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
97837
101571
|
trashedByUser?: Maybe<User>;
|
|
97838
101572
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
97839
101573
|
type: JiraConfigFieldType;
|
|
@@ -97917,6 +101651,9 @@ export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
|
97917
101651
|
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
97918
101652
|
limit: Scalars['Int']['input'];
|
|
97919
101653
|
};
|
|
101654
|
+
export declare type JiraIssueFieldConfigRequiredOnCustomizationsArgs = {
|
|
101655
|
+
schemeId: Scalars['ID']['input'];
|
|
101656
|
+
};
|
|
97920
101657
|
export declare type JiraIssueFieldConfigRequiredOnWorkTypesArgs = {
|
|
97921
101658
|
schemeId: Scalars['ID']['input'];
|
|
97922
101659
|
};
|
|
@@ -106288,6 +110025,16 @@ export declare type JiraRemoveCustomFieldPayload = Payload & {
|
|
|
106288
110025
|
errors?: Maybe<Array<MutationError>>;
|
|
106289
110026
|
success: Scalars['Boolean']['output'];
|
|
106290
110027
|
};
|
|
110028
|
+
export declare type JiraRemoveCustomFieldTranslationInput = {
|
|
110029
|
+
fieldId: Scalars['String']['input'];
|
|
110030
|
+
language: Scalars['String']['input'];
|
|
110031
|
+
};
|
|
110032
|
+
export declare type JiraRemoveCustomFieldTranslationPayload = Payload & {
|
|
110033
|
+
__typename?: 'JiraRemoveCustomFieldTranslationPayload';
|
|
110034
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110035
|
+
field?: Maybe<JiraIssueFieldConfig>;
|
|
110036
|
+
success: Scalars['Boolean']['output'];
|
|
110037
|
+
};
|
|
106291
110038
|
export declare type JiraRemoveFieldsFromFieldSchemeInput = {
|
|
106292
110039
|
fieldIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
106293
110040
|
schemeId: Scalars['ID']['input'];
|
|
@@ -108418,6 +112165,18 @@ export declare type JiraSetCapacityMostRecentSubRoutePayload = Payload & {
|
|
|
108418
112165
|
errors?: Maybe<Array<MutationError>>;
|
|
108419
112166
|
success: Scalars['Boolean']['output'];
|
|
108420
112167
|
};
|
|
112168
|
+
export declare type JiraSetCustomFieldTranslationInput = {
|
|
112169
|
+
fieldId: Scalars['String']['input'];
|
|
112170
|
+
language: Scalars['String']['input'];
|
|
112171
|
+
translatedDescription?: InputMaybe<Scalars['String']['input']>;
|
|
112172
|
+
translatedName?: InputMaybe<Scalars['String']['input']>;
|
|
112173
|
+
};
|
|
112174
|
+
export declare type JiraSetCustomFieldTranslationPayload = Payload & {
|
|
112175
|
+
__typename?: 'JiraSetCustomFieldTranslationPayload';
|
|
112176
|
+
errors?: Maybe<Array<MutationError>>;
|
|
112177
|
+
field?: Maybe<JiraIssueFieldConfig>;
|
|
112178
|
+
success: Scalars['Boolean']['output'];
|
|
112179
|
+
};
|
|
108421
112180
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
108422
112181
|
id: Scalars['ID']['input'];
|
|
108423
112182
|
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -123678,6 +127437,8 @@ export declare type Mutation = {
|
|
|
123678
127437
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
123679
127438
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
123680
127439
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
127440
|
+
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
127441
|
+
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
123681
127442
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
123682
127443
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
123683
127444
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -123799,6 +127560,12 @@ export declare type Mutation = {
|
|
|
123799
127560
|
channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
|
|
123800
127561
|
channelPlatform_relayMessage?: Maybe<ChannelPlatformMutationStatus>;
|
|
123801
127562
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
127563
|
+
commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskMutation>;
|
|
127564
|
+
commerceExp_ccp?: Maybe<CommerceExpCcpMutation>;
|
|
127565
|
+
commerceExp_ccpMutationWithQuery?: Maybe<CommerceExpCcpMutationWithQuery>;
|
|
127566
|
+
commerceExp_gups?: Maybe<CommerceExpGupsMutation>;
|
|
127567
|
+
commerceExp_notification?: Maybe<CommerceExpNotificationMutation>;
|
|
127568
|
+
commerceExp_query?: Maybe<Query>;
|
|
123802
127569
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
123803
127570
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
123804
127571
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
@@ -124205,6 +127972,7 @@ export declare type Mutation = {
|
|
|
124205
127972
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
124206
127973
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
124207
127974
|
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
127975
|
+
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
124208
127976
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
124209
127977
|
jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
124210
127978
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
@@ -124240,6 +128008,7 @@ export declare type Mutation = {
|
|
|
124240
128008
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
124241
128009
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
124242
128010
|
jira_setCapacityMostRecentSubRoute?: Maybe<JiraSetCapacityMostRecentSubRoutePayload>;
|
|
128011
|
+
jira_setCustomFieldTranslation?: Maybe<JiraSetCustomFieldTranslationPayload>;
|
|
124243
128012
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
124244
128013
|
jira_setGlobalPermissionUserGroups?: Maybe<JiraGlobalPermissionSetUserGroupsPayload>;
|
|
124245
128014
|
jira_setIsAgentAssignable?: Maybe<JiraSetIsAgentAssignableResponsePayload>;
|
|
@@ -124284,6 +128053,7 @@ export declare type Mutation = {
|
|
|
124284
128053
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
124285
128054
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
124286
128055
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
128056
|
+
kitsune_removeSection?: Maybe<KitsuneSection>;
|
|
124287
128057
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
124288
128058
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
124289
128059
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -124862,6 +128632,12 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
124862
128632
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
124863
128633
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
124864
128634
|
};
|
|
128635
|
+
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
128636
|
+
agentId: Scalars['ID']['input'];
|
|
128637
|
+
};
|
|
128638
|
+
export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
128639
|
+
agentId: Scalars['ID']['input'];
|
|
128640
|
+
};
|
|
124865
128641
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
124866
128642
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
124867
128643
|
};
|
|
@@ -125332,6 +129108,9 @@ export declare type MutationChannelPlatform_RelayMessageArgs = {
|
|
|
125332
129108
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
125333
129109
|
contentId: Scalars['ID']['input'];
|
|
125334
129110
|
};
|
|
129111
|
+
export declare type MutationCommerceExp_ApprovalDeskArgs = {
|
|
129112
|
+
input: CommerceExpApprovalDeskTenantInput;
|
|
129113
|
+
};
|
|
125335
129114
|
export declare type MutationCompleteSprintArgs = {
|
|
125336
129115
|
input?: InputMaybe<CompleteSprintInput>;
|
|
125337
129116
|
};
|
|
@@ -126733,6 +130512,10 @@ export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
|
126733
130512
|
export declare type MutationJira_PublishTimelineViewConfigArgs = {
|
|
126734
130513
|
input: JiraPublishTimelineViewConfigInput;
|
|
126735
130514
|
};
|
|
130515
|
+
export declare type MutationJira_RemoveCustomFieldTranslationArgs = {
|
|
130516
|
+
cloudId: Scalars['ID']['input'];
|
|
130517
|
+
input: JiraRemoveCustomFieldTranslationInput;
|
|
130518
|
+
};
|
|
126736
130519
|
export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
126737
130520
|
cloudId: Scalars['ID']['input'];
|
|
126738
130521
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
@@ -126843,6 +130626,10 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
126843
130626
|
export declare type MutationJira_SetCapacityMostRecentSubRouteArgs = {
|
|
126844
130627
|
input: JiraSetCapacityMostRecentSubRouteInput;
|
|
126845
130628
|
};
|
|
130629
|
+
export declare type MutationJira_SetCustomFieldTranslationArgs = {
|
|
130630
|
+
cloudId: Scalars['ID']['input'];
|
|
130631
|
+
input: JiraSetCustomFieldTranslationInput;
|
|
130632
|
+
};
|
|
126846
130633
|
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
126847
130634
|
input: JiraSetFieldSetsPreferencesInput;
|
|
126848
130635
|
};
|
|
@@ -126993,6 +130780,9 @@ export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
126993
130780
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
126994
130781
|
feedbackAri: Scalars['ID']['input'];
|
|
126995
130782
|
};
|
|
130783
|
+
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
130784
|
+
sectionAri: Scalars['ID']['input'];
|
|
130785
|
+
};
|
|
126996
130786
|
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
126997
130787
|
title: Scalars['String']['input'];
|
|
126998
130788
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -131029,6 +134819,7 @@ export declare type Query = {
|
|
|
131029
134819
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
131030
134820
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
131031
134821
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
134822
|
+
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
131032
134823
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
131033
134824
|
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
131034
134825
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
@@ -131203,7 +134994,14 @@ export declare type Query = {
|
|
|
131203
134994
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
131204
134995
|
collaboratorsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
131205
134996
|
comments?: Maybe<PaginatedCommentList>;
|
|
134997
|
+
commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskQuery>;
|
|
131206
134998
|
commerceExp_ccp?: Maybe<CommerceExpCcpQuery>;
|
|
134999
|
+
commerceExp_contactManagement?: Maybe<CommerceExpContactManagementQuery>;
|
|
135000
|
+
commerceExp_enterpriseGatekeeper?: Maybe<CommerceExpEnterpriseGatekeeper>;
|
|
135001
|
+
commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
|
|
135002
|
+
commerceExp_node?: Maybe<CommerceExpNode>;
|
|
135003
|
+
commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
|
|
135004
|
+
commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
|
|
131207
135005
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
131208
135006
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
131209
135007
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
@@ -131386,6 +135184,7 @@ export declare type Query = {
|
|
|
131386
135184
|
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
131387
135185
|
csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
131388
135186
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
135187
|
+
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
131389
135188
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
131390
135189
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
131391
135190
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -132059,10 +135858,10 @@ export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
|
132059
135858
|
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
132060
135859
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
132061
135860
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
135861
|
+
container: AdminAuditLogContainer;
|
|
132062
135862
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132063
135863
|
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
132064
135864
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
132065
|
-
orgId: Scalars['ID']['input'];
|
|
132066
135865
|
};
|
|
132067
135866
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
132068
135867
|
input: AdminLicenseInput;
|
|
@@ -132452,6 +136251,9 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
132452
136251
|
cloudId: Scalars['String']['input'];
|
|
132453
136252
|
containerAri: Scalars['ID']['input'];
|
|
132454
136253
|
};
|
|
136254
|
+
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
136255
|
+
input: AgentWorkspaceAvailabilityInput;
|
|
136256
|
+
};
|
|
132455
136257
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
132456
136258
|
projectId: Scalars['ID']['input'];
|
|
132457
136259
|
scheduleId: Scalars['ID']['input'];
|
|
@@ -133242,9 +137044,30 @@ export declare type QueryCommentsArgs = {
|
|
|
133242
137044
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
133243
137045
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
133244
137046
|
};
|
|
137047
|
+
export declare type QueryCommerceExp_ApprovalDeskArgs = {
|
|
137048
|
+
tenant: CommerceExpApprovalDeskTenantInput;
|
|
137049
|
+
};
|
|
133245
137050
|
export declare type QueryCommerceExp_CcpArgs = {
|
|
133246
137051
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
133247
137052
|
};
|
|
137053
|
+
export declare type QueryCommerceExp_ContactManagementArgs = {
|
|
137054
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
137055
|
+
};
|
|
137056
|
+
export declare type QueryCommerceExp_EnterpriseGatekeeperArgs = {
|
|
137057
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
137058
|
+
};
|
|
137059
|
+
export declare type QueryCommerceExp_IntercomArgs = {
|
|
137060
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
137061
|
+
};
|
|
137062
|
+
export declare type QueryCommerceExp_NodeArgs = {
|
|
137063
|
+
id: Scalars['ID']['input'];
|
|
137064
|
+
};
|
|
137065
|
+
export declare type QueryCommerceExp_PlsArgs = {
|
|
137066
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
137067
|
+
};
|
|
137068
|
+
export declare type QueryCommerceExp_TaasArgs = {
|
|
137069
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
137070
|
+
};
|
|
133248
137071
|
export declare type QueryConfluenceArgs = {
|
|
133249
137072
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133250
137073
|
};
|
|
@@ -134175,6 +137998,9 @@ export declare type QueryCsmAi_GetWidgetArgs = {
|
|
|
134175
137998
|
export declare type QueryCsmCustomersByIdsArgs = {
|
|
134176
137999
|
csmCustomerAris: Array<Scalars['ID']['input']>;
|
|
134177
138000
|
};
|
|
138001
|
+
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
138002
|
+
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
138003
|
+
};
|
|
134178
138004
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
134179
138005
|
domain: Scalars['String']['input'];
|
|
134180
138006
|
};
|
|
@@ -157825,6 +161651,7 @@ export declare enum ShepherdAlertSnippetRedactionFailureReason {
|
|
|
157825
161651
|
InvalidPointer = "INVALID_POINTER",
|
|
157826
161652
|
MaxFieldLength = "MAX_FIELD_LENGTH",
|
|
157827
161653
|
OverlappingRequestsForContentItem = "OVERLAPPING_REQUESTS_FOR_CONTENT_ITEM",
|
|
161654
|
+
RedactionIdAlreadyExists = "REDACTION_ID_ALREADY_EXISTS",
|
|
157828
161655
|
TooManyRequestsPerContentItem = "TOO_MANY_REQUESTS_PER_CONTENT_ITEM",
|
|
157829
161656
|
Unknown = "UNKNOWN"
|
|
157830
161657
|
}
|
|
@@ -160597,6 +164424,7 @@ export declare type SpfCreatePlanScenarioInput = {
|
|
|
160597
164424
|
export declare type SpfCreatePlanScenarioInvestmentInput = {
|
|
160598
164425
|
committedEffort?: InputMaybe<Scalars['Int']['input']>;
|
|
160599
164426
|
committedOwnerId?: InputMaybe<Scalars['String']['input']>;
|
|
164427
|
+
groupType?: InputMaybe<SpfPlanScenarioInvestmentGroupType>;
|
|
160600
164428
|
investmentId: Scalars['String']['input'];
|
|
160601
164429
|
planScenarioId: Scalars['ID']['input'];
|
|
160602
164430
|
};
|
|
@@ -160783,6 +164611,7 @@ export declare type SpfPlanScenarioInvestment = Node & {
|
|
|
160783
164611
|
committedOwner?: Maybe<User>;
|
|
160784
164612
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
160785
164613
|
createdBy?: Maybe<User>;
|
|
164614
|
+
groupType?: Maybe<SpfPlanScenarioInvestmentGroupType>;
|
|
160786
164615
|
id: Scalars['ID']['output'];
|
|
160787
164616
|
investment?: Maybe<SpfInvestment>;
|
|
160788
164617
|
planScenarioId: Scalars['String']['output'];
|
|
@@ -160800,6 +164629,10 @@ export declare type SpfPlanScenarioInvestmentEdge = {
|
|
|
160800
164629
|
cursor: Scalars['String']['output'];
|
|
160801
164630
|
node?: Maybe<SpfPlanScenarioInvestmentResult>;
|
|
160802
164631
|
};
|
|
164632
|
+
export declare enum SpfPlanScenarioInvestmentGroupType {
|
|
164633
|
+
Prioritized = "PRIORITIZED",
|
|
164634
|
+
Unprioritized = "UNPRIORITIZED"
|
|
164635
|
+
}
|
|
160803
164636
|
export declare type SpfPlanScenarioInvestmentResult = QueryError | SpfPlanScenarioInvestment;
|
|
160804
164637
|
export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
|
|
160805
164638
|
export declare enum SpfPlanScenarioStatus {
|
|
@@ -167733,6 +171566,7 @@ export declare type TrelloAddLabelsToCardPayload = Payload & {
|
|
|
167733
171566
|
card?: Maybe<TrelloCard>;
|
|
167734
171567
|
errors?: Maybe<Array<MutationError>>;
|
|
167735
171568
|
success: Scalars['Boolean']['output'];
|
|
171569
|
+
updatedCard?: Maybe<TrelloBaseCard>;
|
|
167736
171570
|
};
|
|
167737
171571
|
export declare type TrelloAddMemberInput = {
|
|
167738
171572
|
cardId: Scalars['ID']['input'];
|
|
@@ -169440,6 +173274,16 @@ export declare type TrelloEnterprisePrefs = {
|
|
|
169440
173274
|
__typename?: 'TrelloEnterprisePrefs';
|
|
169441
173275
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
169442
173276
|
};
|
|
173277
|
+
export declare type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
173278
|
+
boardId: Scalars['ID']['input'];
|
|
173279
|
+
userInput: Scalars['String']['input'];
|
|
173280
|
+
};
|
|
173281
|
+
export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
173282
|
+
__typename?: 'TrelloGenerateBoardBackgroundWithAiPayload';
|
|
173283
|
+
board?: Maybe<TrelloBoard>;
|
|
173284
|
+
errors?: Maybe<Array<MutationError>>;
|
|
173285
|
+
success: Scalars['Boolean']['output'];
|
|
173286
|
+
};
|
|
169443
173287
|
export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
169444
173288
|
cardId: Scalars['ID']['input'];
|
|
169445
173289
|
checklistTarget: TrelloChecklistTarget;
|
|
@@ -170117,6 +173961,7 @@ export declare type TrelloMutationApi = {
|
|
|
170117
173961
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
170118
173962
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
170119
173963
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
173964
|
+
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
170120
173965
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
170121
173966
|
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
170122
173967
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
@@ -170228,6 +174073,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
170228
174073
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
170229
174074
|
input: TrelloEditPlannerCalendarEventInput;
|
|
170230
174075
|
};
|
|
174076
|
+
export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
174077
|
+
input: TrelloGenerateBoardBackgroundWithAiInput;
|
|
174078
|
+
};
|
|
170231
174079
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
170232
174080
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
170233
174081
|
};
|
|
@@ -171284,6 +175132,7 @@ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
|
171284
175132
|
card?: Maybe<TrelloCard>;
|
|
171285
175133
|
errors?: Maybe<Array<MutationError>>;
|
|
171286
175134
|
success: Scalars['Boolean']['output'];
|
|
175135
|
+
updatedCard?: Maybe<TrelloBaseCard>;
|
|
171287
175136
|
};
|
|
171288
175137
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
171289
175138
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
@@ -171465,6 +175314,9 @@ export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
|
171465
175314
|
export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
|
|
171466
175315
|
memberId: Scalars['ID']['input'];
|
|
171467
175316
|
};
|
|
175317
|
+
export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
|
|
175318
|
+
memberId?: InputMaybe<Scalars['ID']['input']>;
|
|
175319
|
+
};
|
|
171468
175320
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
171469
175321
|
id: Scalars['ID']['input'];
|
|
171470
175322
|
};
|