@forge/cli-shared 6.10.0-next.6 → 6.10.0-next.6-experimental-1f6d749
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 +18 -0
- package/out/graphql/graphql-types.d.ts +949 -307
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +111 -56
- package/package.json +2 -2
|
@@ -411,9 +411,9 @@ export declare type ActivitiesArguments = {
|
|
|
411
411
|
accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
412
412
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
413
413
|
containerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
414
|
-
earliestStart?: InputMaybe<Scalars['
|
|
414
|
+
earliestStart?: InputMaybe<Scalars['String']['input']>;
|
|
415
415
|
eventTypes?: InputMaybe<Array<ActivityEventType>>;
|
|
416
|
-
latestStart?: InputMaybe<Scalars['
|
|
416
|
+
latestStart?: InputMaybe<Scalars['String']['input']>;
|
|
417
417
|
objectTypes?: InputMaybe<Array<ActivitiesObjectType>>;
|
|
418
418
|
products?: InputMaybe<Array<ActivityProduct>>;
|
|
419
419
|
transitions?: InputMaybe<Array<ActivityTransition>>;
|
|
@@ -431,13 +431,13 @@ export declare type ActivitiesConnection = {
|
|
|
431
431
|
export declare type ActivitiesContainer = {
|
|
432
432
|
__typename?: 'ActivitiesContainer';
|
|
433
433
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
434
|
-
iconUrl?: Maybe<Scalars['
|
|
434
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
435
435
|
id: Scalars['ID']['output'];
|
|
436
436
|
localResourceId?: Maybe<Scalars['ID']['output']>;
|
|
437
437
|
name?: Maybe<Scalars['String']['output']>;
|
|
438
438
|
product?: Maybe<ActivityProduct>;
|
|
439
439
|
type?: Maybe<ActivitiesContainerType>;
|
|
440
|
-
url?: Maybe<Scalars['
|
|
440
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
441
441
|
};
|
|
442
442
|
export declare enum ActivitiesContainerType {
|
|
443
443
|
Project = "PROJECT",
|
|
@@ -448,7 +448,7 @@ export declare enum ActivitiesContainerType {
|
|
|
448
448
|
export declare type ActivitiesContributor = {
|
|
449
449
|
__typename?: 'ActivitiesContributor';
|
|
450
450
|
count?: Maybe<Scalars['Int']['output']>;
|
|
451
|
-
lastAccessedDate?: Maybe<Scalars['
|
|
451
|
+
lastAccessedDate?: Maybe<Scalars['String']['output']>;
|
|
452
452
|
profile?: Maybe<User>;
|
|
453
453
|
};
|
|
454
454
|
export declare type ActivitiesEvent = Node & {
|
|
@@ -456,7 +456,7 @@ export declare type ActivitiesEvent = Node & {
|
|
|
456
456
|
eventType?: Maybe<ActivityEventType>;
|
|
457
457
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
458
458
|
id: Scalars['ID']['output'];
|
|
459
|
-
timestamp?: Maybe<Scalars['
|
|
459
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
460
460
|
user?: Maybe<ActivitiesUser>;
|
|
461
461
|
};
|
|
462
462
|
export declare type ActivitiesEventExtension = ActivitiesCommentedEvent | ActivitiesTransitionedEvent;
|
|
@@ -472,7 +472,7 @@ export declare type ActivitiesItem = Node & {
|
|
|
472
472
|
__typename?: 'ActivitiesItem';
|
|
473
473
|
id: Scalars['ID']['output'];
|
|
474
474
|
object?: Maybe<ActivitiesObject>;
|
|
475
|
-
timestamp?: Maybe<Scalars['
|
|
475
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
476
476
|
};
|
|
477
477
|
export declare type ActivitiesJiraIssue = {
|
|
478
478
|
__typename?: 'ActivitiesJiraIssue';
|
|
@@ -486,14 +486,14 @@ export declare type ActivitiesObject = Node & {
|
|
|
486
486
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
487
487
|
events?: Maybe<Array<ActivitiesEvent>>;
|
|
488
488
|
extension?: Maybe<ActivitiesObjectExtension>;
|
|
489
|
-
iconUrl?: Maybe<Scalars['
|
|
489
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
490
490
|
id: Scalars['ID']['output'];
|
|
491
491
|
localResourceId?: Maybe<Scalars['ID']['output']>;
|
|
492
492
|
name?: Maybe<Scalars['String']['output']>;
|
|
493
493
|
parent?: Maybe<ActivitiesObjectParent>;
|
|
494
494
|
product?: Maybe<ActivityProduct>;
|
|
495
495
|
type?: Maybe<ActivityObjectType>;
|
|
496
|
-
url?: Maybe<Scalars['
|
|
496
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
497
497
|
};
|
|
498
498
|
export declare type ActivitiesObjectEventsArgs = {
|
|
499
499
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1673,6 +1673,10 @@ export declare type AppInstallationTask = {
|
|
|
1673
1673
|
id: Scalars['ID']['output'];
|
|
1674
1674
|
state: AppTaskState;
|
|
1675
1675
|
};
|
|
1676
|
+
export declare type AppInstallationTasksFilter = {
|
|
1677
|
+
appId: Scalars['ID']['input'];
|
|
1678
|
+
taskContext: Scalars['ID']['input'];
|
|
1679
|
+
};
|
|
1676
1680
|
export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
|
|
1677
1681
|
__typename?: 'AppInstallationUnsubscribeTask';
|
|
1678
1682
|
appEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2104,6 +2108,18 @@ export declare type AppSubscribePayload = Payload & {
|
|
|
2104
2108
|
success: Scalars['Boolean']['output'];
|
|
2105
2109
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
2106
2110
|
};
|
|
2111
|
+
export declare type AppTaskConnection = {
|
|
2112
|
+
__typename?: 'AppTaskConnection';
|
|
2113
|
+
edges?: Maybe<Array<Maybe<AppTaskEdge>>>;
|
|
2114
|
+
nodes?: Maybe<Array<Maybe<AppInstallationTask>>>;
|
|
2115
|
+
pageInfo?: Maybe<PageInfo>;
|
|
2116
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
2117
|
+
};
|
|
2118
|
+
export declare type AppTaskEdge = {
|
|
2119
|
+
__typename?: 'AppTaskEdge';
|
|
2120
|
+
cursor: Scalars['String']['output'];
|
|
2121
|
+
node?: Maybe<AppInstallationTask>;
|
|
2122
|
+
};
|
|
2107
2123
|
export declare enum AppTaskState {
|
|
2108
2124
|
Complete = "COMPLETE",
|
|
2109
2125
|
Failed = "FAILED",
|
|
@@ -4013,6 +4029,7 @@ export declare type CcpQueryApi = {
|
|
|
4013
4029
|
offering?: Maybe<CcpOffering>;
|
|
4014
4030
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4015
4031
|
product?: Maybe<CcpProduct>;
|
|
4032
|
+
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4016
4033
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4017
4034
|
};
|
|
4018
4035
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
@@ -4030,9 +4047,290 @@ export declare type CcpQueryApiPricingPlanArgs = {
|
|
|
4030
4047
|
export declare type CcpQueryApiProductArgs = {
|
|
4031
4048
|
id: Scalars['ID']['input'];
|
|
4032
4049
|
};
|
|
4050
|
+
export declare type CcpQueryApiQuotesArgs = {
|
|
4051
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4052
|
+
};
|
|
4033
4053
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4034
4054
|
id: Scalars['ID']['input'];
|
|
4035
4055
|
};
|
|
4056
|
+
export declare type CcpQuote = Node & {
|
|
4057
|
+
__typename?: 'CcpQuote';
|
|
4058
|
+
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
4059
|
+
cancelledReason?: Maybe<CcpQuoteCancelledReason>;
|
|
4060
|
+
clonedFrom?: Maybe<Scalars['String']['output']>;
|
|
4061
|
+
contractType?: Maybe<CcpQuoteContractType>;
|
|
4062
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4063
|
+
createdBy?: Maybe<CcpQuoteAuthorContext>;
|
|
4064
|
+
expiresAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
4065
|
+
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4066
|
+
externalNotes?: Maybe<Array<Maybe<CcpQuoteExternalNote>>>;
|
|
4067
|
+
finalizedAt?: Maybe<Scalars['Float']['output']>;
|
|
4068
|
+
fromQuote?: Maybe<Scalars['String']['output']>;
|
|
4069
|
+
id: Scalars['ID']['output'];
|
|
4070
|
+
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
4071
|
+
lineItems?: Maybe<Array<Maybe<CcpQuoteLineItem>>>;
|
|
4072
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
4073
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4074
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
4075
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4076
|
+
revision?: Maybe<Scalars['Int']['output']>;
|
|
4077
|
+
staleReason?: Maybe<CcpQuoteStaleReason>;
|
|
4078
|
+
status?: Maybe<CcpQuoteStatus>;
|
|
4079
|
+
transactionAccountId?: Maybe<Scalars['String']['output']>;
|
|
4080
|
+
upcomingBills?: Maybe<CcpQuoteUpcomingBills>;
|
|
4081
|
+
upcomingBillsComputedAt?: Maybe<Scalars['Float']['output']>;
|
|
4082
|
+
upcomingBillsRequestedAt?: Maybe<Scalars['Float']['output']>;
|
|
4083
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4084
|
+
updatedBy?: Maybe<CcpQuoteAuthorContext>;
|
|
4085
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
4086
|
+
};
|
|
4087
|
+
export declare type CcpQuoteAdjustment = {
|
|
4088
|
+
__typename?: 'CcpQuoteAdjustment';
|
|
4089
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
4090
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
4091
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4092
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
4093
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4094
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
4095
|
+
};
|
|
4096
|
+
export declare type CcpQuoteAuthorContext = {
|
|
4097
|
+
__typename?: 'CcpQuoteAuthorContext';
|
|
4098
|
+
isCustomerAdvocate?: Maybe<Scalars['Boolean']['output']>;
|
|
4099
|
+
isSystemDrivenAction?: Maybe<Scalars['Boolean']['output']>;
|
|
4100
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
4101
|
+
subjectType?: Maybe<Scalars['String']['output']>;
|
|
4102
|
+
};
|
|
4103
|
+
export declare type CcpQuoteAutoRefresh = {
|
|
4104
|
+
__typename?: 'CcpQuoteAutoRefresh';
|
|
4105
|
+
initiatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4106
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
4107
|
+
};
|
|
4108
|
+
export declare type CcpQuoteBillFrom = {
|
|
4109
|
+
__typename?: 'CcpQuoteBillFrom';
|
|
4110
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
4111
|
+
type?: Maybe<CcpQuoteStartDateType>;
|
|
4112
|
+
};
|
|
4113
|
+
export declare type CcpQuoteBillTo = {
|
|
4114
|
+
__typename?: 'CcpQuoteBillTo';
|
|
4115
|
+
duration?: Maybe<CcpQuoteDuration>;
|
|
4116
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
4117
|
+
type?: Maybe<CcpQuoteEndDateType>;
|
|
4118
|
+
};
|
|
4119
|
+
export declare type CcpQuoteBillingAnchor = {
|
|
4120
|
+
__typename?: 'CcpQuoteBillingAnchor';
|
|
4121
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
4122
|
+
type?: Maybe<CcpQuoteStartDateType>;
|
|
4123
|
+
};
|
|
4124
|
+
export declare type CcpQuoteBlendedMarginComputation = {
|
|
4125
|
+
__typename?: 'CcpQuoteBlendedMarginComputation';
|
|
4126
|
+
blendedMargin?: Maybe<Scalars['Float']['output']>;
|
|
4127
|
+
newGlp?: Maybe<Scalars['Float']['output']>;
|
|
4128
|
+
previousGlp?: Maybe<Scalars['Float']['output']>;
|
|
4129
|
+
renewPercentage?: Maybe<Scalars['Float']['output']>;
|
|
4130
|
+
renewalMargin?: Maybe<Scalars['Float']['output']>;
|
|
4131
|
+
renewalValue?: Maybe<Scalars['Float']['output']>;
|
|
4132
|
+
upsellMargin?: Maybe<Scalars['Float']['output']>;
|
|
4133
|
+
upsellPercentage?: Maybe<Scalars['Float']['output']>;
|
|
4134
|
+
upsellValue?: Maybe<Scalars['Float']['output']>;
|
|
4135
|
+
};
|
|
4136
|
+
export declare type CcpQuoteCancelledReason = {
|
|
4137
|
+
__typename?: 'CcpQuoteCancelledReason';
|
|
4138
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4139
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4140
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4141
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
4142
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
4143
|
+
};
|
|
4144
|
+
export declare type CcpQuoteChargeQuantity = {
|
|
4145
|
+
__typename?: 'CcpQuoteChargeQuantity';
|
|
4146
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
4147
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
4148
|
+
};
|
|
4149
|
+
export declare enum CcpQuoteContractType {
|
|
4150
|
+
NonStandard = "NON_STANDARD",
|
|
4151
|
+
Standard = "STANDARD"
|
|
4152
|
+
}
|
|
4153
|
+
export declare type CcpQuoteDuration = {
|
|
4154
|
+
__typename?: 'CcpQuoteDuration';
|
|
4155
|
+
interval?: Maybe<CcpQuoteInterval>;
|
|
4156
|
+
intervalCount?: Maybe<Scalars['Int']['output']>;
|
|
4157
|
+
};
|
|
4158
|
+
export declare enum CcpQuoteEndDateType {
|
|
4159
|
+
Duration = "DURATION",
|
|
4160
|
+
Timestamp = "TIMESTAMP"
|
|
4161
|
+
}
|
|
4162
|
+
export declare type CcpQuoteExternalNote = {
|
|
4163
|
+
__typename?: 'CcpQuoteExternalNote';
|
|
4164
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4165
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
4166
|
+
};
|
|
4167
|
+
export declare enum CcpQuoteInterval {
|
|
4168
|
+
Year = "YEAR"
|
|
4169
|
+
}
|
|
4170
|
+
export declare type CcpQuoteLineItem = {
|
|
4171
|
+
__typename?: 'CcpQuoteLineItem';
|
|
4172
|
+
billingAnchor?: Maybe<CcpQuoteBillingAnchor>;
|
|
4173
|
+
cancelledReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4174
|
+
chargeQuantities?: Maybe<Array<Maybe<CcpQuoteChargeQuantity>>>;
|
|
4175
|
+
endsAt?: Maybe<CcpQuoteLineItemEndsAt>;
|
|
4176
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
4177
|
+
entitlementVersion?: Maybe<Scalars['String']['output']>;
|
|
4178
|
+
lineItemId?: Maybe<Scalars['String']['output']>;
|
|
4179
|
+
lineItemType?: Maybe<CcpQuoteLineItemType>;
|
|
4180
|
+
lockContext?: Maybe<CcpQuoteLockContext>;
|
|
4181
|
+
offeringKey?: Maybe<Scalars['String']['output']>;
|
|
4182
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
4183
|
+
preBillingConfiguration?: Maybe<CcpQuotePreBillingConfiguration>;
|
|
4184
|
+
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
4185
|
+
promotions?: Maybe<Array<Maybe<CcpQuotePromotion>>>;
|
|
4186
|
+
prorationBehaviour?: Maybe<CcpQuoteProrationBehaviour>;
|
|
4187
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CcpQuoteRelatesFromEntitlement>>>;
|
|
4188
|
+
skipTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
4189
|
+
staleReason?: Maybe<CcpQuoteLineItemStaleOrCancelledReason>;
|
|
4190
|
+
startsAt?: Maybe<CcpQuoteStartsAt>;
|
|
4191
|
+
status?: Maybe<CcpQuoteLineItemStatus>;
|
|
4192
|
+
subscriptionId?: Maybe<Scalars['String']['output']>;
|
|
4193
|
+
};
|
|
4194
|
+
export declare type CcpQuoteLineItemEndsAt = {
|
|
4195
|
+
__typename?: 'CcpQuoteLineItemEndsAt';
|
|
4196
|
+
duration?: Maybe<CcpQuoteDuration>;
|
|
4197
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
4198
|
+
type?: Maybe<CcpQuoteEndDateType>;
|
|
4199
|
+
};
|
|
4200
|
+
export declare type CcpQuoteLineItemStaleOrCancelledReason = {
|
|
4201
|
+
__typename?: 'CcpQuoteLineItemStaleOrCancelledReason';
|
|
4202
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4203
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4204
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4205
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
4206
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
4207
|
+
};
|
|
4208
|
+
export declare enum CcpQuoteLineItemStatus {
|
|
4209
|
+
Cancelled = "CANCELLED",
|
|
4210
|
+
Stale = "STALE"
|
|
4211
|
+
}
|
|
4212
|
+
export declare enum CcpQuoteLineItemType {
|
|
4213
|
+
AccountModification = "ACCOUNT_MODIFICATION",
|
|
4214
|
+
AmendEntitlement = "AMEND_ENTITLEMENT",
|
|
4215
|
+
CancelEntitlement = "CANCEL_ENTITLEMENT",
|
|
4216
|
+
CreateEntitlement = "CREATE_ENTITLEMENT",
|
|
4217
|
+
ReactivateEntitlement = "REACTIVATE_ENTITLEMENT"
|
|
4218
|
+
}
|
|
4219
|
+
export declare type CcpQuoteLockContext = {
|
|
4220
|
+
__typename?: 'CcpQuoteLockContext';
|
|
4221
|
+
isPriceLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
4222
|
+
};
|
|
4223
|
+
export declare type CcpQuoteMargin = {
|
|
4224
|
+
__typename?: 'CcpQuoteMargin';
|
|
4225
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
4226
|
+
blendedComputation?: Maybe<CcpQuoteBlendedMarginComputation>;
|
|
4227
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
4228
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4229
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
4230
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
4231
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
4232
|
+
};
|
|
4233
|
+
export declare type CcpQuotePeriod = {
|
|
4234
|
+
__typename?: 'CcpQuotePeriod';
|
|
4235
|
+
endsAt?: Maybe<Scalars['Float']['output']>;
|
|
4236
|
+
startsAt?: Maybe<Scalars['Float']['output']>;
|
|
4237
|
+
};
|
|
4238
|
+
export declare type CcpQuotePreBillingConfiguration = {
|
|
4239
|
+
__typename?: 'CcpQuotePreBillingConfiguration';
|
|
4240
|
+
billFrom?: Maybe<CcpQuoteBillFrom>;
|
|
4241
|
+
billTo?: Maybe<CcpQuoteBillTo>;
|
|
4242
|
+
};
|
|
4243
|
+
export declare type CcpQuotePromotion = {
|
|
4244
|
+
__typename?: 'CcpQuotePromotion';
|
|
4245
|
+
promotionDefinition?: Maybe<CcpQuotePromotionDefinition>;
|
|
4246
|
+
promotionInstanceId?: Maybe<Scalars['String']['output']>;
|
|
4247
|
+
};
|
|
4248
|
+
export declare type CcpQuotePromotionDefinition = {
|
|
4249
|
+
__typename?: 'CcpQuotePromotionDefinition';
|
|
4250
|
+
promotionCode?: Maybe<Scalars['String']['output']>;
|
|
4251
|
+
promotionId?: Maybe<Scalars['String']['output']>;
|
|
4252
|
+
};
|
|
4253
|
+
export declare enum CcpQuoteProrationBehaviour {
|
|
4254
|
+
CreateProrations = "CREATE_PRORATIONS",
|
|
4255
|
+
None = "NONE"
|
|
4256
|
+
}
|
|
4257
|
+
export declare enum CcpQuoteReferenceType {
|
|
4258
|
+
Entitlement = "ENTITLEMENT",
|
|
4259
|
+
LineItem = "LINE_ITEM"
|
|
4260
|
+
}
|
|
4261
|
+
export declare type CcpQuoteRelatesFromEntitlement = {
|
|
4262
|
+
__typename?: 'CcpQuoteRelatesFromEntitlement';
|
|
4263
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
4264
|
+
lineItemId?: Maybe<Scalars['String']['output']>;
|
|
4265
|
+
referenceType?: Maybe<CcpQuoteReferenceType>;
|
|
4266
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
4267
|
+
};
|
|
4268
|
+
export declare type CcpQuoteStaleReason = {
|
|
4269
|
+
__typename?: 'CcpQuoteStaleReason';
|
|
4270
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4271
|
+
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
4272
|
+
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4273
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4274
|
+
orderId?: Maybe<Scalars['String']['output']>;
|
|
4275
|
+
orderItemId?: Maybe<Scalars['String']['output']>;
|
|
4276
|
+
};
|
|
4277
|
+
export declare enum CcpQuoteStartDateType {
|
|
4278
|
+
QuoteAcceptanceDate = "QUOTE_ACCEPTANCE_DATE",
|
|
4279
|
+
Timestamp = "TIMESTAMP",
|
|
4280
|
+
UpcomingInvoice = "UPCOMING_INVOICE"
|
|
4281
|
+
}
|
|
4282
|
+
export declare type CcpQuoteStartsAt = {
|
|
4283
|
+
__typename?: 'CcpQuoteStartsAt';
|
|
4284
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
4285
|
+
type?: Maybe<CcpQuoteStartDateType>;
|
|
4286
|
+
};
|
|
4287
|
+
export declare enum CcpQuoteStatus {
|
|
4288
|
+
AcceptanceInProgress = "ACCEPTANCE_IN_PROGRESS",
|
|
4289
|
+
Accepted = "ACCEPTED",
|
|
4290
|
+
CancellationInProgress = "CANCELLATION_IN_PROGRESS",
|
|
4291
|
+
Cancelled = "CANCELLED",
|
|
4292
|
+
CloningInProgress = "CLONING_IN_PROGRESS",
|
|
4293
|
+
CreationInProgress = "CREATION_IN_PROGRESS",
|
|
4294
|
+
Draft = "DRAFT",
|
|
4295
|
+
FinalizationInProgress = "FINALIZATION_IN_PROGRESS",
|
|
4296
|
+
Open = "OPEN",
|
|
4297
|
+
RevisionInProgress = "REVISION_IN_PROGRESS",
|
|
4298
|
+
Stale = "STALE",
|
|
4299
|
+
UpdateInProgress = "UPDATE_IN_PROGRESS",
|
|
4300
|
+
ValidationInProgress = "VALIDATION_IN_PROGRESS"
|
|
4301
|
+
}
|
|
4302
|
+
export declare type CcpQuoteTaxItem = {
|
|
4303
|
+
__typename?: 'CcpQuoteTaxItem';
|
|
4304
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
4305
|
+
taxAmountLabel?: Maybe<Scalars['String']['output']>;
|
|
4306
|
+
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
4307
|
+
};
|
|
4308
|
+
export declare type CcpQuoteUpcomingBills = {
|
|
4309
|
+
__typename?: 'CcpQuoteUpcomingBills';
|
|
4310
|
+
lines?: Maybe<Array<Maybe<CcpQuoteUpcomingBillsLine>>>;
|
|
4311
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
4312
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
4313
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
4314
|
+
};
|
|
4315
|
+
export declare type CcpQuoteUpcomingBillsLine = {
|
|
4316
|
+
__typename?: 'CcpQuoteUpcomingBillsLine';
|
|
4317
|
+
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
4318
|
+
adjustments?: Maybe<Array<Maybe<CcpQuoteAdjustment>>>;
|
|
4319
|
+
currency?: Maybe<CcpCurrency>;
|
|
4320
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4321
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
4322
|
+
margins?: Maybe<Array<Maybe<CcpQuoteMargin>>>;
|
|
4323
|
+
offeringId?: Maybe<Scalars['String']['output']>;
|
|
4324
|
+
period?: Maybe<CcpQuotePeriod>;
|
|
4325
|
+
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
4326
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
4327
|
+
quoteLineId?: Maybe<Scalars['String']['output']>;
|
|
4328
|
+
subTotal?: Maybe<Scalars['Float']['output']>;
|
|
4329
|
+
tax?: Maybe<Scalars['Float']['output']>;
|
|
4330
|
+
taxItems?: Maybe<Array<Maybe<CcpQuoteTaxItem>>>;
|
|
4331
|
+
taxPercent?: Maybe<Scalars['Float']['output']>;
|
|
4332
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
4333
|
+
};
|
|
4036
4334
|
export declare type CcpRelationshipCardinality = {
|
|
4037
4335
|
__typename?: 'CcpRelationshipCardinality';
|
|
4038
4336
|
max?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4172,6 +4470,94 @@ export declare type ChangeOwnerWarning = {
|
|
|
4172
4470
|
contentId?: Maybe<Scalars['Long']['output']>;
|
|
4173
4471
|
message?: Maybe<Scalars['String']['output']>;
|
|
4174
4472
|
};
|
|
4473
|
+
export declare type ChannelPlatformAttendee = {
|
|
4474
|
+
__typename?: 'ChannelPlatformAttendee';
|
|
4475
|
+
attendeeId?: Maybe<Scalars['String']['output']>;
|
|
4476
|
+
joinToken?: Maybe<Scalars['String']['output']>;
|
|
4477
|
+
};
|
|
4478
|
+
export declare type ChannelPlatformAudioFeatures = {
|
|
4479
|
+
__typename?: 'ChannelPlatformAudioFeatures';
|
|
4480
|
+
echoReduction?: Maybe<Scalars['String']['output']>;
|
|
4481
|
+
};
|
|
4482
|
+
export declare type ChannelPlatformChannelAvailabilityRequestInput = {
|
|
4483
|
+
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
4484
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
4485
|
+
cloudUrl?: InputMaybe<Scalars['String']['input']>;
|
|
4486
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
4487
|
+
customerTimezone?: InputMaybe<Scalars['String']['input']>;
|
|
4488
|
+
emailExclusions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
4489
|
+
entitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
4490
|
+
hipaaEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4491
|
+
impactLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
4492
|
+
isCESFlagEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4493
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
4494
|
+
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
4495
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
4496
|
+
skillSegment?: InputMaybe<Scalars['String']['input']>;
|
|
4497
|
+
supportChannel?: InputMaybe<Scalars['String']['input']>;
|
|
4498
|
+
supportLevel?: InputMaybe<Scalars['String']['input']>;
|
|
4499
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
4500
|
+
unitCount?: InputMaybe<Scalars['Int']['input']>;
|
|
4501
|
+
userEmailDomain?: InputMaybe<Scalars['String']['input']>;
|
|
4502
|
+
};
|
|
4503
|
+
export declare type ChannelPlatformChannelAvailabilityResponse = {
|
|
4504
|
+
__typename?: 'ChannelPlatformChannelAvailabilityResponse';
|
|
4505
|
+
isChatAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
4506
|
+
isTicketAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
4507
|
+
};
|
|
4508
|
+
export declare enum ChannelPlatformChannelType {
|
|
4509
|
+
Chat = "CHAT",
|
|
4510
|
+
Voice = "VOICE"
|
|
4511
|
+
}
|
|
4512
|
+
export declare type ChannelPlatformConnectQueue = {
|
|
4513
|
+
__typename?: 'ChannelPlatformConnectQueue';
|
|
4514
|
+
arn?: Maybe<Scalars['String']['output']>;
|
|
4515
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4516
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
4517
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4518
|
+
queueType?: Maybe<Scalars['String']['output']>;
|
|
4519
|
+
};
|
|
4520
|
+
export declare type ChannelPlatformConnectionData = {
|
|
4521
|
+
__typename?: 'ChannelPlatformConnectionData';
|
|
4522
|
+
attendee?: Maybe<ChannelPlatformAttendee>;
|
|
4523
|
+
meeting?: Maybe<ChannelPlatformMeeting>;
|
|
4524
|
+
};
|
|
4525
|
+
export declare type ChannelPlatformGetChannelTokenRequest = {
|
|
4526
|
+
channelType?: InputMaybe<ChannelPlatformChannelType>;
|
|
4527
|
+
contactFlowId?: InputMaybe<Scalars['String']['input']>;
|
|
4528
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
4529
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
4530
|
+
};
|
|
4531
|
+
export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
4532
|
+
__typename?: 'ChannelPlatformGetChannelTokenResponse';
|
|
4533
|
+
connectionData?: Maybe<ChannelPlatformConnectionData>;
|
|
4534
|
+
contactId?: Maybe<Scalars['String']['output']>;
|
|
4535
|
+
participantId?: Maybe<Scalars['String']['output']>;
|
|
4536
|
+
participantToken?: Maybe<Scalars['String']['output']>;
|
|
4537
|
+
};
|
|
4538
|
+
export declare type ChannelPlatformMediaPlacement = {
|
|
4539
|
+
__typename?: 'ChannelPlatformMediaPlacement';
|
|
4540
|
+
audioFallbackUrl?: Maybe<Scalars['String']['output']>;
|
|
4541
|
+
audioHostUrl?: Maybe<Scalars['String']['output']>;
|
|
4542
|
+
eventIngestionUrl?: Maybe<Scalars['String']['output']>;
|
|
4543
|
+
signalingUrl?: Maybe<Scalars['String']['output']>;
|
|
4544
|
+
turnControlUrl?: Maybe<Scalars['String']['output']>;
|
|
4545
|
+
};
|
|
4546
|
+
export declare type ChannelPlatformMeeting = {
|
|
4547
|
+
__typename?: 'ChannelPlatformMeeting';
|
|
4548
|
+
mediaPlacement?: Maybe<ChannelPlatformMediaPlacement>;
|
|
4549
|
+
mediaRegion?: Maybe<Scalars['String']['output']>;
|
|
4550
|
+
meetingFeatures?: Maybe<ChannelPlatformMeetingFeatures>;
|
|
4551
|
+
meetingId?: Maybe<Scalars['String']['output']>;
|
|
4552
|
+
};
|
|
4553
|
+
export declare type ChannelPlatformMeetingFeatures = {
|
|
4554
|
+
__typename?: 'ChannelPlatformMeetingFeatures';
|
|
4555
|
+
audio?: Maybe<ChannelPlatformAudioFeatures>;
|
|
4556
|
+
};
|
|
4557
|
+
export declare enum ChannelPlatformMutationStatus {
|
|
4558
|
+
Failure = "FAILURE",
|
|
4559
|
+
Success = "SUCCESS"
|
|
4560
|
+
}
|
|
4175
4561
|
export declare type ChannelPlatformSampleQueue = {
|
|
4176
4562
|
__typename?: 'ChannelPlatformSampleQueue';
|
|
4177
4563
|
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
@@ -8049,6 +8435,7 @@ export declare type CompassScorecard = Node & {
|
|
|
8049
8435
|
state?: Maybe<Scalars['String']['output']>;
|
|
8050
8436
|
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
8051
8437
|
type: Scalars['String']['output'];
|
|
8438
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
8052
8439
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
8053
8440
|
};
|
|
8054
8441
|
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
@@ -8785,6 +9172,7 @@ export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
|
8785
9172
|
};
|
|
8786
9173
|
export declare type CompassSynchronizeLinkAssociationsOptions = {
|
|
8787
9174
|
eventTypes?: InputMaybe<Array<InputMaybe<CompassEventType>>>;
|
|
9175
|
+
urlFilterRegex?: InputMaybe<Scalars['String']['input']>;
|
|
8788
9176
|
};
|
|
8789
9177
|
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
8790
9178
|
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
@@ -10078,10 +10466,6 @@ export declare enum ConfluenceEdition {
|
|
|
10078
10466
|
Premium = "PREMIUM",
|
|
10079
10467
|
Standard = "STANDARD"
|
|
10080
10468
|
}
|
|
10081
|
-
export declare type ConfluenceEditions = {
|
|
10082
|
-
__typename?: 'ConfluenceEditions';
|
|
10083
|
-
edition: ConfluenceEdition;
|
|
10084
|
-
};
|
|
10085
10469
|
export declare type ConfluenceEditorSettings = {
|
|
10086
10470
|
__typename?: 'ConfluenceEditorSettings';
|
|
10087
10471
|
toolbarDockingInitialPosition?: Maybe<Scalars['String']['output']>;
|
|
@@ -21501,6 +21885,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
21501
21885
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
21502
21886
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
21503
21887
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
21888
|
+
requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
|
|
21504
21889
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
21505
21890
|
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
21506
21891
|
};
|
|
@@ -21534,6 +21919,9 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21534
21919
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
21535
21920
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21536
21921
|
};
|
|
21922
|
+
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21923
|
+
issueKey: Scalars['String']['input'];
|
|
21924
|
+
};
|
|
21537
21925
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
21538
21926
|
helpCenterId: Scalars['ID']['input'];
|
|
21539
21927
|
templateFormId: Scalars['ID']['input'];
|
|
@@ -21543,6 +21931,58 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
21543
21931
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21544
21932
|
helpCenterId: Scalars['ID']['input'];
|
|
21545
21933
|
};
|
|
21934
|
+
export declare type CustomerServiceRequest = {
|
|
21935
|
+
__typename?: 'CustomerServiceRequest';
|
|
21936
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
21937
|
+
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
21938
|
+
id: Scalars['ID']['output'];
|
|
21939
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
21940
|
+
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21941
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
21942
|
+
};
|
|
21943
|
+
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21944
|
+
export declare type CustomerServiceRequestConnection = {
|
|
21945
|
+
__typename?: 'CustomerServiceRequestConnection';
|
|
21946
|
+
edges: Array<CustomerServiceRequestEdge>;
|
|
21947
|
+
pageInfo: PageInfo;
|
|
21948
|
+
};
|
|
21949
|
+
export declare type CustomerServiceRequestEdge = {
|
|
21950
|
+
__typename?: 'CustomerServiceRequestEdge';
|
|
21951
|
+
cursor: Scalars['String']['output'];
|
|
21952
|
+
node?: Maybe<CustomerServiceRequest>;
|
|
21953
|
+
};
|
|
21954
|
+
export declare type CustomerServiceRequestFormDataConnection = {
|
|
21955
|
+
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
21956
|
+
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
21957
|
+
pageInfo: PageInfo;
|
|
21958
|
+
};
|
|
21959
|
+
export declare type CustomerServiceRequestFormDataEdge = {
|
|
21960
|
+
__typename?: 'CustomerServiceRequestFormDataEdge';
|
|
21961
|
+
cursor: Scalars['String']['output'];
|
|
21962
|
+
node?: Maybe<CustomerServiceRequestFormEntryField>;
|
|
21963
|
+
};
|
|
21964
|
+
export declare type CustomerServiceRequestFormEntryField = {
|
|
21965
|
+
id: Scalars['ID']['output'];
|
|
21966
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21967
|
+
};
|
|
21968
|
+
export declare type CustomerServiceRequestFormEntryMultiSelectField = CustomerServiceRequestFormEntryField & {
|
|
21969
|
+
__typename?: 'CustomerServiceRequestFormEntryMultiSelectField';
|
|
21970
|
+
id: Scalars['ID']['output'];
|
|
21971
|
+
multiSelectTextAnswer?: Maybe<Array<Scalars['String']['output']>>;
|
|
21972
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21973
|
+
};
|
|
21974
|
+
export declare type CustomerServiceRequestFormEntryRichTextField = CustomerServiceRequestFormEntryField & {
|
|
21975
|
+
__typename?: 'CustomerServiceRequestFormEntryRichTextField';
|
|
21976
|
+
adfAnswer?: Maybe<Scalars['String']['output']>;
|
|
21977
|
+
id: Scalars['ID']['output'];
|
|
21978
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21979
|
+
};
|
|
21980
|
+
export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRequestFormEntryField & {
|
|
21981
|
+
__typename?: 'CustomerServiceRequestFormEntryTextField';
|
|
21982
|
+
id: Scalars['ID']['output'];
|
|
21983
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
21984
|
+
textAnswer?: Maybe<Scalars['String']['output']>;
|
|
21985
|
+
};
|
|
21546
21986
|
export declare type CustomerServiceRoutingRule = {
|
|
21547
21987
|
__typename?: 'CustomerServiceRoutingRule';
|
|
21548
21988
|
id: Scalars['ID']['output'];
|
|
@@ -21552,6 +21992,10 @@ export declare type CustomerServiceRoutingRule = {
|
|
|
21552
21992
|
project?: Maybe<JiraProject>;
|
|
21553
21993
|
projectId?: Maybe<Scalars['ID']['output']>;
|
|
21554
21994
|
};
|
|
21995
|
+
export declare enum CustomerServiceStatusKey {
|
|
21996
|
+
Resolved = "RESOLVED",
|
|
21997
|
+
Submitted = "SUBMITTED"
|
|
21998
|
+
}
|
|
21555
21999
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
21556
22000
|
__typename?: 'CustomerServiceStatusPayload';
|
|
21557
22001
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -22577,6 +23021,11 @@ export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
|
22577
23021
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
22578
23022
|
success: Scalars['Boolean']['output'];
|
|
22579
23023
|
};
|
|
23024
|
+
export declare type DevAiInvokeSelfCorrectionPayload = Payload & {
|
|
23025
|
+
__typename?: 'DevAiInvokeSelfCorrectionPayload';
|
|
23026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23027
|
+
success: Scalars['Boolean']['output'];
|
|
23028
|
+
};
|
|
22580
23029
|
export declare enum DevAiIssueScopingLabel {
|
|
22581
23030
|
Complex = "COMPLEX",
|
|
22582
23031
|
InScope = "IN_SCOPE",
|
|
@@ -22667,6 +23116,7 @@ export declare type DevAiRovoAgentActionConfig = {
|
|
|
22667
23116
|
export declare type DevAiRovoAgentConnection = {
|
|
22668
23117
|
__typename?: 'DevAiRovoAgentConnection';
|
|
22669
23118
|
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
23119
|
+
isRankingLimitApplied?: Maybe<Scalars['Boolean']['output']>;
|
|
22670
23120
|
pageInfo: PageInfo;
|
|
22671
23121
|
};
|
|
22672
23122
|
export declare type DevAiRovoAgentEdge = {
|
|
@@ -24845,6 +25295,7 @@ export declare type EcosystemQuery = {
|
|
|
24845
25295
|
__typename?: 'EcosystemQuery';
|
|
24846
25296
|
appByOauthClient?: Maybe<App>;
|
|
24847
25297
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
25298
|
+
appInstallationTasks?: Maybe<AppTaskConnection>;
|
|
24848
25299
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
24849
25300
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
24850
25301
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
@@ -24870,6 +25321,13 @@ export declare type EcosystemQueryAppByOauthClientArgs = {
|
|
|
24870
25321
|
export declare type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
24871
25322
|
oauthClientIds: Array<Scalars['ID']['input']>;
|
|
24872
25323
|
};
|
|
25324
|
+
export declare type EcosystemQueryAppInstallationTasksArgs = {
|
|
25325
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25326
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
25327
|
+
filter: AppInstallationTasksFilter;
|
|
25328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25329
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
25330
|
+
};
|
|
24873
25331
|
export declare type EcosystemQueryAppInstallationsByAppArgs = {
|
|
24874
25332
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24875
25333
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25574,6 +26032,7 @@ export declare type ExternalComment = Node & {
|
|
|
25574
26032
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25575
26033
|
provider?: Maybe<ExternalProvider>;
|
|
25576
26034
|
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
26035
|
+
reactionsV2?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
25577
26036
|
text?: Maybe<Scalars['String']['output']>;
|
|
25578
26037
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25579
26038
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -25821,6 +26280,7 @@ export declare type ExternalDocument = Node & {
|
|
|
25821
26280
|
parent?: Maybe<ExternalEntity>;
|
|
25822
26281
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25823
26282
|
provider?: Maybe<ExternalProvider>;
|
|
26283
|
+
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
25824
26284
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25825
26285
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
25826
26286
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26113,6 +26573,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
26113
26573
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
26114
26574
|
container?: Maybe<ExternalEntity>;
|
|
26115
26575
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
26576
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
26116
26577
|
createdBy?: Maybe<ExternalUser>;
|
|
26117
26578
|
description?: Maybe<Scalars['String']['output']>;
|
|
26118
26579
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
@@ -26141,6 +26602,11 @@ export declare enum ExternalPullRequestStatus {
|
|
|
26141
26602
|
Open = "OPEN",
|
|
26142
26603
|
Unknown = "UNKNOWN"
|
|
26143
26604
|
}
|
|
26605
|
+
export declare type ExternalReaction = {
|
|
26606
|
+
__typename?: 'ExternalReaction';
|
|
26607
|
+
reactionType?: Maybe<Scalars['String']['output']>;
|
|
26608
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
26609
|
+
};
|
|
26144
26610
|
export declare type ExternalReactions = {
|
|
26145
26611
|
__typename?: 'ExternalReactions';
|
|
26146
26612
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -31766,6 +32232,8 @@ export declare type GraphStore = {
|
|
|
31766
32232
|
linkedProjectHasVersionInverse?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseConnection>;
|
|
31767
32233
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
31768
32234
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
32235
|
+
loomVideoHasConfluencePage?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageConnection>;
|
|
32236
|
+
loomVideoHasConfluencePageInverse?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection>;
|
|
31769
32237
|
mediaAttachedToContent?: Maybe<GraphStoreSimplifiedMediaAttachedToContentConnection>;
|
|
31770
32238
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
31771
32239
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
@@ -31935,10 +32403,6 @@ export declare type GraphStore = {
|
|
|
31935
32403
|
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
31936
32404
|
spaceHasPage?: Maybe<GraphStoreSimplifiedSpaceHasPageConnection>;
|
|
31937
32405
|
spaceHasPageInverse?: Maybe<GraphStoreSimplifiedSpaceHasPageInverseConnection>;
|
|
31938
|
-
sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
|
|
31939
|
-
sprintAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseConnection>;
|
|
31940
|
-
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
31941
|
-
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
31942
32406
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
31943
32407
|
sprintAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentInverseConnection>;
|
|
31944
32408
|
sprintAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedDeploymentConnection>;
|
|
@@ -34029,6 +34493,20 @@ export declare type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
|
34029
34493
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34030
34494
|
id: Scalars['ID']['input'];
|
|
34031
34495
|
};
|
|
34496
|
+
export declare type GraphStoreLoomVideoHasConfluencePageArgs = {
|
|
34497
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34498
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34499
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34500
|
+
id: Scalars['ID']['input'];
|
|
34501
|
+
sort?: InputMaybe<GraphStoreLoomVideoHasConfluencePageSortInput>;
|
|
34502
|
+
};
|
|
34503
|
+
export declare type GraphStoreLoomVideoHasConfluencePageInverseArgs = {
|
|
34504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34507
|
+
id: Scalars['ID']['input'];
|
|
34508
|
+
sort?: InputMaybe<GraphStoreLoomVideoHasConfluencePageSortInput>;
|
|
34509
|
+
};
|
|
34032
34510
|
export declare type GraphStoreMediaAttachedToContentArgs = {
|
|
34033
34511
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34034
34512
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35150,36 +35628,6 @@ export declare type GraphStoreSpaceHasPageInverseArgs = {
|
|
|
35150
35628
|
id: Scalars['ID']['input'];
|
|
35151
35629
|
sort?: InputMaybe<GraphStoreSpaceHasPageSortInput>;
|
|
35152
35630
|
};
|
|
35153
|
-
export declare type GraphStoreSprintAssociatedBuildArgs = {
|
|
35154
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
35155
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35156
|
-
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
35157
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35158
|
-
id: Scalars['ID']['input'];
|
|
35159
|
-
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
35160
|
-
};
|
|
35161
|
-
export declare type GraphStoreSprintAssociatedBuildInverseArgs = {
|
|
35162
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
35163
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35164
|
-
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
35165
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35166
|
-
id: Scalars['ID']['input'];
|
|
35167
|
-
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
35168
|
-
};
|
|
35169
|
-
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
35170
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
35171
|
-
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
35172
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35173
|
-
id: Scalars['ID']['input'];
|
|
35174
|
-
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
35175
|
-
};
|
|
35176
|
-
export declare type GraphStoreSprintAssociatedBuildRelationshipArgs = {
|
|
35177
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
35178
|
-
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
35179
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35180
|
-
id: Scalars['ID']['input'];
|
|
35181
|
-
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
35182
|
-
};
|
|
35183
35631
|
export declare type GraphStoreSprintAssociatedDeploymentArgs = {
|
|
35184
35632
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35185
35633
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38250,6 +38698,20 @@ export declare type GraphStoreCreateJswProjectAssociatedComponentRelationshipInp
|
|
|
38250
38698
|
to: Scalars['ID']['input'];
|
|
38251
38699
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38252
38700
|
};
|
|
38701
|
+
export declare type GraphStoreCreateLoomVideoHasConfluencePageInput = {
|
|
38702
|
+
relationships: Array<GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput>;
|
|
38703
|
+
};
|
|
38704
|
+
export declare type GraphStoreCreateLoomVideoHasConfluencePagePayload = Payload & {
|
|
38705
|
+
__typename?: 'GraphStoreCreateLoomVideoHasConfluencePagePayload';
|
|
38706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38707
|
+
success: Scalars['Boolean']['output'];
|
|
38708
|
+
};
|
|
38709
|
+
export declare type GraphStoreCreateLoomVideoHasConfluencePageRelationshipInput = {
|
|
38710
|
+
from: Scalars['ID']['input'];
|
|
38711
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
38712
|
+
to: Scalars['ID']['input'];
|
|
38713
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38714
|
+
};
|
|
38253
38715
|
export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
38254
38716
|
relationships: Array<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
38255
38717
|
};
|
|
@@ -38564,7 +39026,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38564
39026
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38565
39027
|
id: Scalars['ID']['output'];
|
|
38566
39028
|
};
|
|
38567
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39029
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38568
39030
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38569
39031
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38570
39032
|
value: Scalars['Int']['output'];
|
|
@@ -38599,7 +39061,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38599
39061
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38600
39062
|
id: Scalars['ID']['output'];
|
|
38601
39063
|
};
|
|
38602
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39064
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38603
39065
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38604
39066
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38605
39067
|
value: Scalars['String']['output'];
|
|
@@ -38609,13 +39071,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38609
39071
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38610
39072
|
id: Scalars['ID']['output'];
|
|
38611
39073
|
};
|
|
38612
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39074
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38613
39075
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38614
39076
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38615
39077
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38616
39078
|
id: Scalars['ID']['output'];
|
|
38617
39079
|
};
|
|
38618
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39080
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38619
39081
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38620
39082
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38621
39083
|
value: Scalars['Boolean']['output'];
|
|
@@ -38660,7 +39122,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38660
39122
|
V2 = "V2",
|
|
38661
39123
|
V3 = "V3"
|
|
38662
39124
|
}
|
|
38663
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39125
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | 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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38664
39126
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38665
39127
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38666
39128
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -38761,6 +39223,19 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
|
|
|
38761
39223
|
from: Scalars['ID']['input'];
|
|
38762
39224
|
to: Scalars['ID']['input'];
|
|
38763
39225
|
};
|
|
39226
|
+
export declare type GraphStoreDeleteLoomVideoHasConfluencePageInput = {
|
|
39227
|
+
relationships: Array<GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput>;
|
|
39228
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39229
|
+
};
|
|
39230
|
+
export declare type GraphStoreDeleteLoomVideoHasConfluencePagePayload = Payload & {
|
|
39231
|
+
__typename?: 'GraphStoreDeleteLoomVideoHasConfluencePagePayload';
|
|
39232
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39233
|
+
success: Scalars['Boolean']['output'];
|
|
39234
|
+
};
|
|
39235
|
+
export declare type GraphStoreDeleteLoomVideoHasConfluencePageRelationshipInput = {
|
|
39236
|
+
from: Scalars['ID']['input'];
|
|
39237
|
+
to: Scalars['ID']['input'];
|
|
39238
|
+
};
|
|
38764
39239
|
export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput = {
|
|
38765
39240
|
relationships: Array<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRelationshipInput>;
|
|
38766
39241
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41507,71 +41982,6 @@ export declare type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
|
41507
41982
|
id: Scalars['ID']['output'];
|
|
41508
41983
|
};
|
|
41509
41984
|
export declare type GraphStoreFullServiceLinkedIncidentStartUnion = DevOpsService;
|
|
41510
|
-
export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
|
|
41511
|
-
Cancelled = "CANCELLED",
|
|
41512
|
-
Failed = "FAILED",
|
|
41513
|
-
InProgress = "IN_PROGRESS",
|
|
41514
|
-
NotSet = "NOT_SET",
|
|
41515
|
-
Pending = "PENDING",
|
|
41516
|
-
Successful = "SUCCESSFUL",
|
|
41517
|
-
Unknown = "UNKNOWN"
|
|
41518
|
-
}
|
|
41519
|
-
export declare type GraphStoreFullSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
41520
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildConnection';
|
|
41521
|
-
edges: Array<Maybe<GraphStoreFullSprintAssociatedBuildEdge>>;
|
|
41522
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
41523
|
-
nodes: Array<Maybe<GraphStoreFullSprintAssociatedBuildNode>>;
|
|
41524
|
-
pageInfo: PageInfo;
|
|
41525
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
41526
|
-
};
|
|
41527
|
-
export declare type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
41528
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildEdge';
|
|
41529
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41530
|
-
node: GraphStoreFullSprintAssociatedBuildNode;
|
|
41531
|
-
};
|
|
41532
|
-
export declare type GraphStoreFullSprintAssociatedBuildEndNode = {
|
|
41533
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
41534
|
-
data?: Maybe<GraphStoreFullSprintAssociatedBuildEndUnion>;
|
|
41535
|
-
id: Scalars['ID']['output'];
|
|
41536
|
-
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
41537
|
-
};
|
|
41538
|
-
export declare type GraphStoreFullSprintAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
41539
|
-
export declare type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
41540
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
41541
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41542
|
-
from: GraphStoreFullSprintAssociatedBuildStartNode;
|
|
41543
|
-
id: Scalars['ID']['output'];
|
|
41544
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41545
|
-
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput>;
|
|
41546
|
-
to: GraphStoreFullSprintAssociatedBuildEndNode;
|
|
41547
|
-
};
|
|
41548
|
-
export declare type GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput = {
|
|
41549
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipMetadataOutput';
|
|
41550
|
-
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
41551
|
-
creatorAri?: Maybe<Scalars['String']['output']>;
|
|
41552
|
-
issueAri?: Maybe<Scalars['String']['output']>;
|
|
41553
|
-
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
41554
|
-
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
41555
|
-
statusAri?: Maybe<Scalars['String']['output']>;
|
|
41556
|
-
};
|
|
41557
|
-
export declare type GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
41558
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput';
|
|
41559
|
-
state?: Maybe<GraphStoreFullSprintAssociatedBuildBuildStateOutput>;
|
|
41560
|
-
testInfo?: Maybe<GraphStoreFullSprintAssociatedBuildTestInfoOutput>;
|
|
41561
|
-
};
|
|
41562
|
-
export declare type GraphStoreFullSprintAssociatedBuildStartNode = {
|
|
41563
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildStartNode';
|
|
41564
|
-
data?: Maybe<GraphStoreFullSprintAssociatedBuildStartUnion>;
|
|
41565
|
-
id: Scalars['ID']['output'];
|
|
41566
|
-
};
|
|
41567
|
-
export declare type GraphStoreFullSprintAssociatedBuildStartUnion = JiraSprint;
|
|
41568
|
-
export declare type GraphStoreFullSprintAssociatedBuildTestInfoOutput = {
|
|
41569
|
-
__typename?: 'GraphStoreFullSprintAssociatedBuildTestInfoOutput';
|
|
41570
|
-
numberFailed?: Maybe<Scalars['Long']['output']>;
|
|
41571
|
-
numberPassed?: Maybe<Scalars['Long']['output']>;
|
|
41572
|
-
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
41573
|
-
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
41574
|
-
};
|
|
41575
41985
|
export declare type GraphStoreFullSprintAssociatedDeploymentAuthorOutput = {
|
|
41576
41986
|
__typename?: 'GraphStoreFullSprintAssociatedDeploymentAuthorOutput';
|
|
41577
41987
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -42897,6 +43307,12 @@ export declare type GraphStoreLongFilterInput = {
|
|
|
42897
43307
|
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
42898
43308
|
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
42899
43309
|
};
|
|
43310
|
+
export declare type GraphStoreLoomVideoHasConfluencePageSortInput = {
|
|
43311
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43312
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
43313
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43314
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
43315
|
+
};
|
|
42900
43316
|
export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
42901
43317
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42902
43318
|
};
|
|
@@ -42921,6 +43337,7 @@ export declare type GraphStoreMutation = {
|
|
|
42921
43337
|
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
42922
43338
|
createJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreCreateJcsIssueAssociatedSupportEscalationPayload>;
|
|
42923
43339
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
43340
|
+
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
42924
43341
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42925
43342
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
42926
43343
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -42946,6 +43363,7 @@ export declare type GraphStoreMutation = {
|
|
|
42946
43363
|
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
42947
43364
|
deleteJcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreDeleteJcsIssueAssociatedSupportEscalationPayload>;
|
|
42948
43365
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
43366
|
+
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
42949
43367
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42950
43368
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
42951
43369
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -42986,6 +43404,9 @@ export declare type GraphStoreMutationCreateJcsIssueAssociatedSupportEscalationA
|
|
|
42986
43404
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
42987
43405
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
42988
43406
|
};
|
|
43407
|
+
export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
43408
|
+
input?: InputMaybe<GraphStoreCreateLoomVideoHasConfluencePageInput>;
|
|
43409
|
+
};
|
|
42989
43410
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
42990
43411
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
42991
43412
|
};
|
|
@@ -43061,6 +43482,9 @@ export declare type GraphStoreMutationDeleteJcsIssueAssociatedSupportEscalationA
|
|
|
43061
43482
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
43062
43483
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
43063
43484
|
};
|
|
43485
|
+
export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
43486
|
+
input?: InputMaybe<GraphStoreDeleteLoomVideoHasConfluencePageInput>;
|
|
43487
|
+
};
|
|
43064
43488
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
43065
43489
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
43066
43490
|
};
|
|
@@ -46448,6 +46872,38 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
46448
46872
|
};
|
|
46449
46873
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion = JiraProject;
|
|
46450
46874
|
export declare type GraphStoreSimplifiedLinkedProjectHasVersionUnion = JiraVersion;
|
|
46875
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageConnection = HasPageInfo & HasTotal & {
|
|
46876
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageConnection';
|
|
46877
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageEdge>>>;
|
|
46878
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46879
|
+
pageInfo: PageInfo;
|
|
46880
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46881
|
+
};
|
|
46882
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageEdge = {
|
|
46883
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageEdge';
|
|
46884
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46885
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46886
|
+
id: Scalars['ID']['output'];
|
|
46887
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46888
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageUnion>;
|
|
46889
|
+
};
|
|
46890
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection = HasPageInfo & HasTotal & {
|
|
46891
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageInverseConnection';
|
|
46892
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge>>>;
|
|
46893
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46894
|
+
pageInfo: PageInfo;
|
|
46895
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46896
|
+
};
|
|
46897
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge = {
|
|
46898
|
+
__typename?: 'GraphStoreSimplifiedLoomVideoHasConfluencePageInverseEdge';
|
|
46899
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46900
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46901
|
+
id: Scalars['ID']['output'];
|
|
46902
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46903
|
+
node?: Maybe<GraphStoreSimplifiedLoomVideoHasConfluencePageInverseUnion>;
|
|
46904
|
+
};
|
|
46905
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageInverseUnion = LoomVideo;
|
|
46906
|
+
export declare type GraphStoreSimplifiedLoomVideoHasConfluencePageUnion = ConfluencePage;
|
|
46451
46907
|
export declare type GraphStoreSimplifiedMediaAttachedToContentConnection = HasPageInfo & {
|
|
46452
46908
|
__typename?: 'GraphStoreSimplifiedMediaAttachedToContentConnection';
|
|
46453
46909
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMediaAttachedToContentEdge>>>;
|
|
@@ -48094,38 +48550,6 @@ export declare type GraphStoreSimplifiedSpaceHasPageInverseEdge = {
|
|
|
48094
48550
|
};
|
|
48095
48551
|
export declare type GraphStoreSimplifiedSpaceHasPageInverseUnion = ConfluenceSpace;
|
|
48096
48552
|
export declare type GraphStoreSimplifiedSpaceHasPageUnion = ConfluencePage;
|
|
48097
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
48098
|
-
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
|
|
48099
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
|
|
48100
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
48101
|
-
pageInfo: PageInfo;
|
|
48102
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48103
|
-
};
|
|
48104
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildEdge = {
|
|
48105
|
-
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildEdge';
|
|
48106
|
-
createdAt: Scalars['DateTime']['output'];
|
|
48107
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48108
|
-
id: Scalars['ID']['output'];
|
|
48109
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
48110
|
-
node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildUnion>;
|
|
48111
|
-
};
|
|
48112
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
|
|
48113
|
-
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildInverseConnection';
|
|
48114
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseEdge>>>;
|
|
48115
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
48116
|
-
pageInfo: PageInfo;
|
|
48117
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48118
|
-
};
|
|
48119
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseEdge = {
|
|
48120
|
-
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildInverseEdge';
|
|
48121
|
-
createdAt: Scalars['DateTime']['output'];
|
|
48122
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48123
|
-
id: Scalars['ID']['output'];
|
|
48124
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
48125
|
-
node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildInverseUnion>;
|
|
48126
|
-
};
|
|
48127
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildInverseUnion = JiraSprint;
|
|
48128
|
-
export declare type GraphStoreSimplifiedSprintAssociatedBuildUnion = ExternalBuildInfo;
|
|
48129
48553
|
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
48130
48554
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
|
|
48131
48555
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
|
|
@@ -48381,7 +48805,7 @@ export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
|
48381
48805
|
node?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseUnion>;
|
|
48382
48806
|
};
|
|
48383
48807
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
48384
|
-
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject;
|
|
48808
|
+
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
48385
48809
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
48386
48810
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
48387
48811
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -51226,65 +51650,6 @@ export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
|
51226
51650
|
export declare type GraphStoreSpaceHasPageSortInput = {
|
|
51227
51651
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51228
51652
|
};
|
|
51229
|
-
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
51230
|
-
Cancelled = "CANCELLED",
|
|
51231
|
-
Failed = "FAILED",
|
|
51232
|
-
InProgress = "IN_PROGRESS",
|
|
51233
|
-
NotSet = "NOT_SET",
|
|
51234
|
-
Pending = "PENDING",
|
|
51235
|
-
Successful = "SUCCESSFUL",
|
|
51236
|
-
Unknown = "UNKNOWN"
|
|
51237
|
-
}
|
|
51238
|
-
export declare type GraphStoreSprintAssociatedBuildBuildStateFilterInput = {
|
|
51239
|
-
is?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
51240
|
-
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
51241
|
-
};
|
|
51242
|
-
export declare type GraphStoreSprintAssociatedBuildConditionalFilterInput = {
|
|
51243
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51244
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51245
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51246
|
-
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51247
|
-
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51248
|
-
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51249
|
-
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
51250
|
-
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51251
|
-
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51252
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51253
|
-
to_state?: InputMaybe<GraphStoreSprintAssociatedBuildBuildStateFilterInput>;
|
|
51254
|
-
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>;
|
|
51255
|
-
};
|
|
51256
|
-
export declare type GraphStoreSprintAssociatedBuildFilterInput = {
|
|
51257
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
51258
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
51259
|
-
};
|
|
51260
|
-
export declare type GraphStoreSprintAssociatedBuildSortInput = {
|
|
51261
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
51262
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
51263
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51264
|
-
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
51265
|
-
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
51266
|
-
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
51267
|
-
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
51268
|
-
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
51269
|
-
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
51270
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
51271
|
-
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
51272
|
-
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoSortInput>;
|
|
51273
|
-
};
|
|
51274
|
-
export declare type GraphStoreSprintAssociatedBuildTestInfoFilterInput = {
|
|
51275
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
51276
|
-
numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
51277
|
-
numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
51278
|
-
numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
|
|
51279
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
51280
|
-
totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
|
|
51281
|
-
};
|
|
51282
|
-
export declare type GraphStoreSprintAssociatedBuildTestInfoSortInput = {
|
|
51283
|
-
numberFailed?: InputMaybe<GraphStoreSortInput>;
|
|
51284
|
-
numberPassed?: InputMaybe<GraphStoreSortInput>;
|
|
51285
|
-
numberSkipped?: InputMaybe<GraphStoreSortInput>;
|
|
51286
|
-
totalNumber?: InputMaybe<GraphStoreSortInput>;
|
|
51287
|
-
};
|
|
51288
51653
|
export declare type GraphStoreSprintAssociatedDeploymentAuthorFilterInput = {
|
|
51289
51654
|
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
|
|
51290
51655
|
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
@@ -51625,8 +51990,6 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditional
|
|
|
51625
51990
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51626
51991
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51627
51992
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51628
|
-
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51629
|
-
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51630
51993
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51631
51994
|
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51632
51995
|
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
@@ -51639,8 +52002,6 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput =
|
|
|
51639
52002
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
51640
52003
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
51641
52004
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51642
|
-
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
51643
|
-
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
51644
52005
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
51645
52006
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
51646
52007
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -51771,8 +52132,6 @@ export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
|
51771
52132
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51772
52133
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51773
52134
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
51774
|
-
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51775
|
-
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51776
52135
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
51777
52136
|
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
51778
52137
|
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
@@ -51785,8 +52144,6 @@ export declare type GraphStoreUserLinkedThirdPartyUserSortInput = {
|
|
|
51785
52144
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
51786
52145
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
51787
52146
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51788
|
-
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
51789
|
-
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
51790
52147
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
51791
52148
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
51792
52149
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -56325,43 +56682,6 @@ export declare type JiraAutodevTaskPayload = Payload & {
|
|
|
56325
56682
|
success: Scalars['Boolean']['output'];
|
|
56326
56683
|
task?: Maybe<JiraAutodevTask>;
|
|
56327
56684
|
};
|
|
56328
|
-
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
56329
|
-
__typename?: 'JiraAutofixCreateJobPayload';
|
|
56330
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56331
|
-
job?: Maybe<JiraAutofixJob>;
|
|
56332
|
-
success: Scalars['Boolean']['output'];
|
|
56333
|
-
};
|
|
56334
|
-
export declare type JiraAutofixInput = {
|
|
56335
|
-
issueAri: Scalars['ID']['input'];
|
|
56336
|
-
jobType: JiraAutofixJobType;
|
|
56337
|
-
};
|
|
56338
|
-
export declare type JiraAutofixJob = {
|
|
56339
|
-
__typename?: 'JiraAutofixJob';
|
|
56340
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
56341
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
56342
|
-
jobId: Scalars['ID']['output'];
|
|
56343
|
-
status: JiraAutofixStatus;
|
|
56344
|
-
};
|
|
56345
|
-
export declare type JiraAutofixJobConnection = {
|
|
56346
|
-
__typename?: 'JiraAutofixJobConnection';
|
|
56347
|
-
edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
|
|
56348
|
-
nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
|
|
56349
|
-
pageInfo: PageInfo;
|
|
56350
|
-
};
|
|
56351
|
-
export declare type JiraAutofixJobEdge = {
|
|
56352
|
-
__typename?: 'JiraAutofixJobEdge';
|
|
56353
|
-
cursor: Scalars['String']['output'];
|
|
56354
|
-
node?: Maybe<JiraAutofixJob>;
|
|
56355
|
-
};
|
|
56356
|
-
export declare enum JiraAutofixJobType {
|
|
56357
|
-
InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
|
|
56358
|
-
}
|
|
56359
|
-
export declare enum JiraAutofixStatus {
|
|
56360
|
-
Completed = "COMPLETED",
|
|
56361
|
-
Failed = "FAILED",
|
|
56362
|
-
InProgress = "IN_PROGRESS",
|
|
56363
|
-
Pending = "PENDING"
|
|
56364
|
-
}
|
|
56365
56685
|
export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
|
|
56366
56686
|
__typename?: 'JiraAvailableField';
|
|
56367
56687
|
field?: Maybe<JiraField>;
|
|
@@ -58272,8 +58592,13 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
58272
58592
|
export declare type JiraCreateGlobalCustomFieldInput = {
|
|
58273
58593
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
58274
58594
|
name: Scalars['String']['input'];
|
|
58595
|
+
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
58275
58596
|
type: JiraConfigFieldType;
|
|
58276
58597
|
};
|
|
58598
|
+
export declare type JiraCreateGlobalCustomFieldOptionInput = {
|
|
58599
|
+
childOptions?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
58600
|
+
value: Scalars['String']['input'];
|
|
58601
|
+
};
|
|
58277
58602
|
export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
58278
58603
|
__typename?: 'JiraCreateGlobalCustomFieldPayload';
|
|
58279
58604
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -58915,7 +59240,6 @@ export declare type JiraDevOpsMutation = {
|
|
|
58915
59240
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
58916
59241
|
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
58917
59242
|
createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
|
|
58918
|
-
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
58919
59243
|
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
58920
59244
|
deleteAutodevPlannedChange?: Maybe<JiraAutodevDeletedPayload>;
|
|
58921
59245
|
deleteAutodevTask?: Maybe<JiraAutodevDeletedPayload>;
|
|
@@ -58963,10 +59287,6 @@ export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
|
|
|
58963
59287
|
issueAri: Scalars['ID']['input'];
|
|
58964
59288
|
jobId: Scalars['ID']['input'];
|
|
58965
59289
|
};
|
|
58966
|
-
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
58967
|
-
cloudId: Scalars['ID']['input'];
|
|
58968
|
-
input: JiraAutofixInput;
|
|
58969
|
-
};
|
|
58970
59290
|
export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
|
|
58971
59291
|
issueAri: Scalars['ID']['input'];
|
|
58972
59292
|
jobId: Scalars['ID']['input'];
|
|
@@ -59083,7 +59403,6 @@ export declare type JiraDevOpsQuery = {
|
|
|
59083
59403
|
autodevJobById?: Maybe<JiraAutodevJob>;
|
|
59084
59404
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
59085
59405
|
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
59086
|
-
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
59087
59406
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
59088
59407
|
configState?: Maybe<JiraAppConfigState>;
|
|
59089
59408
|
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
@@ -59102,9 +59421,6 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
59102
59421
|
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
59103
59422
|
issueAris: Array<Scalars['ID']['input']>;
|
|
59104
59423
|
};
|
|
59105
|
-
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
59106
|
-
issueAri: Scalars['ID']['input'];
|
|
59107
|
-
};
|
|
59108
59424
|
export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
59109
59425
|
cloudId: Scalars['ID']['input'];
|
|
59110
59426
|
};
|
|
@@ -59174,6 +59490,14 @@ export declare type JiraDiscardUserBoardViewConfigPayload = Payload & {
|
|
|
59174
59490
|
errors?: Maybe<Array<MutationError>>;
|
|
59175
59491
|
success: Scalars['Boolean']['output'];
|
|
59176
59492
|
};
|
|
59493
|
+
export declare type JiraDiscardUserIssueSearchConfigInput = {
|
|
59494
|
+
viewId: Scalars['ID']['input'];
|
|
59495
|
+
};
|
|
59496
|
+
export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
59497
|
+
__typename?: 'JiraDiscardUserIssueSearchConfigPayload';
|
|
59498
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59499
|
+
success: Scalars['Boolean']['output'];
|
|
59500
|
+
};
|
|
59177
59501
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
59178
59502
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59179
59503
|
};
|
|
@@ -59849,6 +60173,7 @@ export declare type JiraForgeExtension = {
|
|
|
59849
60173
|
installationConfig?: Maybe<Array<JiraForgeInstallationConfigExtension>>;
|
|
59850
60174
|
installationId: Scalars['String']['output'];
|
|
59851
60175
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
60176
|
+
moduleId?: Maybe<Scalars['ID']['output']>;
|
|
59852
60177
|
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
59853
60178
|
properties: Scalars['JSON']['output'];
|
|
59854
60179
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -60631,6 +60956,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60631
60956
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
60632
60957
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
60633
60958
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
60959
|
+
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
60634
60960
|
smartSummary?: Maybe<JiraAdf>;
|
|
60635
60961
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
60636
60962
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
@@ -61243,12 +61569,14 @@ export declare type JiraIssueFieldConfigAssociatedProjectsArgs = {
|
|
|
61243
61569
|
before?: InputMaybe<Scalars['Int']['input']>;
|
|
61244
61570
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61245
61571
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61572
|
+
queryString?: InputMaybe<Scalars['String']['input']>;
|
|
61246
61573
|
};
|
|
61247
61574
|
export declare type JiraIssueFieldConfigAssociatedProjectsV2Args = {
|
|
61248
61575
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61249
61576
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
61250
61577
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61251
61578
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61579
|
+
queryString?: InputMaybe<Scalars['String']['input']>;
|
|
61252
61580
|
};
|
|
61253
61581
|
export declare type JiraIssueFieldConfigAssociatedScreensArgs = {
|
|
61254
61582
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -61977,6 +62305,7 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
61977
62305
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
61978
62306
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61979
62307
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62308
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61980
62309
|
};
|
|
61981
62310
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
61982
62311
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
@@ -61989,10 +62318,12 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
61989
62318
|
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
61990
62319
|
canEnableGrouping?: Maybe<Scalars['Boolean']['output']>;
|
|
61991
62320
|
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
62321
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
61992
62322
|
groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
|
|
61993
62323
|
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
61994
62324
|
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61995
62325
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62326
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
61996
62327
|
};
|
|
61997
62328
|
export declare type JiraIssueSearchViewContextInput = {
|
|
61998
62329
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
@@ -62055,6 +62386,7 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
62055
62386
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
62056
62387
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62057
62388
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62389
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62058
62390
|
};
|
|
62059
62391
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
62060
62392
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
@@ -62336,6 +62668,15 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
62336
62668
|
__typename?: 'JiraJQLHistoryEdge';
|
|
62337
62669
|
node?: Maybe<JiraJqlHistory>;
|
|
62338
62670
|
};
|
|
62671
|
+
export declare type JiraJirtBoardScoreIssueEventPayload = {
|
|
62672
|
+
__typename?: 'JiraJirtBoardScoreIssueEventPayload';
|
|
62673
|
+
boardId?: Maybe<Scalars['String']['output']>;
|
|
62674
|
+
cloudId: Scalars['ID']['output'];
|
|
62675
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
62676
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
62677
|
+
resource: Scalars['String']['output'];
|
|
62678
|
+
type: Scalars['String']['output'];
|
|
62679
|
+
};
|
|
62339
62680
|
export declare type JiraJirtEventPayload = {
|
|
62340
62681
|
__typename?: 'JiraJirtEventPayload';
|
|
62341
62682
|
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63749,7 +64090,6 @@ export declare type JiraMutation = {
|
|
|
63749
64090
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
63750
64091
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
63751
64092
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
63752
|
-
updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
63753
64093
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
63754
64094
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
63755
64095
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64250,10 +64590,6 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64250
64590
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
64251
64591
|
id: Scalars['ID']['input'];
|
|
64252
64592
|
};
|
|
64253
|
-
export declare type JiraMutationUpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
64254
|
-
cloudId: Scalars['ID']['input'];
|
|
64255
|
-
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
64256
|
-
};
|
|
64257
64593
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64258
64594
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64259
64595
|
};
|
|
@@ -64610,7 +64946,8 @@ export declare enum JiraNotificationCategoryType {
|
|
|
64610
64946
|
IssueMentioned = "ISSUE_MENTIONED",
|
|
64611
64947
|
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
64612
64948
|
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
|
|
64613
|
-
Recurring = "RECURRING"
|
|
64949
|
+
Recurring = "RECURRING",
|
|
64950
|
+
UserJoin = "USER_JOIN"
|
|
64614
64951
|
}
|
|
64615
64952
|
export declare type JiraNotificationChannel = {
|
|
64616
64953
|
__typename?: 'JiraNotificationChannel';
|
|
@@ -64621,7 +64958,8 @@ export declare type JiraNotificationChannel = {
|
|
|
64621
64958
|
export declare enum JiraNotificationChannelType {
|
|
64622
64959
|
Email = "EMAIL",
|
|
64623
64960
|
InProduct = "IN_PRODUCT",
|
|
64624
|
-
MobilePush = "MOBILE_PUSH"
|
|
64961
|
+
MobilePush = "MOBILE_PUSH",
|
|
64962
|
+
Slack = "SLACK"
|
|
64625
64963
|
}
|
|
64626
64964
|
export declare type JiraNotificationGlobalPreference = {
|
|
64627
64965
|
__typename?: 'JiraNotificationGlobalPreference';
|
|
@@ -64647,6 +64985,7 @@ export declare type JiraNotificationPreference = {
|
|
|
64647
64985
|
id: Scalars['ID']['output'];
|
|
64648
64986
|
inProductChannel?: Maybe<JiraNotificationChannel>;
|
|
64649
64987
|
mobilePushChannel?: Maybe<JiraNotificationChannel>;
|
|
64988
|
+
slackChannel?: Maybe<JiraNotificationChannel>;
|
|
64650
64989
|
type?: Maybe<JiraNotificationType>;
|
|
64651
64990
|
};
|
|
64652
64991
|
export declare type JiraNotificationPreferenceInput = {
|
|
@@ -64669,6 +65008,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
64669
65008
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
64670
65009
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
64671
65010
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65011
|
+
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
64672
65012
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
64673
65013
|
};
|
|
64674
65014
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -64695,6 +65035,7 @@ export declare enum JiraNotificationType {
|
|
|
64695
65035
|
IssueUpdated = "ISSUE_UPDATED",
|
|
64696
65036
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
64697
65037
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65038
|
+
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
64698
65039
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
64699
65040
|
}
|
|
64700
65041
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65755,6 +66096,7 @@ export declare type JiraProject = Node & {
|
|
|
65755
66096
|
id: Scalars['ID']['output'];
|
|
65756
66097
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
65757
66098
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66099
|
+
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65758
66100
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65759
66101
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65760
66102
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -65980,6 +66322,7 @@ export declare enum JiraProjectActionType {
|
|
|
65980
66322
|
EditIssues = "EDIT_ISSUES",
|
|
65981
66323
|
EditProjectConfig = "EDIT_PROJECT_CONFIG",
|
|
65982
66324
|
LinkIssues = "LINK_ISSUES",
|
|
66325
|
+
ManageVersions = "MANAGE_VERSIONS",
|
|
65983
66326
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
65984
66327
|
TransitionIssues = "TRANSITION_ISSUES",
|
|
65985
66328
|
ViewIssues = "VIEW_ISSUES",
|
|
@@ -66489,7 +66832,6 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
66489
66832
|
favourites?: Maybe<JiraProjectConnection>;
|
|
66490
66833
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
66491
66834
|
id: Scalars['ID']['output'];
|
|
66492
|
-
more?: Maybe<JiraProjectConnection>;
|
|
66493
66835
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
66494
66836
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
66495
66837
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -66501,10 +66843,6 @@ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
|
|
|
66501
66843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66502
66844
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
66503
66845
|
};
|
|
66504
|
-
export declare type JiraProjectsSidebarMenuMoreArgs = {
|
|
66505
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
66506
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66507
|
-
};
|
|
66508
66846
|
export declare type JiraProjectsSidebarMenuMoreFavouritesArgs = {
|
|
66509
66847
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66510
66848
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -66529,6 +66867,14 @@ export declare type JiraPublishBoardViewConfigPayload = Payload & {
|
|
|
66529
66867
|
errors?: Maybe<Array<MutationError>>;
|
|
66530
66868
|
success: Scalars['Boolean']['output'];
|
|
66531
66869
|
};
|
|
66870
|
+
export declare type JiraPublishIssueSearchConfigInput = {
|
|
66871
|
+
viewId: Scalars['ID']['input'];
|
|
66872
|
+
};
|
|
66873
|
+
export declare type JiraPublishIssueSearchConfigPayload = Payload & {
|
|
66874
|
+
__typename?: 'JiraPublishIssueSearchConfigPayload';
|
|
66875
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66876
|
+
success: Scalars['Boolean']['output'];
|
|
66877
|
+
};
|
|
66532
66878
|
export declare type JiraPublishJourneyConfigurationInput = {
|
|
66533
66879
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
66534
66880
|
id: Scalars['ID']['input'];
|
|
@@ -66561,7 +66907,6 @@ export declare type JiraQuery = {
|
|
|
66561
66907
|
applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
|
|
66562
66908
|
applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
|
|
66563
66909
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
66564
|
-
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66565
66910
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
66566
66911
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
66567
66912
|
attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
|
|
@@ -66569,7 +66914,6 @@ export declare type JiraQuery = {
|
|
|
66569
66914
|
attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
|
|
66570
66915
|
attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
66571
66916
|
attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
|
|
66572
|
-
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
66573
66917
|
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
66574
66918
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
66575
66919
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
@@ -66823,12 +67167,6 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
66823
67167
|
cloudId: Scalars['ID']['input'];
|
|
66824
67168
|
keys: Array<Scalars['String']['input']>;
|
|
66825
67169
|
};
|
|
66826
|
-
export declare type JiraQueryAssociatedFieldConfigSchemesArgs = {
|
|
66827
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
66828
|
-
cloudId: Scalars['ID']['input'];
|
|
66829
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66830
|
-
input: JiraAssociatedFieldConfigSchemesInput;
|
|
66831
|
-
};
|
|
66832
67170
|
export declare type JiraQueryAtlassianIntelligenceActionArgs = {
|
|
66833
67171
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
66834
67172
|
cloudId: Scalars['ID']['input'];
|
|
@@ -66860,12 +67198,6 @@ export declare type JiraQueryAttachmentStorageUsedArgs = {
|
|
|
66860
67198
|
applicationKey: JiraApplicationKey;
|
|
66861
67199
|
cloudId: Scalars['ID']['input'];
|
|
66862
67200
|
};
|
|
66863
|
-
export declare type JiraQueryAvailableFieldConfigSchemesArgs = {
|
|
66864
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
66865
|
-
cloudId: Scalars['ID']['input'];
|
|
66866
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66867
|
-
input: JiraAvailableFieldConfigSchemesInput;
|
|
66868
|
-
};
|
|
66869
67201
|
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
66870
67202
|
cloudId: Scalars['ID']['input'];
|
|
66871
67203
|
durationInSeconds: Scalars['Int']['input'];
|
|
@@ -69978,6 +70310,15 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
69978
70310
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
69979
70311
|
success: Scalars['Boolean']['output'];
|
|
69980
70312
|
};
|
|
70313
|
+
export declare type JiraSetIssueSearchHideDoneItemsInput = {
|
|
70314
|
+
hideDoneItems: Scalars['Boolean']['input'];
|
|
70315
|
+
viewId: Scalars['ID']['input'];
|
|
70316
|
+
};
|
|
70317
|
+
export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
70318
|
+
__typename?: 'JiraSetIssueSearchHideDoneItemsPayload';
|
|
70319
|
+
errors?: Maybe<Array<MutationError>>;
|
|
70320
|
+
success: Scalars['Boolean']['output'];
|
|
70321
|
+
};
|
|
69981
70322
|
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
69982
70323
|
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
69983
70324
|
board?: Maybe<JiraBoard>;
|
|
@@ -70771,6 +71112,7 @@ export declare type JiraSubscription = {
|
|
|
70771
71112
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
70772
71113
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
70773
71114
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
71115
|
+
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
70774
71116
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
70775
71117
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
70776
71118
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -70842,6 +71184,12 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
|
70842
71184
|
cloudId: Scalars['ID']['input'];
|
|
70843
71185
|
projectId: Scalars['String']['input'];
|
|
70844
71186
|
};
|
|
71187
|
+
export declare type JiraSubscriptionOnJirtBoardIssueSubscriptionArgs = {
|
|
71188
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
71189
|
+
cloudId: Scalars['ID']['input'];
|
|
71190
|
+
events: Array<Scalars['String']['input']>;
|
|
71191
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
71192
|
+
};
|
|
70845
71193
|
export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
70846
71194
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
70847
71195
|
cloudId: Scalars['ID']['input'];
|
|
@@ -71882,6 +72230,7 @@ export declare type JiraUserPreferences = {
|
|
|
71882
72230
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
71883
72231
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71884
72232
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
72233
|
+
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71885
72234
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71886
72235
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
71887
72236
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -74040,7 +74389,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
|
|
|
74040
74389
|
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
74041
74390
|
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
74042
74391
|
};
|
|
74043
|
-
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
|
|
74392
|
+
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
|
|
74044
74393
|
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
74045
74394
|
LastModified = "LAST_MODIFIED",
|
|
74046
74395
|
Title = "TITLE"
|
|
@@ -74077,6 +74426,12 @@ export declare type KnowledgeBaseLinkResponse = {
|
|
|
74077
74426
|
mutationError?: Maybe<MutationError>;
|
|
74078
74427
|
success: Scalars['Boolean']['output'];
|
|
74079
74428
|
};
|
|
74429
|
+
export declare type KnowledgeBaseLinkedSourceTypes = {
|
|
74430
|
+
__typename?: 'KnowledgeBaseLinkedSourceTypes';
|
|
74431
|
+
linkedSourceTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
74432
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74433
|
+
};
|
|
74434
|
+
export declare type KnowledgeBaseLinkedSourceTypesResponse = KnowledgeBaseLinkedSourceTypes | QueryError;
|
|
74080
74435
|
export declare type KnowledgeBaseMutationApi = {
|
|
74081
74436
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
74082
74437
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -74164,6 +74519,23 @@ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
|
74164
74519
|
spaceAri: Scalars['ID']['input'];
|
|
74165
74520
|
viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
|
|
74166
74521
|
};
|
|
74522
|
+
export declare type KnowledgeBaseThirdPartyArticle = {
|
|
74523
|
+
__typename?: 'KnowledgeBaseThirdPartyArticle';
|
|
74524
|
+
id: Scalars['ID']['output'];
|
|
74525
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
74526
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
74527
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
74528
|
+
};
|
|
74529
|
+
export declare type KnowledgeBaseThirdPartyArticleEdge = {
|
|
74530
|
+
__typename?: 'KnowledgeBaseThirdPartyArticleEdge';
|
|
74531
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74532
|
+
node?: Maybe<KnowledgeBaseThirdPartyArticle>;
|
|
74533
|
+
};
|
|
74534
|
+
export declare type KnowledgeBaseThirdPartyConnection = {
|
|
74535
|
+
__typename?: 'KnowledgeBaseThirdPartyConnection';
|
|
74536
|
+
edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
|
|
74537
|
+
nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
|
|
74538
|
+
};
|
|
74167
74539
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
74168
74540
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
74169
74541
|
mutationError?: Maybe<MutationError>;
|
|
@@ -77079,6 +77451,29 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
|
77079
77451
|
description: Scalars['String']['output'];
|
|
77080
77452
|
title: Scalars['String']['output'];
|
|
77081
77453
|
};
|
|
77454
|
+
export declare type MarketplaceStoreCreateOrUpdateReviewInput = {
|
|
77455
|
+
appKey: Scalars['String']['input'];
|
|
77456
|
+
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
77457
|
+
review?: InputMaybe<Scalars['String']['input']>;
|
|
77458
|
+
stars: Scalars['Int']['input'];
|
|
77459
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
77460
|
+
userHasComplianceConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77461
|
+
};
|
|
77462
|
+
export declare type MarketplaceStoreCreateOrUpdateReviewResponse = {
|
|
77463
|
+
__typename?: 'MarketplaceStoreCreateOrUpdateReviewResponse';
|
|
77464
|
+
id: Scalars['ID']['output'];
|
|
77465
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
77466
|
+
};
|
|
77467
|
+
export declare type MarketplaceStoreCreateOrUpdateReviewResponseInput = {
|
|
77468
|
+
appKey: Scalars['String']['input'];
|
|
77469
|
+
reviewId: Scalars['ID']['input'];
|
|
77470
|
+
text: Scalars['String']['input'];
|
|
77471
|
+
};
|
|
77472
|
+
export declare type MarketplaceStoreCreateOrUpdateReviewResponseResponse = {
|
|
77473
|
+
__typename?: 'MarketplaceStoreCreateOrUpdateReviewResponseResponse';
|
|
77474
|
+
id: Scalars['ID']['output'];
|
|
77475
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
77476
|
+
};
|
|
77082
77477
|
export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
|
|
77083
77478
|
export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
77084
77479
|
__typename?: 'MarketplaceStoreCurrentUserReviewResponse';
|
|
@@ -77326,11 +77721,31 @@ export declare type MarketplaceStoreMultiInstanceEntitlementsForUserResponse = {
|
|
|
77326
77721
|
};
|
|
77327
77722
|
export declare type MarketplaceStoreMutationApi = {
|
|
77328
77723
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
77724
|
+
createOrUpdateReview: MarketplaceStoreCreateOrUpdateReviewResponse;
|
|
77725
|
+
createOrUpdateReviewResponse: MarketplaceStoreCreateOrUpdateReviewResponseResponse;
|
|
77329
77726
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
77727
|
+
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77728
|
+
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
77729
|
+
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
77730
|
+
};
|
|
77731
|
+
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
77732
|
+
input: MarketplaceStoreCreateOrUpdateReviewInput;
|
|
77733
|
+
};
|
|
77734
|
+
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewResponseArgs = {
|
|
77735
|
+
input: MarketplaceStoreCreateOrUpdateReviewResponseInput;
|
|
77330
77736
|
};
|
|
77331
77737
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
77332
77738
|
input: MarketplaceStoreInstallAppInput;
|
|
77333
77739
|
};
|
|
77740
|
+
export declare type MarketplaceStoreMutationApiUpdateReviewDownvoteArgs = {
|
|
77741
|
+
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
77742
|
+
};
|
|
77743
|
+
export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
|
|
77744
|
+
input: MarketplaceStoreUpdateReviewFlagInput;
|
|
77745
|
+
};
|
|
77746
|
+
export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
77747
|
+
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
77748
|
+
};
|
|
77334
77749
|
export declare type MarketplaceStoreOfferingDetails = {
|
|
77335
77750
|
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
77336
77751
|
id: Scalars['ID']['output'];
|
|
@@ -77495,6 +77910,7 @@ export declare type MarketplaceStoreProductListingScreenshot = {
|
|
|
77495
77910
|
};
|
|
77496
77911
|
export declare type MarketplaceStoreQueryApi = {
|
|
77497
77912
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
77913
|
+
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
77498
77914
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
77499
77915
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
77500
77916
|
billingSystem: MarketplaceStoreBillingSystemResponse;
|
|
@@ -77517,6 +77933,10 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
77517
77933
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
77518
77934
|
partner: MarketplaceStorePartnerResponse;
|
|
77519
77935
|
};
|
|
77936
|
+
export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
|
|
77937
|
+
appKey: Scalars['String']['input'];
|
|
77938
|
+
reviewId: Scalars['ID']['input'];
|
|
77939
|
+
};
|
|
77520
77940
|
export declare type MarketplaceStoreQueryApiAppReviewsByAppIdArgs = {
|
|
77521
77941
|
appId: Scalars['ID']['input'];
|
|
77522
77942
|
filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
|
|
@@ -77588,6 +78008,17 @@ export declare type MarketplaceStoreReviewAuthor = {
|
|
|
77588
78008
|
profileImage?: Maybe<Scalars['URL']['output']>;
|
|
77589
78009
|
profileLink?: Maybe<Scalars['URL']['output']>;
|
|
77590
78010
|
};
|
|
78011
|
+
export declare type MarketplaceStoreReviewByIdResponse = {
|
|
78012
|
+
__typename?: 'MarketplaceStoreReviewByIdResponse';
|
|
78013
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
78014
|
+
helpfulVotes?: Maybe<Scalars['Int']['output']>;
|
|
78015
|
+
hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
78016
|
+
id: Scalars['ID']['output'];
|
|
78017
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
78018
|
+
review?: Maybe<Scalars['String']['output']>;
|
|
78019
|
+
stars: Scalars['Int']['output'];
|
|
78020
|
+
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
78021
|
+
};
|
|
77591
78022
|
export declare type MarketplaceStoreReviewFilterInput = {
|
|
77592
78023
|
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
77593
78024
|
sort?: InputMaybe<MarketplaceStoreReviewsSorting>;
|
|
@@ -77615,6 +78046,26 @@ export declare enum MarketplaceStoreReviewsSorting {
|
|
|
77615
78046
|
Helpful = "HELPFUL",
|
|
77616
78047
|
Recent = "RECENT"
|
|
77617
78048
|
}
|
|
78049
|
+
export declare type MarketplaceStoreUpdateReviewFlagInput = {
|
|
78050
|
+
appKey: Scalars['String']['input'];
|
|
78051
|
+
reviewId: Scalars['ID']['input'];
|
|
78052
|
+
state: Scalars['Boolean']['input'];
|
|
78053
|
+
};
|
|
78054
|
+
export declare type MarketplaceStoreUpdateReviewFlagResponse = {
|
|
78055
|
+
__typename?: 'MarketplaceStoreUpdateReviewFlagResponse';
|
|
78056
|
+
id: Scalars['ID']['output'];
|
|
78057
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
78058
|
+
};
|
|
78059
|
+
export declare type MarketplaceStoreUpdateReviewVoteInput = {
|
|
78060
|
+
appKey: Scalars['String']['input'];
|
|
78061
|
+
reviewId: Scalars['ID']['input'];
|
|
78062
|
+
state: Scalars['Boolean']['input'];
|
|
78063
|
+
};
|
|
78064
|
+
export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
78065
|
+
__typename?: 'MarketplaceStoreUpdateReviewVoteResponse';
|
|
78066
|
+
id: Scalars['ID']['output'];
|
|
78067
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
78068
|
+
};
|
|
77618
78069
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
77619
78070
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
77620
78071
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -77898,6 +78349,10 @@ export declare type MercuryChangeSort = {
|
|
|
77898
78349
|
export declare enum MercuryChangeSortField {
|
|
77899
78350
|
Type = "TYPE"
|
|
77900
78351
|
}
|
|
78352
|
+
export declare type MercuryChangeSummaries = {
|
|
78353
|
+
__typename?: 'MercuryChangeSummaries';
|
|
78354
|
+
summaries?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
78355
|
+
};
|
|
77901
78356
|
export declare type MercuryChangeSummary = {
|
|
77902
78357
|
__typename?: 'MercuryChangeSummary';
|
|
77903
78358
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -78511,6 +78966,7 @@ export declare enum MercuryFocusAreaTeamAllocationAggregationSortField {
|
|
|
78511
78966
|
}
|
|
78512
78967
|
export declare type MercuryFocusAreaType = {
|
|
78513
78968
|
__typename?: 'MercuryFocusAreaType';
|
|
78969
|
+
ari: Scalars['String']['output'];
|
|
78514
78970
|
hierarchyLevel: Scalars['Int']['output'];
|
|
78515
78971
|
id: Scalars['ID']['output'];
|
|
78516
78972
|
name: Scalars['String']['output'];
|
|
@@ -79160,6 +79616,7 @@ export declare type MercuryQueryApi = {
|
|
|
79160
79616
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
79161
79617
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
79162
79618
|
comments?: Maybe<MercuryCommentConnection>;
|
|
79619
|
+
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
79163
79620
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
79164
79621
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
79165
79622
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
@@ -79200,6 +79657,9 @@ export declare type MercuryQueryApiCommentsArgs = {
|
|
|
79200
79657
|
entityType: MercuryEntityType;
|
|
79201
79658
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79202
79659
|
};
|
|
79660
|
+
export declare type MercuryQueryApiCommentsByArisArgs = {
|
|
79661
|
+
ids: Array<Scalars['ID']['input']>;
|
|
79662
|
+
};
|
|
79203
79663
|
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
79204
79664
|
cloudId: Scalars['ID']['input'];
|
|
79205
79665
|
id: Scalars['ID']['input'];
|
|
@@ -79395,6 +79855,7 @@ export declare enum MercuryStatusColor {
|
|
|
79395
79855
|
}
|
|
79396
79856
|
export declare type MercuryStrategicEvent = Node & {
|
|
79397
79857
|
__typename?: 'MercuryStrategicEvent';
|
|
79858
|
+
budget?: Maybe<MercuryStrategicEventBudget>;
|
|
79398
79859
|
comments?: Maybe<MercuryStrategicEventCommentConnection>;
|
|
79399
79860
|
createdDate: Scalars['String']['output'];
|
|
79400
79861
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -79409,6 +79870,10 @@ export declare type MercuryStrategicEventCommentsArgs = {
|
|
|
79409
79870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
79410
79871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79411
79872
|
};
|
|
79873
|
+
export declare type MercuryStrategicEventBudget = {
|
|
79874
|
+
__typename?: 'MercuryStrategicEventBudget';
|
|
79875
|
+
value?: Maybe<Scalars['BigDecimal']['output']>;
|
|
79876
|
+
};
|
|
79412
79877
|
export declare type MercuryStrategicEventComment = {
|
|
79413
79878
|
__typename?: 'MercuryStrategicEventComment';
|
|
79414
79879
|
content: Scalars['String']['output'];
|
|
@@ -79488,6 +79953,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
79488
79953
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
79489
79954
|
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
79490
79955
|
updateRequestPositionsChange: MercuryUpdateChangePayload;
|
|
79956
|
+
updateStrategicEventBudget?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79491
79957
|
updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
|
|
79492
79958
|
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
79493
79959
|
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
@@ -79560,6 +80026,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArg
|
|
|
79560
80026
|
export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
|
|
79561
80027
|
input: MercuryUpdateRequestPositionsChangeInput;
|
|
79562
80028
|
};
|
|
80029
|
+
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventBudgetArgs = {
|
|
80030
|
+
input: MercuryUpdateStrategicEventBudgetInput;
|
|
80031
|
+
};
|
|
79563
80032
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
|
|
79564
80033
|
input: MercuryUpdateStrategicEventCommentInput;
|
|
79565
80034
|
};
|
|
@@ -79581,6 +80050,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
79581
80050
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
79582
80051
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
79583
80052
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
80053
|
+
changeSummariesReport?: Maybe<MercuryChangeSummaries>;
|
|
79584
80054
|
changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79585
80055
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
79586
80056
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
@@ -79607,6 +80077,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
79607
80077
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
79608
80078
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
79609
80079
|
};
|
|
80080
|
+
export declare type MercuryStrategicEventsQueryApiChangeSummariesReportArgs = {
|
|
80081
|
+
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
80082
|
+
};
|
|
79610
80083
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArgs = {
|
|
79611
80084
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79612
80085
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -79888,6 +80361,10 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
|
79888
80361
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
79889
80362
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
79890
80363
|
};
|
|
80364
|
+
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
80365
|
+
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
80366
|
+
id: Scalars['ID']['input'];
|
|
80367
|
+
};
|
|
79891
80368
|
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
79892
80369
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79893
80370
|
content: Scalars['String']['input'];
|
|
@@ -80207,6 +80684,9 @@ export declare type Mutation = {
|
|
|
80207
80684
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
80208
80685
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
80209
80686
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
80687
|
+
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
80688
|
+
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
80689
|
+
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
80210
80690
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
80211
80691
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
80212
80692
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
@@ -80502,6 +80982,7 @@ export declare type Mutation = {
|
|
|
80502
80982
|
devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
|
|
80503
80983
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80504
80984
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
80985
|
+
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
80505
80986
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80506
80987
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
80507
80988
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -80540,7 +81021,9 @@ export declare type Mutation = {
|
|
|
80540
81021
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
80541
81022
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
80542
81023
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
81024
|
+
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
80543
81025
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
81026
|
+
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
80544
81027
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
80545
81028
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
80546
81029
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
@@ -80552,8 +81035,10 @@ export declare type Mutation = {
|
|
|
80552
81035
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
80553
81036
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
80554
81037
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
81038
|
+
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
80555
81039
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
80556
81040
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81041
|
+
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
80557
81042
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
80558
81043
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
80559
81044
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -80761,6 +81246,7 @@ export declare type MutationAddDefaultExCoSpacePermissionsArgs = {
|
|
|
80761
81246
|
spacePermissionsInput: AddDefaultExCoSpacePermissionsInput;
|
|
80762
81247
|
};
|
|
80763
81248
|
export declare type MutationAddLabelsArgs = {
|
|
81249
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80764
81250
|
input: AddLabelsInput;
|
|
80765
81251
|
};
|
|
80766
81252
|
export declare type MutationAddPublicLinkPermissionsArgs = {
|
|
@@ -80843,6 +81329,21 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
80843
81329
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
80844
81330
|
spaceKey: Scalars['String']['input'];
|
|
80845
81331
|
};
|
|
81332
|
+
export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
81333
|
+
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
81334
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
81335
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
81336
|
+
};
|
|
81337
|
+
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
81338
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
81339
|
+
hoursOfOperationId?: InputMaybe<Scalars['String']['input']>;
|
|
81340
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
81341
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
81342
|
+
};
|
|
81343
|
+
export declare type MutationChannelPlatform_DeleteQueuesArgs = {
|
|
81344
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
81345
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
81346
|
+
};
|
|
80846
81347
|
export declare type MutationClearRestrictionsForFreeArgs = {
|
|
80847
81348
|
contentId: Scalars['ID']['input'];
|
|
80848
81349
|
};
|
|
@@ -81727,6 +82228,7 @@ export declare type MutationDeleteInlineCommentArgs = {
|
|
|
81727
82228
|
input: DeleteInlineCommentInput;
|
|
81728
82229
|
};
|
|
81729
82230
|
export declare type MutationDeleteLabelArgs = {
|
|
82231
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81730
82232
|
input: DeleteLabelInput;
|
|
81731
82233
|
};
|
|
81732
82234
|
export declare type MutationDeletePagesArgs = {
|
|
@@ -81811,6 +82313,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
|
|
|
81811
82313
|
agentId: Scalars['ID']['input'];
|
|
81812
82314
|
issueIds: Array<Scalars['ID']['input']>;
|
|
81813
82315
|
};
|
|
82316
|
+
export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
82317
|
+
issueAri: Scalars['ID']['input'];
|
|
82318
|
+
jobId: Scalars['ID']['input'];
|
|
82319
|
+
};
|
|
81814
82320
|
export declare type MutationDisableExperimentArgs = {
|
|
81815
82321
|
experimentKey: Scalars['String']['input'];
|
|
81816
82322
|
};
|
|
@@ -81894,9 +82400,15 @@ export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
|
81894
82400
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
81895
82401
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
81896
82402
|
};
|
|
82403
|
+
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
82404
|
+
input: JiraDiscardUserIssueSearchConfigInput;
|
|
82405
|
+
};
|
|
81897
82406
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
81898
82407
|
input: JiraPublishBoardViewConfigInput;
|
|
81899
82408
|
};
|
|
82409
|
+
export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
82410
|
+
input: JiraPublishIssueSearchConfigInput;
|
|
82411
|
+
};
|
|
81900
82412
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
81901
82413
|
input: JiraReorderBoardViewColumnInput;
|
|
81902
82414
|
};
|
|
@@ -81930,12 +82442,19 @@ export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
|
81930
82442
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
81931
82443
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
81932
82444
|
};
|
|
82445
|
+
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
82446
|
+
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
82447
|
+
};
|
|
81933
82448
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
81934
82449
|
input: JiraSetViewFilterInput;
|
|
81935
82450
|
};
|
|
81936
82451
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
81937
82452
|
input: JiraSetViewGroupByInput;
|
|
81938
82453
|
};
|
|
82454
|
+
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82455
|
+
cloudId: Scalars['ID']['input'];
|
|
82456
|
+
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
82457
|
+
};
|
|
81939
82458
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
81940
82459
|
input: JiraUpdateBackgroundInput;
|
|
81941
82460
|
};
|
|
@@ -84628,7 +85147,6 @@ export declare type PolarisValueRule = {
|
|
|
84628
85147
|
};
|
|
84629
85148
|
export declare type PolarisView = {
|
|
84630
85149
|
__typename?: 'PolarisView';
|
|
84631
|
-
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
84632
85150
|
comments?: Maybe<Array<PolarisComment>>;
|
|
84633
85151
|
containsArchived: Scalars['Boolean']['output'];
|
|
84634
85152
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -85168,6 +85686,11 @@ export declare type Query = {
|
|
|
85168
85686
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
85169
85687
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
85170
85688
|
ccp?: Maybe<CcpQueryApi>;
|
|
85689
|
+
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
85690
|
+
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
85691
|
+
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
85692
|
+
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
85693
|
+
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85171
85694
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
85172
85695
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
85173
85696
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -85502,6 +86025,7 @@ export declare type Query = {
|
|
|
85502
86025
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
85503
86026
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
85504
86027
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
86028
|
+
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85505
86029
|
devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
|
|
85506
86030
|
devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
|
|
85507
86031
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
@@ -85591,8 +86115,6 @@ export declare type Query = {
|
|
|
85591
86115
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
85592
86116
|
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
85593
86117
|
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
85594
|
-
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
85595
|
-
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
85596
86118
|
ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
|
|
85597
86119
|
ipmInlineDialogs: ContentPlatformIpmInlineDialogSearchConnection;
|
|
85598
86120
|
ipmMultiStep?: Maybe<ContentPlatformIpmMultiStep>;
|
|
@@ -85609,6 +86131,8 @@ export declare type Query = {
|
|
|
85609
86131
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
85610
86132
|
jiraReleases?: Maybe<JiraReleases>;
|
|
85611
86133
|
jiraServers?: Maybe<JiraServersResult>;
|
|
86134
|
+
jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
86135
|
+
jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
85612
86136
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
85613
86137
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
85614
86138
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
@@ -85621,6 +86145,7 @@ export declare type Query = {
|
|
|
85621
86145
|
jsw?: Maybe<JswQuery>;
|
|
85622
86146
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
85623
86147
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
86148
|
+
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
85624
86149
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
85625
86150
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
85626
86151
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
@@ -86059,6 +86584,19 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
86059
86584
|
originalContentVersion: Scalars['Int']['input'];
|
|
86060
86585
|
revisedContentVersion: Scalars['Int']['input'];
|
|
86061
86586
|
};
|
|
86587
|
+
export declare type QueryChannelPlatform_EvaluateChannelAvailabilityArgs = {
|
|
86588
|
+
request?: InputMaybe<ChannelPlatformChannelAvailabilityRequestInput>;
|
|
86589
|
+
};
|
|
86590
|
+
export declare type QueryChannelPlatform_GetAgentIdForAaidArgs = {
|
|
86591
|
+
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
86592
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
86593
|
+
};
|
|
86594
|
+
export declare type QueryChannelPlatform_GetChannelTokenArgs = {
|
|
86595
|
+
request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
|
|
86596
|
+
};
|
|
86597
|
+
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
86598
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86599
|
+
};
|
|
86062
86600
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
86063
86601
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86064
86602
|
};
|
|
@@ -87544,6 +88082,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
87544
88082
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
87545
88083
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
87546
88084
|
};
|
|
88085
|
+
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
88086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88087
|
+
cloudId: Scalars['ID']['input'];
|
|
88088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88089
|
+
issueKey: Scalars['String']['input'];
|
|
88090
|
+
};
|
|
87547
88091
|
export declare type QueryDevai_FlowSessionGetByAriArgs = {
|
|
87548
88092
|
id: Scalars['ID']['input'];
|
|
87549
88093
|
};
|
|
@@ -87557,6 +88101,7 @@ export declare type QueryDevai_FlowSessionResumeArgs = {
|
|
|
87557
88101
|
export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
87558
88102
|
cloudId: Scalars['ID']['input'];
|
|
87559
88103
|
creator: Scalars['String']['input'];
|
|
88104
|
+
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
87560
88105
|
};
|
|
87561
88106
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
87562
88107
|
atlassianAccountId: Scalars['ID']['input'];
|
|
@@ -87846,14 +88391,6 @@ export declare type QueryIpmFlagArgs = {
|
|
|
87846
88391
|
export declare type QueryIpmFlagsArgs = {
|
|
87847
88392
|
search: ContentPlatformSearchApIv2Query;
|
|
87848
88393
|
};
|
|
87849
|
-
export declare type QueryIpmImageModalArgs = {
|
|
87850
|
-
id: Scalars['String']['input'];
|
|
87851
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
87852
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87853
|
-
};
|
|
87854
|
-
export declare type QueryIpmImageModalsArgs = {
|
|
87855
|
-
search: ContentPlatformSearchApIv2Query;
|
|
87856
|
-
};
|
|
87857
88394
|
export declare type QueryIpmInlineDialogArgs = {
|
|
87858
88395
|
id: Scalars['String']['input'];
|
|
87859
88396
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -87886,6 +88423,18 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
87886
88423
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87887
88424
|
id: Scalars['ID']['input'];
|
|
87888
88425
|
};
|
|
88426
|
+
export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
|
|
88427
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88428
|
+
cloudId: Scalars['ID']['input'];
|
|
88429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88430
|
+
input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
|
|
88431
|
+
};
|
|
88432
|
+
export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
|
|
88433
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88434
|
+
cloudId: Scalars['ID']['input'];
|
|
88435
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88436
|
+
input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
|
|
88437
|
+
};
|
|
87889
88438
|
export declare type QueryJira_BoardViewArgs = {
|
|
87890
88439
|
input: JiraBoardViewInput;
|
|
87891
88440
|
};
|
|
@@ -87921,6 +88470,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
87921
88470
|
cloudId: Scalars['ID']['input'];
|
|
87922
88471
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
87923
88472
|
};
|
|
88473
|
+
export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
88474
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
88475
|
+
};
|
|
87924
88476
|
export declare type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
87925
88477
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
87926
88478
|
};
|
|
@@ -88589,9 +89141,6 @@ export declare type QueryTemplateMediaSessionArgs = {
|
|
|
88589
89141
|
export declare type QueryTemplatesArgs = {
|
|
88590
89142
|
search: ContentPlatformSearchApIv2Query;
|
|
88591
89143
|
};
|
|
88592
|
-
export declare type QueryTenantArgs = {
|
|
88593
|
-
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88594
|
-
};
|
|
88595
89144
|
export declare type QueryTenantContextsArgs = {
|
|
88596
89145
|
activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88597
89146
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -88801,10 +89350,11 @@ export declare type RadarAriFieldValue = {
|
|
|
88801
89350
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
88802
89351
|
value?: Maybe<RadarAriObject>;
|
|
88803
89352
|
};
|
|
88804
|
-
export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
|
|
89353
|
+
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
88805
89354
|
export declare type RadarBooleanFieldValue = {
|
|
88806
89355
|
__typename?: 'RadarBooleanFieldValue';
|
|
88807
89356
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89357
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
88808
89358
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
88809
89359
|
};
|
|
88810
89360
|
export declare type RadarConnection = {
|
|
@@ -88824,17 +89374,38 @@ export declare type RadarConnectorsInput = {
|
|
|
88824
89374
|
connectorId: Scalars['ID']['input'];
|
|
88825
89375
|
isEnabled: Scalars['Boolean']['input'];
|
|
88826
89376
|
};
|
|
89377
|
+
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
89378
|
+
__typename?: 'RadarCustomFieldDefinition';
|
|
89379
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
89380
|
+
displayName: Scalars['String']['output'];
|
|
89381
|
+
entity: RadarEntityType;
|
|
89382
|
+
filterOptions: RadarFilterOptions;
|
|
89383
|
+
id: Scalars['ID']['output'];
|
|
89384
|
+
isCustom: Scalars['Boolean']['output'];
|
|
89385
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
89386
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89387
|
+
relativeId: Scalars['String']['output'];
|
|
89388
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
89389
|
+
syncStatus: RadarCustomFieldSyncStatus;
|
|
89390
|
+
type: RadarFieldType;
|
|
89391
|
+
};
|
|
88827
89392
|
export declare type RadarCustomFieldInput = {
|
|
88828
89393
|
displayName: Scalars['String']['input'];
|
|
88829
89394
|
entity: RadarEntityType;
|
|
88830
|
-
relativeId
|
|
89395
|
+
relativeId?: InputMaybe<Scalars['String']['input']>;
|
|
88831
89396
|
sensitivityLevel: RadarSensitivityLevel;
|
|
88832
89397
|
sourceField: Scalars['String']['input'];
|
|
88833
89398
|
type: RadarFieldType;
|
|
88834
89399
|
};
|
|
89400
|
+
export declare enum RadarCustomFieldSyncStatus {
|
|
89401
|
+
Found = "FOUND",
|
|
89402
|
+
NotFound = "NOT_FOUND",
|
|
89403
|
+
Pending = "PENDING"
|
|
89404
|
+
}
|
|
88835
89405
|
export declare type RadarDateFieldValue = {
|
|
88836
89406
|
__typename?: 'RadarDateFieldValue';
|
|
88837
89407
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89408
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
88838
89409
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
88839
89410
|
};
|
|
88840
89411
|
export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
@@ -89019,6 +89590,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
89019
89590
|
__typename?: 'RadarNumericFieldValue';
|
|
89020
89591
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
89021
89592
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89593
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89022
89594
|
value?: Maybe<Scalars['Int']['output']>;
|
|
89023
89595
|
};
|
|
89024
89596
|
export declare type RadarPermissions = {
|
|
@@ -89103,11 +89675,13 @@ export declare type RadarStatusFieldValue = {
|
|
|
89103
89675
|
appearance?: Maybe<RadarStatusAppearance>;
|
|
89104
89676
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89105
89677
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89678
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89106
89679
|
value?: Maybe<Scalars['String']['output']>;
|
|
89107
89680
|
};
|
|
89108
89681
|
export declare type RadarStringFieldValue = {
|
|
89109
89682
|
__typename?: 'RadarStringFieldValue';
|
|
89110
89683
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89684
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89111
89685
|
value?: Maybe<Scalars['String']['output']>;
|
|
89112
89686
|
};
|
|
89113
89687
|
export declare type RadarUrlFieldValue = {
|
|
@@ -89115,6 +89689,7 @@ export declare type RadarUrlFieldValue = {
|
|
|
89115
89689
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89116
89690
|
icon?: Maybe<Scalars['String']['output']>;
|
|
89117
89691
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89692
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89118
89693
|
value?: Maybe<Scalars['String']['output']>;
|
|
89119
89694
|
};
|
|
89120
89695
|
export declare type RadarUserContext = {
|
|
@@ -89153,6 +89728,7 @@ export declare type RadarWorkspace = {
|
|
|
89153
89728
|
functions: Array<RadarFunction>;
|
|
89154
89729
|
id: Scalars['ID']['output'];
|
|
89155
89730
|
positionFields: Array<RadarFieldDefinition>;
|
|
89731
|
+
proposalFields: Array<RadarFieldDefinition>;
|
|
89156
89732
|
settings: RadarSettings;
|
|
89157
89733
|
userContext?: Maybe<RadarUserContext>;
|
|
89158
89734
|
workerFields: Array<RadarFieldDefinition>;
|
|
@@ -90359,13 +90935,21 @@ export declare type RunImportError = {
|
|
|
90359
90935
|
export declare type RunImportInput = {
|
|
90360
90936
|
accessToken: Scalars['String']['input'];
|
|
90361
90937
|
application: Scalars['String']['input'];
|
|
90938
|
+
collectionMediaToken?: InputMaybe<Scalars['String']['input']>;
|
|
90939
|
+
collectionName?: InputMaybe<Scalars['String']['input']>;
|
|
90940
|
+
exportEntities?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90362
90941
|
filestoreId: Scalars['String']['input'];
|
|
90363
90942
|
fullImport: Scalars['Boolean']['input'];
|
|
90364
90943
|
importPageData: Scalars['Boolean']['input'];
|
|
90365
90944
|
importPermissions?: InputMaybe<Scalars['String']['input']>;
|
|
90366
90945
|
importUsers: Scalars['Boolean']['input'];
|
|
90367
90946
|
integrationToken: Scalars['String']['input'];
|
|
90947
|
+
miroAuthToken?: InputMaybe<Scalars['String']['input']>;
|
|
90948
|
+
miroProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
90949
|
+
miroTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
90368
90950
|
orgId: Scalars['String']['input'];
|
|
90951
|
+
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
90952
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
90369
90953
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
90370
90954
|
};
|
|
90371
90955
|
export declare type RunImportPayload = {
|
|
@@ -92727,6 +93311,10 @@ export declare type ShepherdDspListMetadata = {
|
|
|
92727
93311
|
isSwitched?: Maybe<Scalars['Boolean']['output']>;
|
|
92728
93312
|
type?: Maybe<Scalars['String']['output']>;
|
|
92729
93313
|
};
|
|
93314
|
+
export declare type ShepherdEnabledWorkspaceByUserContext = {
|
|
93315
|
+
__typename?: 'ShepherdEnabledWorkspaceByUserContext';
|
|
93316
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
93317
|
+
};
|
|
92730
93318
|
export declare type ShepherdExclusionContentInfo = {
|
|
92731
93319
|
__typename?: 'ShepherdExclusionContentInfo';
|
|
92732
93320
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -92899,6 +93487,7 @@ export declare type ShepherdQuery = {
|
|
|
92899
93487
|
__typename?: 'ShepherdQuery';
|
|
92900
93488
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
92901
93489
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
93490
|
+
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
92902
93491
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
92903
93492
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
92904
93493
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
@@ -95690,7 +96279,6 @@ export declare type Tenant = {
|
|
|
95690
96279
|
__typename?: 'Tenant';
|
|
95691
96280
|
activationId?: Maybe<Scalars['String']['output']>;
|
|
95692
96281
|
cloudId: Scalars['ID']['output'];
|
|
95693
|
-
editions?: Maybe<ConfluenceEditions>;
|
|
95694
96282
|
environment: Environment;
|
|
95695
96283
|
shard: Scalars['String']['output'];
|
|
95696
96284
|
};
|
|
@@ -96184,7 +96772,9 @@ export declare type TownsquareCapability = {
|
|
|
96184
96772
|
capabilityContainer?: Maybe<TownsquareCapabilityContainer>;
|
|
96185
96773
|
};
|
|
96186
96774
|
export declare enum TownsquareCapabilityContainer {
|
|
96775
|
+
FocusAreasApp = "FOCUS_AREAS_APP",
|
|
96187
96776
|
GoalsApp = "GOALS_APP",
|
|
96777
|
+
JiraAlignApp = "JIRA_ALIGN_APP",
|
|
96188
96778
|
ProjectsApp = "PROJECTS_APP"
|
|
96189
96779
|
}
|
|
96190
96780
|
export declare type TownsquareComment = Node & {
|
|
@@ -97289,6 +97879,10 @@ export declare type TrelloAttachmentEdgeUpdated = {
|
|
|
97289
97879
|
__typename?: 'TrelloAttachmentEdgeUpdated';
|
|
97290
97880
|
node: TrelloAttachment;
|
|
97291
97881
|
};
|
|
97882
|
+
export declare type TrelloAttachmentUpdated = {
|
|
97883
|
+
__typename?: 'TrelloAttachmentUpdated';
|
|
97884
|
+
id: Scalars['ID']['output'];
|
|
97885
|
+
};
|
|
97292
97886
|
export declare type TrelloBoard = Node & {
|
|
97293
97887
|
__typename?: 'TrelloBoard';
|
|
97294
97888
|
closed: Scalars['Boolean']['output'];
|
|
@@ -97364,6 +97958,7 @@ export declare type TrelloBoardBackground = {
|
|
|
97364
97958
|
color?: Maybe<Scalars['String']['output']>;
|
|
97365
97959
|
image?: Maybe<Scalars['String']['output']>;
|
|
97366
97960
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
97961
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
97367
97962
|
tile?: Maybe<Scalars['Boolean']['output']>;
|
|
97368
97963
|
topColor?: Maybe<Scalars['String']['output']>;
|
|
97369
97964
|
};
|
|
@@ -97765,6 +98360,7 @@ export declare enum TrelloCardCoverSize {
|
|
|
97765
98360
|
}
|
|
97766
98361
|
export declare type TrelloCardCoverUpdated = {
|
|
97767
98362
|
__typename?: 'TrelloCardCoverUpdated';
|
|
98363
|
+
attachment?: Maybe<TrelloAttachmentUpdated>;
|
|
97768
98364
|
brightness?: Maybe<TrelloCardCoverBrightness>;
|
|
97769
98365
|
color?: Maybe<TrelloCardCoverColor>;
|
|
97770
98366
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -97772,6 +98368,7 @@ export declare type TrelloCardCoverUpdated = {
|
|
|
97772
98368
|
previews?: Maybe<TrelloImagePreviewUpdatedConnection>;
|
|
97773
98369
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
97774
98370
|
size?: Maybe<TrelloCardCoverSize>;
|
|
98371
|
+
uploadedBackground?: Maybe<TrelloUploadedBackground>;
|
|
97775
98372
|
};
|
|
97776
98373
|
export declare type TrelloCardCreationInfo = {
|
|
97777
98374
|
__typename?: 'TrelloCardCreationInfo';
|
|
@@ -97779,6 +98376,10 @@ export declare type TrelloCardCreationInfo = {
|
|
|
97779
98376
|
loadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
97780
98377
|
method?: Maybe<Scalars['String']['output']>;
|
|
97781
98378
|
};
|
|
98379
|
+
export declare type TrelloCardCustomFieldItemEdgeUpdated = {
|
|
98380
|
+
__typename?: 'TrelloCardCustomFieldItemEdgeUpdated';
|
|
98381
|
+
node: TrelloCustomFieldItemUpdated;
|
|
98382
|
+
};
|
|
97782
98383
|
export declare type TrelloCardDueInfo = {
|
|
97783
98384
|
__typename?: 'TrelloCardDueInfo';
|
|
97784
98385
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -98097,6 +98698,10 @@ export declare type TrelloCustomFieldEdgeUpdated = {
|
|
|
98097
98698
|
__typename?: 'TrelloCustomFieldEdgeUpdated';
|
|
98098
98699
|
node: TrelloCustomField;
|
|
98099
98700
|
};
|
|
98701
|
+
export declare type TrelloCustomFieldId = {
|
|
98702
|
+
__typename?: 'TrelloCustomFieldId';
|
|
98703
|
+
objectId: Scalars['ID']['output'];
|
|
98704
|
+
};
|
|
98100
98705
|
export declare type TrelloCustomFieldItem = {
|
|
98101
98706
|
__typename?: 'TrelloCustomFieldItem';
|
|
98102
98707
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -98115,8 +98720,15 @@ export declare type TrelloCustomFieldItemEdge = {
|
|
|
98115
98720
|
cursor: Scalars['String']['output'];
|
|
98116
98721
|
node: TrelloCustomFieldItem;
|
|
98117
98722
|
};
|
|
98723
|
+
export declare type TrelloCustomFieldItemUpdated = {
|
|
98724
|
+
__typename?: 'TrelloCustomFieldItemUpdated';
|
|
98725
|
+
customField?: Maybe<TrelloCustomFieldId>;
|
|
98726
|
+
objectId: Scalars['ID']['output'];
|
|
98727
|
+
value?: Maybe<TrelloCustomFieldItemValueInfo>;
|
|
98728
|
+
};
|
|
98118
98729
|
export declare type TrelloCustomFieldItemUpdatedConnection = {
|
|
98119
98730
|
__typename?: 'TrelloCustomFieldItemUpdatedConnection';
|
|
98731
|
+
edges?: Maybe<Array<TrelloCardCustomFieldItemEdgeUpdated>>;
|
|
98120
98732
|
nodes?: Maybe<Array<TrelloCustomFieldItem>>;
|
|
98121
98733
|
};
|
|
98122
98734
|
export declare type TrelloCustomFieldItemValueInfo = {
|
|
@@ -98435,7 +99047,10 @@ export declare type TrelloMemberUpdated = {
|
|
|
98435
99047
|
__typename?: 'TrelloMemberUpdated';
|
|
98436
99048
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
98437
99049
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
99050
|
+
fullName?: Maybe<Scalars['String']['output']>;
|
|
98438
99051
|
id?: Maybe<Scalars['ID']['output']>;
|
|
99052
|
+
initials?: Maybe<Scalars['String']['output']>;
|
|
99053
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
98439
99054
|
};
|
|
98440
99055
|
export declare type TrelloMemberUpdatedConnection = {
|
|
98441
99056
|
__typename?: 'TrelloMemberUpdatedConnection';
|
|
@@ -98818,6 +99433,7 @@ export declare type TrelloPlannerCalendarEventCardEdgeUpdated = {
|
|
|
98818
99433
|
export declare type TrelloPlannerCalendarEventCardUpdated = {
|
|
98819
99434
|
__typename?: 'TrelloPlannerCalendarEventCardUpdated';
|
|
98820
99435
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
99436
|
+
card?: Maybe<TrelloPlannerCardUpdated>;
|
|
98821
99437
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
98822
99438
|
id: Scalars['ID']['output'];
|
|
98823
99439
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -98919,6 +99535,20 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
98919
99535
|
export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
|
|
98920
99536
|
filter: TrelloPlannerCalendarEventsUpdatedFilter;
|
|
98921
99537
|
};
|
|
99538
|
+
export declare type TrelloPlannerCardBoardUpdated = {
|
|
99539
|
+
__typename?: 'TrelloPlannerCardBoardUpdated';
|
|
99540
|
+
id: Scalars['ID']['output'];
|
|
99541
|
+
};
|
|
99542
|
+
export declare type TrelloPlannerCardListUpdated = {
|
|
99543
|
+
__typename?: 'TrelloPlannerCardListUpdated';
|
|
99544
|
+
board?: Maybe<TrelloPlannerCardBoardUpdated>;
|
|
99545
|
+
id: Scalars['ID']['output'];
|
|
99546
|
+
};
|
|
99547
|
+
export declare type TrelloPlannerCardUpdated = {
|
|
99548
|
+
__typename?: 'TrelloPlannerCardUpdated';
|
|
99549
|
+
id: Scalars['ID']['output'];
|
|
99550
|
+
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
99551
|
+
};
|
|
98922
99552
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
98923
99553
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
98924
99554
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -102454,6 +103084,18 @@ export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsComp
|
|
|
102454
103084
|
title: Scalars['String']['output'];
|
|
102455
103085
|
url: Scalars['String']['output'];
|
|
102456
103086
|
};
|
|
103087
|
+
export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestionsCompassTask & {
|
|
103088
|
+
__typename?: 'WorkSuggestionsCompassScorecardCriterionTask';
|
|
103089
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
103090
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
103091
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
103092
|
+
criterionId?: Maybe<Scalars['ID']['output']>;
|
|
103093
|
+
id: Scalars['String']['output'];
|
|
103094
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
103095
|
+
scorecardAri?: Maybe<Scalars['ID']['output']>;
|
|
103096
|
+
title: Scalars['String']['output'];
|
|
103097
|
+
url: Scalars['String']['output'];
|
|
103098
|
+
};
|
|
102457
103099
|
export declare type WorkSuggestionsCompassTask = {
|
|
102458
103100
|
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
102459
103101
|
componentName?: Maybe<Scalars['String']['output']>;
|