@forge/cli-shared 7.1.0-next.6 → 7.1.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/out/graphql/graphql-types.d.ts +297 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +152 -26
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3751,9 +3751,16 @@ export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienc
|
|
|
3751
3751
|
offering?: Maybe<CcpOffering>;
|
|
3752
3752
|
};
|
|
3753
3753
|
export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
3754
|
+
AnnualToMonthlyTransition = "ANNUAL_TO_MONTHLY_TRANSITION",
|
|
3755
|
+
AnnualTransitionNotSupported = "ANNUAL_TRANSITION_NOT_SUPPORTED",
|
|
3756
|
+
EntitlementsInDifferentIg = "ENTITLEMENTS_IN_DIFFERENT_IG",
|
|
3757
|
+
EntitlementsInDifferentTxa = "ENTITLEMENTS_IN_DIFFERENT_TXA",
|
|
3758
|
+
EntitlementsOnDifferentBillingCycle = "ENTITLEMENTS_ON_DIFFERENT_BILLING_CYCLE",
|
|
3754
3759
|
InsufficientInput = "INSUFFICIENT_INPUT",
|
|
3760
|
+
InvoiceGroupInDunning = "INVOICE_GROUP_IN_DUNNING",
|
|
3755
3761
|
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3756
3762
|
NoOfferingForProduct = "NO_OFFERING_FOR_PRODUCT",
|
|
3763
|
+
UnableToSourceTxa = "UNABLE_TO_SOURCE_TXA",
|
|
3757
3764
|
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3758
3765
|
}
|
|
3759
3766
|
export declare type CcpCreateEntitlementExperienceOptions = {
|
|
@@ -3808,6 +3815,66 @@ export declare type CcpCustomisedValues = {
|
|
|
3808
3815
|
applicationReason?: Maybe<CcpApplicationReason>;
|
|
3809
3816
|
benefits?: Maybe<Array<Maybe<CcpBenefit>>>;
|
|
3810
3817
|
};
|
|
3818
|
+
export declare type CcpCustomizationSetCoupling = {
|
|
3819
|
+
__typename?: 'CcpCustomizationSetCoupling';
|
|
3820
|
+
operation?: Maybe<CcpCustomizationSetCouplingOperation>;
|
|
3821
|
+
type?: Maybe<CcpCustomizationSetCouplingType>;
|
|
3822
|
+
};
|
|
3823
|
+
export declare type CcpCustomizationSetCouplingOperation = {
|
|
3824
|
+
__typename?: 'CcpCustomizationSetCouplingOperation';
|
|
3825
|
+
comparator?: Maybe<CcpCustomizationSetCouplingOperationComparator>;
|
|
3826
|
+
computeArguments?: Maybe<CcpCustomizationSetCouplingOperationComputeArgument>;
|
|
3827
|
+
relaxContext?: Maybe<CcpCustomizationSetCouplingOperationRelaxContext>;
|
|
3828
|
+
source?: Maybe<CcpCustomizationSetCouplingOperationSource>;
|
|
3829
|
+
type?: Maybe<CcpCustomizationSetCouplingOperationType>;
|
|
3830
|
+
};
|
|
3831
|
+
export declare enum CcpCustomizationSetCouplingOperationComparator {
|
|
3832
|
+
Equal = "EQUAL",
|
|
3833
|
+
GreaterThan = "GREATER_THAN",
|
|
3834
|
+
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
3835
|
+
LessThan = "LESS_THAN",
|
|
3836
|
+
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
3837
|
+
MatchTo = "MATCH_TO"
|
|
3838
|
+
}
|
|
3839
|
+
export declare type CcpCustomizationSetCouplingOperationComputeArgument = {
|
|
3840
|
+
__typename?: 'CcpCustomizationSetCouplingOperationComputeArgument';
|
|
3841
|
+
tag?: Maybe<CcpCustomizationSetCouplingOperationComputeArgumentTag>;
|
|
3842
|
+
};
|
|
3843
|
+
export declare enum CcpCustomizationSetCouplingOperationComputeArgumentTag {
|
|
3844
|
+
MultiInstanceTag = "MULTI_INSTANCE_TAG"
|
|
3845
|
+
}
|
|
3846
|
+
export declare type CcpCustomizationSetCouplingOperationRelaxContext = {
|
|
3847
|
+
__typename?: 'CcpCustomizationSetCouplingOperationRelaxContext';
|
|
3848
|
+
applicableGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3849
|
+
inTrial?: Maybe<CcpCustomizationSetCouplingOperationRelaxContextInTrial>;
|
|
3850
|
+
};
|
|
3851
|
+
export declare enum CcpCustomizationSetCouplingOperationRelaxContextInTrial {
|
|
3852
|
+
Any = "ANY",
|
|
3853
|
+
Both = "BOTH",
|
|
3854
|
+
From = "FROM",
|
|
3855
|
+
To = "TO"
|
|
3856
|
+
}
|
|
3857
|
+
export declare enum CcpCustomizationSetCouplingOperationSource {
|
|
3858
|
+
Relationship = "RELATIONSHIP",
|
|
3859
|
+
RelationshipFrom = "RELATIONSHIP_FROM",
|
|
3860
|
+
RelationshipTo = "RELATIONSHIP_TO",
|
|
3861
|
+
RelationshipToMax = "RELATIONSHIP_TO_MAX"
|
|
3862
|
+
}
|
|
3863
|
+
export declare enum CcpCustomizationSetCouplingOperationType {
|
|
3864
|
+
Compute = "COMPUTE",
|
|
3865
|
+
Constraint = "CONSTRAINT"
|
|
3866
|
+
}
|
|
3867
|
+
export declare enum CcpCustomizationSetCouplingType {
|
|
3868
|
+
CouplingBillingAnchorDate = "COUPLING_BILLING_ANCHOR_DATE",
|
|
3869
|
+
CouplingBillingCycle = "COUPLING_BILLING_CYCLE",
|
|
3870
|
+
CouplingBillingTermedDate = "COUPLING_BILLING_TERMED_DATE",
|
|
3871
|
+
CouplingChargeElementBillableLimit = "COUPLING_CHARGE_ELEMENT_BILLABLE_LIMIT",
|
|
3872
|
+
CouplingChargeType = "COUPLING_CHARGE_TYPE",
|
|
3873
|
+
CouplingInvoiceGroup = "COUPLING_INVOICE_GROUP",
|
|
3874
|
+
CouplingTagMultiInstanceType = "COUPLING_TAG_MULTI_INSTANCE_TYPE",
|
|
3875
|
+
CouplingTransactionAccount = "COUPLING_TRANSACTION_ACCOUNT",
|
|
3876
|
+
CouplingTrialEndDate = "COUPLING_TRIAL_END_DATE"
|
|
3877
|
+
}
|
|
3811
3878
|
export declare type CcpCycle = CommercePrimaryCycle & {
|
|
3812
3879
|
__typename?: 'CcpCycle';
|
|
3813
3880
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4166,6 +4233,137 @@ export declare type CcpOfferingRelationshipEdge = {
|
|
|
4166
4233
|
cursor: Scalars['String']['output'];
|
|
4167
4234
|
node?: Maybe<CcpOfferingRelationship>;
|
|
4168
4235
|
};
|
|
4236
|
+
export declare type CcpOfferingRelationshipTemplate = Node & {
|
|
4237
|
+
__typename?: 'CcpOfferingRelationshipTemplate';
|
|
4238
|
+
catalogAccountKey?: Maybe<Scalars['ID']['output']>;
|
|
4239
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4240
|
+
customizationSet?: Maybe<CcpOfferingRelationshipTemplateCustomizationSet>;
|
|
4241
|
+
customizationSetPreview?: Maybe<CcpOfferingRelationshipTemplateCustomizationSetPreview>;
|
|
4242
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4243
|
+
from?: Maybe<CcpOfferingRelationshipTemplateNode>;
|
|
4244
|
+
id: Scalars['ID']['output'];
|
|
4245
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
4246
|
+
status?: Maybe<CcpOfferingRelationshipTemplateStatus>;
|
|
4247
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4248
|
+
to?: Maybe<CcpOfferingRelationshipTemplateNode>;
|
|
4249
|
+
type?: Maybe<CcpOfferingRelationshipTemplateType>;
|
|
4250
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4251
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
4252
|
+
};
|
|
4253
|
+
export declare type CcpOfferingRelationshipTemplateCardinality = {
|
|
4254
|
+
__typename?: 'CcpOfferingRelationshipTemplateCardinality';
|
|
4255
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
4256
|
+
min?: Maybe<Scalars['Int']['output']>;
|
|
4257
|
+
};
|
|
4258
|
+
export declare type CcpOfferingRelationshipTemplateConditions = {
|
|
4259
|
+
__typename?: 'CcpOfferingRelationshipTemplateConditions';
|
|
4260
|
+
hostingType?: Maybe<CcpOfferingRelationshipTemplateConditionsHostingType>;
|
|
4261
|
+
};
|
|
4262
|
+
export declare enum CcpOfferingRelationshipTemplateConditionsHostingType {
|
|
4263
|
+
Cloud = "CLOUD",
|
|
4264
|
+
Datacenter = "DATACENTER",
|
|
4265
|
+
Server = "SERVER"
|
|
4266
|
+
}
|
|
4267
|
+
export declare enum CcpOfferingRelationshipTemplateCustomizationSet {
|
|
4268
|
+
AddOnBillingCoupled = "ADD_ON_BILLING_COUPLED",
|
|
4269
|
+
AppDatacenter = "APP_DATACENTER",
|
|
4270
|
+
CollectionEnterprise = "COLLECTION_ENTERPRISE",
|
|
4271
|
+
CollectionNonEnterprise = "COLLECTION_NON_ENTERPRISE",
|
|
4272
|
+
CollectionTrialEnterprise = "COLLECTION_TRIAL_ENTERPRISE",
|
|
4273
|
+
Enterprise = "ENTERPRISE",
|
|
4274
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
4275
|
+
JiraFamily = "JIRA_FAMILY",
|
|
4276
|
+
Marketplace = "MARKETPLACE",
|
|
4277
|
+
MarketplaceMultiInstance = "MARKETPLACE_MULTI_INSTANCE",
|
|
4278
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
4279
|
+
Sandbox = "SANDBOX",
|
|
4280
|
+
SandboxDependenceContainer = "SANDBOX_DEPENDENCE_CONTAINER",
|
|
4281
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
4282
|
+
}
|
|
4283
|
+
export declare type CcpOfferingRelationshipTemplateCustomizationSetPreview = {
|
|
4284
|
+
__typename?: 'CcpOfferingRelationshipTemplateCustomizationSetPreview';
|
|
4285
|
+
coupling?: Maybe<Array<Maybe<CcpCustomizationSetCoupling>>>;
|
|
4286
|
+
name?: Maybe<CcpOfferingRelationshipTemplateCustomizationSet>;
|
|
4287
|
+
overrideBehaviors?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateOverrideBehavior>>>;
|
|
4288
|
+
processorConfigs?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateProcessorConfigMapEntry>>>;
|
|
4289
|
+
};
|
|
4290
|
+
export declare type CcpOfferingRelationshipTemplateNode = {
|
|
4291
|
+
__typename?: 'CcpOfferingRelationshipTemplateNode';
|
|
4292
|
+
cardinality?: Maybe<CcpOfferingRelationshipTemplateCardinality>;
|
|
4293
|
+
selectors?: Maybe<CcpOfferingRelationshipTemplateSelectors>;
|
|
4294
|
+
};
|
|
4295
|
+
export declare type CcpOfferingRelationshipTemplateOverrideBehavior = {
|
|
4296
|
+
__typename?: 'CcpOfferingRelationshipTemplateOverrideBehavior';
|
|
4297
|
+
params?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4298
|
+
trigger?: Maybe<CcpOfferingRelationshipTemplateOverrideTrigger>;
|
|
4299
|
+
type?: Maybe<CcpOfferingRelationshipTemplateOverrideType>;
|
|
4300
|
+
};
|
|
4301
|
+
export declare enum CcpOfferingRelationshipTemplateOverrideTrigger {
|
|
4302
|
+
Any = "ANY",
|
|
4303
|
+
CouplingConstraintMultiInstanceTag = "COUPLING_CONSTRAINT_MULTI_INSTANCE_TAG",
|
|
4304
|
+
CreatingFrom = "CREATING_FROM",
|
|
4305
|
+
CreatingTo = "CREATING_TO",
|
|
4306
|
+
DeactivatingFrom = "DEACTIVATING_FROM",
|
|
4307
|
+
DeactivatingTo = "DEACTIVATING_TO",
|
|
4308
|
+
TermEndDateOnFrom = "TERM_END_DATE_ON_FROM",
|
|
4309
|
+
UpdatingFrom = "UPDATING_FROM",
|
|
4310
|
+
UpdatingTo = "UPDATING_TO"
|
|
4311
|
+
}
|
|
4312
|
+
export declare enum CcpOfferingRelationshipTemplateOverrideType {
|
|
4313
|
+
DeactivateEntitlement = "DEACTIVATE_ENTITLEMENT",
|
|
4314
|
+
DeactivateRelationship = "DEACTIVATE_RELATIONSHIP",
|
|
4315
|
+
DeactivateTo = "DEACTIVATE_TO",
|
|
4316
|
+
InheritChargeElementBillableLimit = "INHERIT_CHARGE_ELEMENT_BILLABLE_LIMIT",
|
|
4317
|
+
InheritTrialEndDate = "INHERIT_TRIAL_END_DATE",
|
|
4318
|
+
SoftTermEntitlement = "SOFT_TERM_ENTITLEMENT"
|
|
4319
|
+
}
|
|
4320
|
+
export declare type CcpOfferingRelationshipTemplateProcessorConfig = {
|
|
4321
|
+
__typename?: 'CcpOfferingRelationshipTemplateProcessorConfig';
|
|
4322
|
+
params?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4323
|
+
strategy?: Maybe<CcpOfferingRelationshipTemplateProcessorConfigStrategy>;
|
|
4324
|
+
};
|
|
4325
|
+
export declare type CcpOfferingRelationshipTemplateProcessorConfigMapEntry = {
|
|
4326
|
+
__typename?: 'CcpOfferingRelationshipTemplateProcessorConfigMapEntry';
|
|
4327
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
4328
|
+
value?: Maybe<CcpOfferingRelationshipTemplateProcessorConfig>;
|
|
4329
|
+
};
|
|
4330
|
+
export declare enum CcpOfferingRelationshipTemplateProcessorConfigStrategy {
|
|
4331
|
+
ComputeGlpAsWhole = "COMPUTE_GLP_AS_WHOLE"
|
|
4332
|
+
}
|
|
4333
|
+
export declare type CcpOfferingRelationshipTemplateSelectorGroup = {
|
|
4334
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectorGroup';
|
|
4335
|
+
cardinality?: Maybe<CcpOfferingRelationshipTemplateSelectorGroupCardinality>;
|
|
4336
|
+
conditions?: Maybe<CcpOfferingRelationshipTemplateConditions>;
|
|
4337
|
+
group?: Maybe<Scalars['String']['output']>;
|
|
4338
|
+
ids?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
4339
|
+
};
|
|
4340
|
+
export declare type CcpOfferingRelationshipTemplateSelectorGroupCardinality = {
|
|
4341
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectorGroupCardinality';
|
|
4342
|
+
max?: Maybe<Scalars['Int']['output']>;
|
|
4343
|
+
};
|
|
4344
|
+
export declare type CcpOfferingRelationshipTemplateSelectors = {
|
|
4345
|
+
__typename?: 'CcpOfferingRelationshipTemplateSelectors';
|
|
4346
|
+
in?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplateSelectorGroup>>>;
|
|
4347
|
+
};
|
|
4348
|
+
export declare enum CcpOfferingRelationshipTemplateStatus {
|
|
4349
|
+
Active = "ACTIVE",
|
|
4350
|
+
Deprecated = "DEPRECATED",
|
|
4351
|
+
Draft = "DRAFT",
|
|
4352
|
+
None = "NONE"
|
|
4353
|
+
}
|
|
4354
|
+
export declare enum CcpOfferingRelationshipTemplateType {
|
|
4355
|
+
AddonDependence = "ADDON_DEPENDENCE",
|
|
4356
|
+
AppCompatibility = "APP_COMPATIBILITY",
|
|
4357
|
+
AppDependence = "APP_DEPENDENCE",
|
|
4358
|
+
Collection = "COLLECTION",
|
|
4359
|
+
CollectionTrial = "COLLECTION_TRIAL",
|
|
4360
|
+
Enterprise = "ENTERPRISE",
|
|
4361
|
+
EnterpriseSandboxGrant = "ENTERPRISE_SANDBOX_GRANT",
|
|
4362
|
+
FamilyContainer = "FAMILY_CONTAINER",
|
|
4363
|
+
MultiInstance = "MULTI_INSTANCE",
|
|
4364
|
+
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
4365
|
+
SandboxGrant = "SANDBOX_GRANT"
|
|
4366
|
+
}
|
|
4169
4367
|
export declare enum CcpOfferingStatus {
|
|
4170
4368
|
Active = "ACTIVE",
|
|
4171
4369
|
AtNotice = "AT_NOTICE",
|
|
@@ -4589,6 +4787,7 @@ export declare type CcpQueryApi = {
|
|
|
4589
4787
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4590
4788
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4591
4789
|
offering?: Maybe<CcpOffering>;
|
|
4790
|
+
offeringRelationshipTemplates?: Maybe<Array<Maybe<CcpOfferingRelationshipTemplate>>>;
|
|
4592
4791
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4593
4792
|
paymentMethods?: Maybe<Array<Maybe<CcpPaymentMethod>>>;
|
|
4594
4793
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
@@ -4612,6 +4811,9 @@ export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
|
4612
4811
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4613
4812
|
key: Scalars['ID']['input'];
|
|
4614
4813
|
};
|
|
4814
|
+
export declare type CcpQueryApiOfferingRelationshipTemplatesArgs = {
|
|
4815
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4816
|
+
};
|
|
4615
4817
|
export declare type CcpQueryApiOfferingsArgs = {
|
|
4616
4818
|
ids: Array<Scalars['ID']['input']>;
|
|
4617
4819
|
};
|
|
@@ -9855,7 +10057,6 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
9855
10057
|
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
9856
10058
|
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
9857
10059
|
levelConfig?: Maybe<CompassScorecardMaturityLevelConfig>;
|
|
9858
|
-
maturityLevelConfig?: Maybe<Array<CompassScorecardMaturityLevel>>;
|
|
9859
10060
|
};
|
|
9860
10061
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9861
10062
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
@@ -32650,6 +32851,7 @@ export declare type GraphStore = {
|
|
|
32650
32851
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
32651
32852
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
32652
32853
|
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
32854
|
+
cypherQueryV2Batch: GraphStoreCypherQueryV2BatchConnection;
|
|
32653
32855
|
deploymentAssociatedDeployment?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentConnection>;
|
|
32654
32856
|
deploymentAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedDeploymentInverseConnection>;
|
|
32655
32857
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
@@ -33985,6 +34187,11 @@ export declare type GraphStoreCypherQueryV2Args = {
|
|
|
33985
34187
|
query: Scalars['String']['input'];
|
|
33986
34188
|
version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
|
|
33987
34189
|
};
|
|
34190
|
+
export declare type GraphStoreCypherQueryV2BatchArgs = {
|
|
34191
|
+
params?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
34192
|
+
queries: Array<GraphStoreCypherQueryV2BatchQueryRequestInput>;
|
|
34193
|
+
version?: InputMaybe<GraphStoreCypherQueryV2BatchVersionEnum>;
|
|
34194
|
+
};
|
|
33988
34195
|
export declare type GraphStoreDeploymentAssociatedDeploymentArgs = {
|
|
33989
34196
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33990
34197
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39947,6 +40154,66 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
39947
40154
|
id: Scalars['ID']['output'];
|
|
39948
40155
|
};
|
|
39949
40156
|
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40157
|
+
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
40158
|
+
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
40159
|
+
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
40160
|
+
id: Scalars['ID']['output'];
|
|
40161
|
+
};
|
|
40162
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
40163
|
+
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
40164
|
+
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
40165
|
+
value: Scalars['Boolean']['output'];
|
|
40166
|
+
};
|
|
40167
|
+
export declare type GraphStoreCypherQueryV2BatchColumn = {
|
|
40168
|
+
__typename?: 'GraphStoreCypherQueryV2BatchColumn';
|
|
40169
|
+
key: Scalars['String']['output'];
|
|
40170
|
+
value?: Maybe<GraphStoreCypherQueryV2BatchResultRowItemValueUnion>;
|
|
40171
|
+
};
|
|
40172
|
+
export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
40173
|
+
__typename?: 'GraphStoreCypherQueryV2BatchConnection';
|
|
40174
|
+
results: Array<GraphStoreCypherQueryV2BatchQueryResult>;
|
|
40175
|
+
version: Scalars['String']['output'];
|
|
40176
|
+
};
|
|
40177
|
+
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
40178
|
+
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
40179
|
+
node: GraphStoreCypherQueryV2BatchNode;
|
|
40180
|
+
};
|
|
40181
|
+
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
40182
|
+
__typename?: 'GraphStoreCypherQueryV2BatchFloatObject';
|
|
40183
|
+
value: Scalars['Float']['output'];
|
|
40184
|
+
};
|
|
40185
|
+
export declare type GraphStoreCypherQueryV2BatchIntObject = {
|
|
40186
|
+
__typename?: 'GraphStoreCypherQueryV2BatchIntObject';
|
|
40187
|
+
value: Scalars['Int']['output'];
|
|
40188
|
+
};
|
|
40189
|
+
export declare type GraphStoreCypherQueryV2BatchNode = {
|
|
40190
|
+
__typename?: 'GraphStoreCypherQueryV2BatchNode';
|
|
40191
|
+
columns: Array<GraphStoreCypherQueryV2BatchColumn>;
|
|
40192
|
+
};
|
|
40193
|
+
export declare type GraphStoreCypherQueryV2BatchNodeList = {
|
|
40194
|
+
__typename?: 'GraphStoreCypherQueryV2BatchNodeList';
|
|
40195
|
+
nodes: Array<GraphStoreCypherQueryV2BatchAriNode>;
|
|
40196
|
+
};
|
|
40197
|
+
export declare type GraphStoreCypherQueryV2BatchQueryRequestInput = {
|
|
40198
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40199
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40200
|
+
query: Scalars['String']['input'];
|
|
40201
|
+
};
|
|
40202
|
+
export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
40203
|
+
__typename?: 'GraphStoreCypherQueryV2BatchQueryResult';
|
|
40204
|
+
edges: Array<GraphStoreCypherQueryV2BatchEdge>;
|
|
40205
|
+
pageInfo: PageInfo;
|
|
40206
|
+
version: Scalars['String']['output'];
|
|
40207
|
+
};
|
|
40208
|
+
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject;
|
|
40209
|
+
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
40210
|
+
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
40211
|
+
value: Scalars['String']['output'];
|
|
40212
|
+
};
|
|
40213
|
+
export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
40214
|
+
V2 = "V2",
|
|
40215
|
+
V3 = "V3"
|
|
40216
|
+
}
|
|
39950
40217
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
39951
40218
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
39952
40219
|
value: Scalars['Boolean']['output'];
|
|
@@ -57434,6 +57701,17 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
57434
57701
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
57435
57702
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
57436
57703
|
};
|
|
57704
|
+
export declare type JiraAlignAggJiraAlignProjectOwner = {
|
|
57705
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
57706
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
57707
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
57708
|
+
};
|
|
57709
|
+
export declare type JiraAlignAggJiraAlignProjectOwnerDto = JiraAlignAggJiraAlignProjectOwner & {
|
|
57710
|
+
__typename?: 'JiraAlignAggJiraAlignProjectOwnerDTO';
|
|
57711
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
57712
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
57713
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
57714
|
+
};
|
|
57437
57715
|
export declare type JiraAlignAggMercuryOriginalProjectStatusDto = MercuryOriginalProjectStatus & {
|
|
57438
57716
|
__typename?: 'JiraAlignAggMercuryOriginalProjectStatusDTO';
|
|
57439
57717
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -57445,6 +57723,7 @@ export declare type JiraAlignAggMercuryProjectStatusDto = MercuryProjectStatus &
|
|
|
57445
57723
|
};
|
|
57446
57724
|
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
57447
57725
|
__typename?: 'JiraAlignAggProject';
|
|
57726
|
+
externalOwner?: Maybe<JiraAlignAggJiraAlignProjectOwner>;
|
|
57448
57727
|
id: Scalars['ID']['output'];
|
|
57449
57728
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
57450
57729
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -85499,9 +85778,6 @@ export declare type MyVisitedSpacesItems = {
|
|
|
85499
85778
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
85500
85779
|
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
85501
85780
|
};
|
|
85502
|
-
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
85503
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85504
|
-
};
|
|
85505
85781
|
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
85506
85782
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85507
85783
|
};
|
|
@@ -92022,6 +92298,7 @@ export declare enum RadarFieldType {
|
|
|
92022
92298
|
Ari = "ARI",
|
|
92023
92299
|
Boolean = "BOOLEAN",
|
|
92024
92300
|
Datetime = "DATETIME",
|
|
92301
|
+
Keyword = "KEYWORD",
|
|
92025
92302
|
Number = "NUMBER",
|
|
92026
92303
|
Status = "STATUS",
|
|
92027
92304
|
String = "STRING",
|
|
@@ -96421,8 +96698,12 @@ export declare type ShepherdSuspiciousSearchTerm = {
|
|
|
96421
96698
|
};
|
|
96422
96699
|
export declare type ShepherdTeamworkGraphQueries = {
|
|
96423
96700
|
__typename?: 'ShepherdTeamworkGraphQueries';
|
|
96701
|
+
alerts?: Maybe<Array<Maybe<ShepherdAlert>>>;
|
|
96424
96702
|
workspaces?: Maybe<Array<Maybe<ShepherdWorkspace>>>;
|
|
96425
96703
|
};
|
|
96704
|
+
export declare type ShepherdTeamworkGraphQueriesAlertsArgs = {
|
|
96705
|
+
ids: Array<Scalars['ID']['input']>;
|
|
96706
|
+
};
|
|
96426
96707
|
export declare type ShepherdTeamworkGraphQueriesWorkspacesArgs = {
|
|
96427
96708
|
ids: Array<Scalars['ID']['input']>;
|
|
96428
96709
|
};
|
|
@@ -101385,6 +101666,10 @@ export declare type TrelloCardActionConnection = {
|
|
|
101385
101666
|
nodes?: Maybe<Array<TrelloCardActions>>;
|
|
101386
101667
|
pageInfo: PageInfo;
|
|
101387
101668
|
};
|
|
101669
|
+
export declare type TrelloCardActionConnectionUpdated = {
|
|
101670
|
+
__typename?: 'TrelloCardActionConnectionUpdated';
|
|
101671
|
+
edges?: Maybe<Array<TrelloCardActionEdgeUpdated>>;
|
|
101672
|
+
};
|
|
101388
101673
|
export declare type TrelloCardActionData = {
|
|
101389
101674
|
board?: Maybe<TrelloBoard>;
|
|
101390
101675
|
card?: Maybe<TrelloCard>;
|
|
@@ -101394,6 +101679,10 @@ export declare type TrelloCardActionEdge = {
|
|
|
101394
101679
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
101395
101680
|
node?: Maybe<TrelloCardActions>;
|
|
101396
101681
|
};
|
|
101682
|
+
export declare type TrelloCardActionEdgeUpdated = {
|
|
101683
|
+
__typename?: 'TrelloCardActionEdgeUpdated';
|
|
101684
|
+
node: TrelloCardActions;
|
|
101685
|
+
};
|
|
101397
101686
|
export declare enum TrelloCardActionType {
|
|
101398
101687
|
AddAttachment = "ADD_ATTACHMENT",
|
|
101399
101688
|
AddChecklist = "ADD_CHECKLIST",
|
|
@@ -101453,10 +101742,10 @@ export declare type TrelloCardBadges = {
|
|
|
101453
101742
|
};
|
|
101454
101743
|
export declare type TrelloCardBatch = {
|
|
101455
101744
|
__typename?: 'TrelloCardBatch';
|
|
101745
|
+
expected?: Maybe<Array<Scalars['ID']['output']>>;
|
|
101456
101746
|
objectId: Scalars['ID']['output'];
|
|
101457
|
-
processed?: Maybe<Scalars['
|
|
101747
|
+
processed?: Maybe<Array<Scalars['ID']['output']>>;
|
|
101458
101748
|
status?: Maybe<TrelloCardBatchStatus>;
|
|
101459
|
-
total?: Maybe<Scalars['Int']['output']>;
|
|
101460
101749
|
};
|
|
101461
101750
|
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
101462
101751
|
__typename?: 'TrelloCardBatchJobPayload';
|
|
@@ -101628,6 +101917,7 @@ export declare enum TrelloCardRole {
|
|
|
101628
101917
|
}
|
|
101629
101918
|
export declare type TrelloCardUpdated = {
|
|
101630
101919
|
__typename?: 'TrelloCardUpdated';
|
|
101920
|
+
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
101631
101921
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
101632
101922
|
badges?: Maybe<TrelloCardBadges>;
|
|
101633
101923
|
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
@@ -101676,6 +101966,7 @@ export declare type TrelloCardViewer = {
|
|
|
101676
101966
|
export declare type TrelloCheckItem = {
|
|
101677
101967
|
__typename?: 'TrelloCheckItem';
|
|
101678
101968
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
101969
|
+
id: Scalars['ID']['output'];
|
|
101679
101970
|
member?: Maybe<TrelloMember>;
|
|
101680
101971
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
101681
101972
|
objectId: Scalars['ID']['output'];
|