@forge/cli-shared 5.5.2-next.4 → 5.5.2-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/out/graphql/graphql-types.d.ts +406 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +64 -24
- package/package.json +2 -2
|
@@ -2390,6 +2390,7 @@ export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCa
|
|
|
2390
2390
|
export declare type CcpChargeDetails = CommerceChargeDetails & {
|
|
2391
2391
|
__typename?: 'CcpChargeDetails';
|
|
2392
2392
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2393
|
+
listPriceEstimates?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
|
|
2393
2394
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
2394
2395
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
2395
2396
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
@@ -2465,6 +2466,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2465
2466
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
2466
2467
|
context?: Maybe<CcpContext>;
|
|
2467
2468
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
2469
|
+
defaultOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
2468
2470
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
2469
2471
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
2470
2472
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
@@ -2490,6 +2492,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2490
2492
|
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
2491
2493
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2492
2494
|
};
|
|
2495
|
+
export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
2496
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2497
|
+
};
|
|
2493
2498
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
2494
2499
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
2495
2500
|
};
|
|
@@ -2508,6 +2513,17 @@ export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
|
2508
2513
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2509
2514
|
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2510
2515
|
};
|
|
2516
|
+
export declare type CcpEntitlementOfferingTransition = {
|
|
2517
|
+
__typename?: 'CcpEntitlementOfferingTransition';
|
|
2518
|
+
id: Scalars['ID']['output'];
|
|
2519
|
+
listPriceForOrderWithDefaults?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
|
|
2520
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2521
|
+
offering?: Maybe<CcpOffering>;
|
|
2522
|
+
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
2523
|
+
};
|
|
2524
|
+
export declare type CcpEntitlementOfferingTransitionListPriceForOrderWithDefaultsArgs = {
|
|
2525
|
+
filter?: InputMaybe<CcpOrderDefaultsInput>;
|
|
2526
|
+
};
|
|
2511
2527
|
export declare type CcpEntitlementPreDunning = CommerceEntitlementPreDunning & {
|
|
2512
2528
|
__typename?: 'CcpEntitlementPreDunning';
|
|
2513
2529
|
firstPreDunningEndTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -2557,6 +2573,13 @@ export declare type CcpInvoiceGroupExperienceCapabilities = CommerceInvoiceGroup
|
|
|
2557
2573
|
configurePayment?: Maybe<CcpExperienceCapability>;
|
|
2558
2574
|
configurePaymentV2?: Maybe<CcpConfigurePaymentMethodExperienceCapability>;
|
|
2559
2575
|
};
|
|
2576
|
+
export declare type CcpListPriceEstimate = {
|
|
2577
|
+
__typename?: 'CcpListPriceEstimate';
|
|
2578
|
+
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
2579
|
+
item?: Maybe<CcpPricingPlanItem>;
|
|
2580
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
2581
|
+
totalPrice?: Maybe<Scalars['Float']['output']>;
|
|
2582
|
+
};
|
|
2560
2583
|
export declare type CcpManageEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
2561
2584
|
__typename?: 'CcpManageEntitlementExperienceCapability';
|
|
2562
2585
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2662,6 +2685,11 @@ export declare type CcpOrder = Node & {
|
|
|
2662
2685
|
id: Scalars['ID']['output'];
|
|
2663
2686
|
itemId?: Maybe<Scalars['ID']['output']>;
|
|
2664
2687
|
};
|
|
2688
|
+
export declare type CcpOrderDefaultsInput = {
|
|
2689
|
+
country?: InputMaybe<Scalars['String']['input']>;
|
|
2690
|
+
currentEntitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
2691
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
2692
|
+
};
|
|
2665
2693
|
export declare type CcpPricingPlan = CommercePricingPlan & Node & {
|
|
2666
2694
|
__typename?: 'CcpPricingPlan';
|
|
2667
2695
|
activatedWithReason?: Maybe<CcpActivationReason>;
|
|
@@ -2833,6 +2861,7 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
2833
2861
|
export declare type CcpTrial = CommerceTrial & {
|
|
2834
2862
|
__typename?: 'CcpTrial';
|
|
2835
2863
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
2864
|
+
listPriceEstimates?: Maybe<Array<Maybe<CcpListPriceEstimate>>>;
|
|
2836
2865
|
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
2837
2866
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
2838
2867
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -2986,9 +3015,11 @@ export declare type CommerceEntitlementExperienceCapabilities = {
|
|
|
2986
3015
|
};
|
|
2987
3016
|
export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2988
3017
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3018
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2989
3019
|
};
|
|
2990
3020
|
export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
2991
3021
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3022
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
2992
3023
|
};
|
|
2993
3024
|
export declare type CommerceEntitlementFilter = {
|
|
2994
3025
|
AND?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
@@ -4334,6 +4365,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
4334
4365
|
booleanComparator: CompassCriteriaBooleanComparatorOptions;
|
|
4335
4366
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
4336
4367
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4368
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4337
4369
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4338
4370
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4339
4371
|
weight: Scalars['Int']['input'];
|
|
@@ -4342,12 +4374,14 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
4342
4374
|
collectionComparator: CompassCriteriaCollectionComparatorOptions;
|
|
4343
4375
|
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
4344
4376
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4377
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4345
4378
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4346
4379
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4347
4380
|
weight: Scalars['Int']['input'];
|
|
4348
4381
|
};
|
|
4349
4382
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
4350
4383
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4384
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4351
4385
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4352
4386
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
4353
4387
|
numberComparatorValue: Scalars['Float']['input'];
|
|
@@ -4356,6 +4390,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
4356
4390
|
};
|
|
4357
4391
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
4358
4392
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4393
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4359
4394
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
4360
4395
|
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
4361
4396
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4364,6 +4399,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
4364
4399
|
};
|
|
4365
4400
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
4366
4401
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4402
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4367
4403
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4368
4404
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4369
4405
|
weight: Scalars['Int']['input'];
|
|
@@ -4618,6 +4654,7 @@ export declare type CompassCustomFieldInput = {
|
|
|
4618
4654
|
userField?: InputMaybe<CompassCustomUserFieldInput>;
|
|
4619
4655
|
};
|
|
4620
4656
|
export declare type CompassCustomFieldScorecardCriteria = {
|
|
4657
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4621
4658
|
id: Scalars['ID']['output'];
|
|
4622
4659
|
name?: Maybe<Scalars['String']['output']>;
|
|
4623
4660
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5131,6 +5168,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
5131
5168
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
5132
5169
|
booleanComparatorValue?: Maybe<Scalars['Boolean']['output']>;
|
|
5133
5170
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
5171
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5134
5172
|
id: Scalars['ID']['output'];
|
|
5135
5173
|
name?: Maybe<Scalars['String']['output']>;
|
|
5136
5174
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5146,6 +5184,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
5146
5184
|
collectionComparatorValue: Array<Scalars['ID']['output']>;
|
|
5147
5185
|
customFieldDefinition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
|
|
5148
5186
|
customFieldDefinitionId: Scalars['ID']['output'];
|
|
5187
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5149
5188
|
id: Scalars['ID']['output'];
|
|
5150
5189
|
name?: Maybe<Scalars['String']['output']>;
|
|
5151
5190
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5158,6 +5197,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCr
|
|
|
5158
5197
|
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
5159
5198
|
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
5160
5199
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
5200
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5161
5201
|
id: Scalars['ID']['output'];
|
|
5162
5202
|
name?: Maybe<Scalars['String']['output']>;
|
|
5163
5203
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
@@ -5173,6 +5213,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
5173
5213
|
__typename?: 'CompassHasCustomSingleSelectFieldScorecardCriteria';
|
|
5174
5214
|
customFieldDefinition?: Maybe<CompassCustomSingleSelectFieldDefinition>;
|
|
5175
5215
|
customFieldDefinitionId: Scalars['ID']['output'];
|
|
5216
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5176
5217
|
id: Scalars['ID']['output'];
|
|
5177
5218
|
membershipComparator?: Maybe<CompassCriteriaMembershipComparatorOptions>;
|
|
5178
5219
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
@@ -5187,6 +5228,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardC
|
|
|
5187
5228
|
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
5188
5229
|
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
5189
5230
|
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
5231
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5190
5232
|
id: Scalars['ID']['output'];
|
|
5191
5233
|
name?: Maybe<Scalars['String']['output']>;
|
|
5192
5234
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5198,6 +5240,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaS
|
|
|
5198
5240
|
};
|
|
5199
5241
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
5200
5242
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
5243
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5201
5244
|
id: Scalars['ID']['output'];
|
|
5202
5245
|
name?: Maybe<Scalars['String']['output']>;
|
|
5203
5246
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5209,6 +5252,7 @@ export declare type CompassHasDescriptionScorecardCriteriaScorecardCriteriaScore
|
|
|
5209
5252
|
};
|
|
5210
5253
|
export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
5211
5254
|
__typename?: 'CompassHasFieldScorecardCriteria';
|
|
5255
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5212
5256
|
fieldDefinition: CompassFieldDefinition;
|
|
5213
5257
|
id: Scalars['ID']['output'];
|
|
5214
5258
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -5221,6 +5265,7 @@ export declare type CompassHasFieldScorecardCriteriaScorecardCriteriaScoreArgs =
|
|
|
5221
5265
|
};
|
|
5222
5266
|
export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria & {
|
|
5223
5267
|
__typename?: 'CompassHasLinkScorecardCriteria';
|
|
5268
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5224
5269
|
id: Scalars['ID']['output'];
|
|
5225
5270
|
linkType: CompassLinkType;
|
|
5226
5271
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -5238,6 +5283,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
5238
5283
|
automaticallyCreateMetricSources?: Maybe<Scalars['Boolean']['output']>;
|
|
5239
5284
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
5240
5285
|
comparatorValue: Scalars['Float']['output'];
|
|
5286
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5241
5287
|
id: Scalars['ID']['output'];
|
|
5242
5288
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
5243
5289
|
metricDefinitionId: Scalars['ID']['output'];
|
|
@@ -5251,6 +5297,7 @@ export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScore
|
|
|
5251
5297
|
};
|
|
5252
5298
|
export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria & {
|
|
5253
5299
|
__typename?: 'CompassHasOwnerScorecardCriteria';
|
|
5300
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5254
5301
|
id: Scalars['ID']['output'];
|
|
5255
5302
|
name?: Maybe<Scalars['String']['output']>;
|
|
5256
5303
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -5376,6 +5423,19 @@ export declare enum CompassLifecycleEventStage {
|
|
|
5376
5423
|
PreRelease = "PRE_RELEASE",
|
|
5377
5424
|
Production = "PRODUCTION"
|
|
5378
5425
|
}
|
|
5426
|
+
export declare type CompassLifecycleFilter = {
|
|
5427
|
+
__typename?: 'CompassLifecycleFilter';
|
|
5428
|
+
operator: Scalars['String']['output'];
|
|
5429
|
+
values?: Maybe<Array<CompassLifecycleEventStage>>;
|
|
5430
|
+
};
|
|
5431
|
+
export declare type CompassLifecycleFilterInput = {
|
|
5432
|
+
operator: CompassLifecycleFilterOperator;
|
|
5433
|
+
values: Array<CompassLifecycleEventStage>;
|
|
5434
|
+
};
|
|
5435
|
+
export declare enum CompassLifecycleFilterOperator {
|
|
5436
|
+
Nor = "NOR",
|
|
5437
|
+
Or = "OR"
|
|
5438
|
+
}
|
|
5379
5439
|
export declare type CompassLink = {
|
|
5380
5440
|
__typename?: 'CompassLink';
|
|
5381
5441
|
eventSources?: Maybe<Array<EventSource>>;
|
|
@@ -5873,6 +5933,7 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5873
5933
|
__typename?: 'CompassScorecardAutomaticApplicationModel';
|
|
5874
5934
|
applicationType: Scalars['String']['output'];
|
|
5875
5935
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
5936
|
+
componentLifecycleStages?: Maybe<CompassLifecycleFilter>;
|
|
5876
5937
|
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5877
5938
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
5878
5939
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
@@ -5886,6 +5947,7 @@ export declare type CompassScorecardConnection = {
|
|
|
5886
5947
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
5887
5948
|
};
|
|
5888
5949
|
export declare type CompassScorecardCriteria = {
|
|
5950
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5889
5951
|
id: Scalars['ID']['output'];
|
|
5890
5952
|
name?: Maybe<Scalars['String']['output']>;
|
|
5891
5953
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -6492,6 +6554,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6492
6554
|
booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
|
|
6493
6555
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6494
6556
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6557
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6495
6558
|
id: Scalars['ID']['input'];
|
|
6496
6559
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6497
6560
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -6501,6 +6564,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6501
6564
|
collectionComparator?: InputMaybe<CompassCriteriaCollectionComparatorOptions>;
|
|
6502
6565
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6503
6566
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6567
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6504
6568
|
id: Scalars['ID']['input'];
|
|
6505
6569
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6506
6570
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -6508,6 +6572,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6508
6572
|
};
|
|
6509
6573
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
6510
6574
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6575
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6511
6576
|
id: Scalars['ID']['input'];
|
|
6512
6577
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6513
6578
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
@@ -6517,6 +6582,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
6517
6582
|
};
|
|
6518
6583
|
export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
6519
6584
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6585
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6520
6586
|
id: Scalars['ID']['input'];
|
|
6521
6587
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
6522
6588
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -6526,6 +6592,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6526
6592
|
};
|
|
6527
6593
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
6528
6594
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6595
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6529
6596
|
id: Scalars['ID']['input'];
|
|
6530
6597
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6531
6598
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -15385,17 +15452,20 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
15385
15452
|
name: Scalars['String']['input'];
|
|
15386
15453
|
};
|
|
15387
15454
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
15455
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15388
15456
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15389
15457
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15390
15458
|
weight: Scalars['Int']['input'];
|
|
15391
15459
|
};
|
|
15392
15460
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
15461
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15393
15462
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
15394
15463
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15395
15464
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15396
15465
|
weight: Scalars['Int']['input'];
|
|
15397
15466
|
};
|
|
15398
15467
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
15468
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15399
15469
|
linkType: CompassLinkType;
|
|
15400
15470
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15401
15471
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -15407,11 +15477,13 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
15407
15477
|
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15408
15478
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
15409
15479
|
comparatorValue: Scalars['Float']['input'];
|
|
15480
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15410
15481
|
metricDefinitionId: Scalars['ID']['input'];
|
|
15411
15482
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15412
15483
|
weight: Scalars['Int']['input'];
|
|
15413
15484
|
};
|
|
15414
15485
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
15486
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
15415
15487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15416
15488
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15417
15489
|
weight: Scalars['Int']['input'];
|
|
@@ -15446,6 +15518,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
15446
15518
|
};
|
|
15447
15519
|
export declare type CreateCompassScorecardInput = {
|
|
15448
15520
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15521
|
+
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
15449
15522
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15450
15523
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15451
15524
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -36551,9 +36624,11 @@ export declare type HamsEntitlementExperienceCapabilities = CommerceEntitlementE
|
|
|
36551
36624
|
};
|
|
36552
36625
|
export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
36553
36626
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
36627
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
36554
36628
|
};
|
|
36555
36629
|
export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
36556
36630
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
36631
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
36557
36632
|
};
|
|
36558
36633
|
export declare type HamsEntitlementMigrationEvaluation = {
|
|
36559
36634
|
__typename?: 'HamsEntitlementMigrationEvaluation';
|
|
@@ -39506,6 +39581,11 @@ export declare type JiraAttachmentBackground = JiraBackground & {
|
|
|
39506
39581
|
attachment?: Maybe<JiraAttachment>;
|
|
39507
39582
|
entityId?: Maybe<Scalars['ID']['output']>;
|
|
39508
39583
|
};
|
|
39584
|
+
export declare type JiraAttachmentByAriResult = {
|
|
39585
|
+
__typename?: 'JiraAttachmentByAriResult';
|
|
39586
|
+
attachment?: Maybe<JiraPlatformAttachment>;
|
|
39587
|
+
error?: Maybe<QueryError>;
|
|
39588
|
+
};
|
|
39509
39589
|
export declare type JiraAttachmentConnection = {
|
|
39510
39590
|
__typename?: 'JiraAttachmentConnection';
|
|
39511
39591
|
edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
|
|
@@ -41286,6 +41366,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
41286
41366
|
errors?: Maybe<Array<MutationError>>;
|
|
41287
41367
|
success: Scalars['Boolean']['output'];
|
|
41288
41368
|
};
|
|
41369
|
+
export declare type JiraCreateJourneyConfigurationInput = {
|
|
41370
|
+
name: Scalars['String']['input'];
|
|
41371
|
+
parentIssue: JiraJourneyParentIssueInput;
|
|
41372
|
+
trigger: JiraJourneyTriggerInput;
|
|
41373
|
+
};
|
|
41374
|
+
export declare type JiraCreateJourneyConfigurationPayload = Payload & {
|
|
41375
|
+
__typename?: 'JiraCreateJourneyConfigurationPayload';
|
|
41376
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41377
|
+
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
41378
|
+
success: Scalars['Boolean']['output'];
|
|
41379
|
+
};
|
|
41289
41380
|
export declare type JiraCreateNavigationItemPayload = Payload & {
|
|
41290
41381
|
__typename?: 'JiraCreateNavigationItemPayload';
|
|
41291
41382
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -43108,6 +43199,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43108
43199
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
43109
43200
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
43110
43201
|
priorityField?: Maybe<JiraPriorityField>;
|
|
43202
|
+
projectField?: Maybe<JiraProjectField>;
|
|
43111
43203
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
43112
43204
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
43113
43205
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -44403,6 +44495,7 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
44403
44495
|
}
|
|
44404
44496
|
export declare type JiraIssueWithScenario = {
|
|
44405
44497
|
__typename?: 'JiraIssueWithScenario';
|
|
44498
|
+
errors?: Maybe<Array<QueryError>>;
|
|
44406
44499
|
scenarioIssueLike?: Maybe<JiraScenarioIssueLike>;
|
|
44407
44500
|
};
|
|
44408
44501
|
export declare enum JiraIteration {
|
|
@@ -44450,6 +44543,54 @@ export declare type JiraJqlHistoryEdge = {
|
|
|
44450
44543
|
__typename?: 'JiraJQLHistoryEdge';
|
|
44451
44544
|
node?: Maybe<JiraJqlHistory>;
|
|
44452
44545
|
};
|
|
44546
|
+
export declare type JiraJourneyConfiguration = Node & {
|
|
44547
|
+
__typename?: 'JiraJourneyConfiguration';
|
|
44548
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44549
|
+
createdBy?: Maybe<User>;
|
|
44550
|
+
id: Scalars['ID']['output'];
|
|
44551
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
44552
|
+
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
44553
|
+
trigger?: Maybe<JiraJourneyTrigger>;
|
|
44554
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44555
|
+
updatedBy?: Maybe<User>;
|
|
44556
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
44557
|
+
};
|
|
44558
|
+
export declare type JiraJourneyConfigurationConnection = {
|
|
44559
|
+
__typename?: 'JiraJourneyConfigurationConnection';
|
|
44560
|
+
edges?: Maybe<Array<Maybe<JiraJourneyConfigurationEdge>>>;
|
|
44561
|
+
errors?: Maybe<Array<QueryError>>;
|
|
44562
|
+
pageInfo: PageInfo;
|
|
44563
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44564
|
+
};
|
|
44565
|
+
export declare type JiraJourneyConfigurationEdge = {
|
|
44566
|
+
__typename?: 'JiraJourneyConfigurationEdge';
|
|
44567
|
+
cursor: Scalars['String']['output'];
|
|
44568
|
+
node?: Maybe<JiraJourneyConfiguration>;
|
|
44569
|
+
};
|
|
44570
|
+
export declare type JiraJourneyParentIssue = {
|
|
44571
|
+
__typename?: 'JiraJourneyParentIssue';
|
|
44572
|
+
projectId: Scalars['ID']['output'];
|
|
44573
|
+
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
44574
|
+
};
|
|
44575
|
+
export declare type JiraJourneyParentIssueInput = {
|
|
44576
|
+
projectId: Scalars['ID']['input'];
|
|
44577
|
+
type: JiraJourneyParentIssueType;
|
|
44578
|
+
value: Scalars['String']['input'];
|
|
44579
|
+
};
|
|
44580
|
+
export declare enum JiraJourneyParentIssueType {
|
|
44581
|
+
Request = "REQUEST"
|
|
44582
|
+
}
|
|
44583
|
+
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
44584
|
+
export declare type JiraJourneyTrigger = {
|
|
44585
|
+
__typename?: 'JiraJourneyTrigger';
|
|
44586
|
+
type: JiraJourneyTriggerType;
|
|
44587
|
+
};
|
|
44588
|
+
export declare type JiraJourneyTriggerInput = {
|
|
44589
|
+
type: JiraJourneyTriggerType;
|
|
44590
|
+
};
|
|
44591
|
+
export declare enum JiraJourneyTriggerType {
|
|
44592
|
+
ParentIssueCreated = "PARENT_ISSUE_CREATED"
|
|
44593
|
+
}
|
|
44453
44594
|
export declare enum JiraJqlAutocompleteType {
|
|
44454
44595
|
Basic = "BASIC",
|
|
44455
44596
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -45477,6 +45618,7 @@ export declare type JiraMutation = {
|
|
|
45477
45618
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
45478
45619
|
createIssue?: Maybe<JiraIssueCreatePayload>;
|
|
45479
45620
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
45621
|
+
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
45480
45622
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
45481
45623
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
45482
45624
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
@@ -45687,6 +45829,10 @@ export declare type JiraMutationCreateIssueLinksArgs = {
|
|
|
45687
45829
|
cloudId: Scalars['ID']['input'];
|
|
45688
45830
|
input: JiraBulkCreateIssueLinksInput;
|
|
45689
45831
|
};
|
|
45832
|
+
export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
45833
|
+
cloudId: Scalars['ID']['input'];
|
|
45834
|
+
input: JiraCreateJourneyConfigurationInput;
|
|
45835
|
+
};
|
|
45690
45836
|
export declare type JiraMutationCreateJiraVersionArgs = {
|
|
45691
45837
|
input: JiraVersionCreateMutationInput;
|
|
45692
45838
|
};
|
|
@@ -47798,6 +47944,7 @@ export declare type JiraQuery = {
|
|
|
47798
47944
|
addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
|
|
47799
47945
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
47800
47946
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
47947
|
+
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
47801
47948
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
47802
47949
|
allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
|
|
47803
47950
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -47807,6 +47954,7 @@ export declare type JiraQuery = {
|
|
|
47807
47954
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
47808
47955
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
47809
47956
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
47957
|
+
attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
|
|
47810
47958
|
attachmentSearch?: Maybe<JiraAttachmentConnection>;
|
|
47811
47959
|
attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
|
|
47812
47960
|
attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47886,6 +48034,7 @@ export declare type JiraQuery = {
|
|
|
47886
48034
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
47887
48035
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
47888
48036
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
48037
|
+
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
47889
48038
|
jiraProject?: Maybe<JiraProject>;
|
|
47890
48039
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
47891
48040
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -47985,6 +48134,10 @@ export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
|
|
|
47985
48134
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
47986
48135
|
cloudId: Scalars['ID']['input'];
|
|
47987
48136
|
};
|
|
48137
|
+
export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
|
|
48138
|
+
cloudId: Scalars['ID']['input'];
|
|
48139
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48140
|
+
};
|
|
47988
48141
|
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
47989
48142
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47990
48143
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48036,6 +48189,9 @@ export declare type JiraQueryAtlassianIntelligenceActionArgs = {
|
|
|
48036
48189
|
export declare type JiraQueryAttachmentByAriArgs = {
|
|
48037
48190
|
attachmentAri: Scalars['ID']['input'];
|
|
48038
48191
|
};
|
|
48192
|
+
export declare type JiraQueryAttachmentByAriV2Args = {
|
|
48193
|
+
attachmentAri: Scalars['ID']['input'];
|
|
48194
|
+
};
|
|
48039
48195
|
export declare type JiraQueryAttachmentSearchArgs = {
|
|
48040
48196
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48041
48197
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48400,6 +48556,10 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
48400
48556
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48401
48557
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48402
48558
|
};
|
|
48559
|
+
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
48560
|
+
cloudId: Scalars['ID']['input'];
|
|
48561
|
+
id: Scalars['ID']['input'];
|
|
48562
|
+
};
|
|
48403
48563
|
export declare type JiraQueryJiraProjectArgs = {
|
|
48404
48564
|
id: Scalars['ID']['input'];
|
|
48405
48565
|
};
|
|
@@ -51213,6 +51373,7 @@ export declare type JiraSubscription = {
|
|
|
51213
51373
|
__typename?: 'JiraSubscription';
|
|
51214
51374
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
51215
51375
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
51376
|
+
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
51216
51377
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
51217
51378
|
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
51218
51379
|
onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
|
|
@@ -51237,6 +51398,10 @@ export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
|
51237
51398
|
cloudId: Scalars['ID']['input'];
|
|
51238
51399
|
projectIds: Array<Scalars['String']['input']>;
|
|
51239
51400
|
};
|
|
51401
|
+
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsV2Args = {
|
|
51402
|
+
cloudId: Scalars['ID']['input'];
|
|
51403
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
51404
|
+
};
|
|
51240
51405
|
export declare type JiraSubscriptionOnAttachmentDeletedByProjectsArgs = {
|
|
51241
51406
|
cloudId: Scalars['ID']['input'];
|
|
51242
51407
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -53784,10 +53949,14 @@ export declare type JsmChatSlackConfig = {
|
|
|
53784
53949
|
export declare type JsmChatSubscription = {
|
|
53785
53950
|
__typename?: 'JsmChatSubscription';
|
|
53786
53951
|
onConversationUpdate?: Maybe<JsmChatConversationUpdateSubscriptionPayload>;
|
|
53952
|
+
updateConversation?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
|
|
53787
53953
|
};
|
|
53788
53954
|
export declare type JsmChatSubscriptionOnConversationUpdateArgs = {
|
|
53789
53955
|
conversationId: Scalars['ID']['input'];
|
|
53790
53956
|
};
|
|
53957
|
+
export declare type JsmChatSubscriptionUpdateConversationArgs = {
|
|
53958
|
+
conversationId: Scalars['ID']['input'];
|
|
53959
|
+
};
|
|
53791
53960
|
export declare type JsmChatSubscriptionEstablishedPayload = {
|
|
53792
53961
|
__typename?: 'JsmChatSubscriptionEstablishedPayload';
|
|
53793
53962
|
id: Scalars['ID']['output'];
|
|
@@ -53853,6 +54022,27 @@ export declare type JsmChatUpdatedProjectSettings = {
|
|
|
53853
54022
|
requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
|
|
53854
54023
|
requesterThreadMessageDisabled: Scalars['Boolean']['input'];
|
|
53855
54024
|
};
|
|
54025
|
+
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
54026
|
+
export declare enum JsmChatWebConversationMessageContentType {
|
|
54027
|
+
Adf = "ADF"
|
|
54028
|
+
}
|
|
54029
|
+
export declare type JsmChatWebConversationUpdateQueryError = {
|
|
54030
|
+
__typename?: 'JsmChatWebConversationUpdateQueryError';
|
|
54031
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
54032
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
54033
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
54034
|
+
};
|
|
54035
|
+
export declare type JsmChatWebConversationUpdateSubscriptionPayload = JsmChatMessageEdge | JsmChatWebConversationUpdateQueryError | JsmChatWebSubscriptionEstablishedPayload;
|
|
54036
|
+
export declare enum JsmChatWebConversationUserRole {
|
|
54037
|
+
JsmAgent = "JSM_Agent",
|
|
54038
|
+
Participant = "Participant",
|
|
54039
|
+
Reporter = "Reporter",
|
|
54040
|
+
VirtualAgent = "VirtualAgent"
|
|
54041
|
+
}
|
|
54042
|
+
export declare type JsmChatWebSubscriptionEstablishedPayload = {
|
|
54043
|
+
__typename?: 'JsmChatWebSubscriptionEstablishedPayload';
|
|
54044
|
+
id: Scalars['ID']['output'];
|
|
54045
|
+
};
|
|
53856
54046
|
export declare type JswAvailableCardLayoutField = Node & {
|
|
53857
54047
|
__typename?: 'JswAvailableCardLayoutField';
|
|
53858
54048
|
fieldId: Scalars['ID']['output'];
|
|
@@ -54194,6 +54384,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
54194
54384
|
entityReference: Scalars['String']['output'];
|
|
54195
54385
|
id: Scalars['ID']['output'];
|
|
54196
54386
|
name: Scalars['String']['output'];
|
|
54387
|
+
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
54197
54388
|
url: Scalars['String']['output'];
|
|
54198
54389
|
};
|
|
54199
54390
|
export declare type KnowledgeBaseSourceEdge = {
|
|
@@ -54201,6 +54392,7 @@ export declare type KnowledgeBaseSourceEdge = {
|
|
|
54201
54392
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54202
54393
|
node: KnowledgeBaseSource;
|
|
54203
54394
|
};
|
|
54395
|
+
export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionResponse | QueryError;
|
|
54204
54396
|
export declare type KnowledgeBaseSources = {
|
|
54205
54397
|
__typename?: 'KnowledgeBaseSources';
|
|
54206
54398
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
@@ -54419,16 +54611,6 @@ export declare enum KnowledgeDiscoveryEntityType {
|
|
|
54419
54611
|
Topic = "TOPIC",
|
|
54420
54612
|
User = "USER"
|
|
54421
54613
|
}
|
|
54422
|
-
export declare type KnowledgeDiscoveryExtendedTopic = KnowledgeDiscoveryEntity & {
|
|
54423
|
-
__typename?: 'KnowledgeDiscoveryExtendedTopic';
|
|
54424
|
-
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
54425
|
-
id: Scalars['ID']['output'];
|
|
54426
|
-
name: Scalars['String']['output'];
|
|
54427
|
-
summary: Scalars['String']['output'];
|
|
54428
|
-
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
54429
|
-
updatedAt: Scalars['String']['output'];
|
|
54430
|
-
};
|
|
54431
|
-
export declare type KnowledgeDiscoveryExtendedTopicResult = KnowledgeDiscoveryExtendedTopic | QueryError;
|
|
54432
54614
|
export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
54433
54615
|
__typename?: 'KnowledgeDiscoveryJiraProject';
|
|
54434
54616
|
id: Scalars['ID']['output'];
|
|
@@ -54493,7 +54675,6 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
54493
54675
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
54494
54676
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
54495
54677
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
54496
|
-
extendedTopic?: Maybe<KnowledgeDiscoveryExtendedTopicResult>;
|
|
54497
54678
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
54498
54679
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
54499
54680
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
@@ -54536,12 +54717,6 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
|
54536
54717
|
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
54537
54718
|
workspaceId: Scalars['String']['input'];
|
|
54538
54719
|
};
|
|
54539
|
-
export declare type KnowledgeDiscoveryQueryApiExtendedTopicArgs = {
|
|
54540
|
-
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
54541
|
-
id: Scalars['String']['input'];
|
|
54542
|
-
summaryLength?: InputMaybe<KnowledgeDiscoverySummaryLength>;
|
|
54543
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
54544
|
-
};
|
|
54545
54720
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
54546
54721
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54547
54722
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54589,11 +54764,6 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
54589
54764
|
transformedQuery: Scalars['String']['output'];
|
|
54590
54765
|
};
|
|
54591
54766
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
54592
|
-
export declare enum KnowledgeDiscoverySummaryLength {
|
|
54593
|
-
Large = "LARGE",
|
|
54594
|
-
Medium = "MEDIUM",
|
|
54595
|
-
Small = "SMALL"
|
|
54596
|
-
}
|
|
54597
54767
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
54598
54768
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
54599
54769
|
description: Scalars['String']['output'];
|
|
@@ -55984,6 +56154,11 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
|
55984
56154
|
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
55985
56155
|
login: Scalars['String']['output'];
|
|
55986
56156
|
};
|
|
56157
|
+
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
56158
|
+
Cloud = "CLOUD",
|
|
56159
|
+
Datacenter = "DATACENTER",
|
|
56160
|
+
Server = "SERVER"
|
|
56161
|
+
}
|
|
55987
56162
|
export declare type MarketplaceStoreCategoryHeroSection = {
|
|
55988
56163
|
__typename?: 'MarketplaceStoreCategoryHeroSection';
|
|
55989
56164
|
backgroundColor: Scalars['String']['output'];
|
|
@@ -56036,6 +56211,20 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
|
56036
56211
|
title: Scalars['String']['output'];
|
|
56037
56212
|
};
|
|
56038
56213
|
export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
|
|
56214
|
+
export declare type MarketplaceStoreCurrentUserReviewResponse = {
|
|
56215
|
+
__typename?: 'MarketplaceStoreCurrentUserReviewResponse';
|
|
56216
|
+
author?: Maybe<MarketplaceStoreReviewAuthor>;
|
|
56217
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
56218
|
+
helpfulVotes?: Maybe<Scalars['Int']['output']>;
|
|
56219
|
+
hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
56220
|
+
id: Scalars['ID']['output'];
|
|
56221
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
56222
|
+
review?: Maybe<Scalars['String']['output']>;
|
|
56223
|
+
stars?: Maybe<Scalars['Int']['output']>;
|
|
56224
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
56225
|
+
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
56226
|
+
userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
|
|
56227
|
+
};
|
|
56039
56228
|
export declare type MarketplaceStoreDeveloperSpace = {
|
|
56040
56229
|
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
56041
56230
|
name: Scalars['String']['output'];
|
|
@@ -56068,6 +56257,10 @@ export declare enum MarketplaceStoreEditionType {
|
|
|
56068
56257
|
export declare type MarketplaceStoreEditionsInput = {
|
|
56069
56258
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
56070
56259
|
};
|
|
56260
|
+
export declare type MarketplaceStoreGeoIpResponse = {
|
|
56261
|
+
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
56262
|
+
countryCode: Scalars['String']['output'];
|
|
56263
|
+
};
|
|
56071
56264
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
56072
56265
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
56073
56266
|
description: Scalars['String']['output'];
|
|
@@ -56298,14 +56491,23 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
|
|
|
56298
56491
|
};
|
|
56299
56492
|
export declare type MarketplaceStoreQueryApi = {
|
|
56300
56493
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
56494
|
+
appReviews: MarketplaceStoreReviewsResponse;
|
|
56301
56495
|
category: MarketplaceStoreCategoryResponse;
|
|
56302
56496
|
collection: MarketplaceStoreCollectionResponse;
|
|
56303
56497
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
56304
56498
|
editions: Array<MarketplaceStoreEdition>;
|
|
56499
|
+
geoip: MarketplaceStoreGeoIpResponse;
|
|
56305
56500
|
homePage: MarketplaceStoreHomePageResponse;
|
|
56306
56501
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
56502
|
+
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
56307
56503
|
partner: MarketplaceStorePartnerResponse;
|
|
56308
56504
|
};
|
|
56505
|
+
export declare type MarketplaceStoreQueryApiAppReviewsArgs = {
|
|
56506
|
+
appKey: Scalars['String']['input'];
|
|
56507
|
+
filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
|
|
56508
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
56509
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
56510
|
+
};
|
|
56309
56511
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
56310
56512
|
slug: Scalars['String']['input'];
|
|
56311
56513
|
};
|
|
@@ -56321,10 +56523,47 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
56321
56523
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
56322
56524
|
id: Scalars['ID']['input'];
|
|
56323
56525
|
};
|
|
56526
|
+
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
56527
|
+
appKey: Scalars['String']['input'];
|
|
56528
|
+
};
|
|
56324
56529
|
export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
56325
56530
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
56326
56531
|
vendorId: Scalars['ID']['input'];
|
|
56327
56532
|
};
|
|
56533
|
+
export declare type MarketplaceStoreReviewAuthor = {
|
|
56534
|
+
__typename?: 'MarketplaceStoreReviewAuthor';
|
|
56535
|
+
id: Scalars['ID']['output'];
|
|
56536
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
56537
|
+
profileImage?: Maybe<Scalars['URL']['output']>;
|
|
56538
|
+
profileLink?: Maybe<Scalars['URL']['output']>;
|
|
56539
|
+
};
|
|
56540
|
+
export declare type MarketplaceStoreReviewFilterInput = {
|
|
56541
|
+
hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
56542
|
+
sort?: InputMaybe<MarketplaceStoreReviewsSorting>;
|
|
56543
|
+
};
|
|
56544
|
+
export declare type MarketplaceStoreReviewNode = {
|
|
56545
|
+
__typename?: 'MarketplaceStoreReviewNode';
|
|
56546
|
+
author?: Maybe<MarketplaceStoreReviewAuthor>;
|
|
56547
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
56548
|
+
helpfulVotes?: Maybe<Scalars['Int']['output']>;
|
|
56549
|
+
hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
|
|
56550
|
+
id: Scalars['ID']['output'];
|
|
56551
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
56552
|
+
review?: Maybe<Scalars['String']['output']>;
|
|
56553
|
+
stars?: Maybe<Scalars['Int']['output']>;
|
|
56554
|
+
totalVotes?: Maybe<Scalars['Int']['output']>;
|
|
56555
|
+
};
|
|
56556
|
+
export declare type MarketplaceStoreReviewsResponse = {
|
|
56557
|
+
__typename?: 'MarketplaceStoreReviewsResponse';
|
|
56558
|
+
averageStars: Scalars['Float']['output'];
|
|
56559
|
+
id: Scalars['ID']['output'];
|
|
56560
|
+
reviews: Array<Maybe<MarketplaceStoreReviewNode>>;
|
|
56561
|
+
totalCount: Scalars['Int']['output'];
|
|
56562
|
+
};
|
|
56563
|
+
export declare enum MarketplaceStoreReviewsSorting {
|
|
56564
|
+
Helpful = "HELPFUL",
|
|
56565
|
+
Recent = "RECENT"
|
|
56566
|
+
}
|
|
56328
56567
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
56329
56568
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
56330
56569
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -56531,6 +56770,24 @@ export declare type MercuryDeleteFocusAreaStatusUpdatePayload = Payload & {
|
|
|
56531
56770
|
errors?: Maybe<Array<MutationError>>;
|
|
56532
56771
|
success: Scalars['Boolean']['output'];
|
|
56533
56772
|
};
|
|
56773
|
+
export declare type MercuryDeleteFocusAreaWorkLinkInput = {
|
|
56774
|
+
cloudId: Scalars['ID']['input'];
|
|
56775
|
+
id: Scalars['ID']['input'];
|
|
56776
|
+
};
|
|
56777
|
+
export declare type MercuryDeleteFocusAreaWorkLinkPayload = Payload & {
|
|
56778
|
+
__typename?: 'MercuryDeleteFocusAreaWorkLinkPayload';
|
|
56779
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56780
|
+
success: Scalars['Boolean']['output'];
|
|
56781
|
+
};
|
|
56782
|
+
export declare type MercuryDeleteFocusAreaWorkLinksInput = {
|
|
56783
|
+
focusAreaAri: Scalars['String']['input'];
|
|
56784
|
+
workAris: Array<Scalars['String']['input']>;
|
|
56785
|
+
};
|
|
56786
|
+
export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
|
|
56787
|
+
__typename?: 'MercuryDeleteFocusAreaWorkLinksPayload';
|
|
56788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56789
|
+
success: Scalars['Boolean']['output'];
|
|
56790
|
+
};
|
|
56534
56791
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
56535
56792
|
cloudId: Scalars['ID']['input'];
|
|
56536
56793
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -56859,6 +57116,15 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
56859
57116
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
56860
57117
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
56861
57118
|
};
|
|
57119
|
+
export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
|
|
57120
|
+
focusAreaAri: Scalars['String']['input'];
|
|
57121
|
+
workAris: Array<Scalars['String']['input']>;
|
|
57122
|
+
};
|
|
57123
|
+
export declare type MercuryLinkAtlassianWorkToFocusAreaPayload = Payload & {
|
|
57124
|
+
__typename?: 'MercuryLinkAtlassianWorkToFocusAreaPayload';
|
|
57125
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57126
|
+
success: Scalars['Boolean']['output'];
|
|
57127
|
+
};
|
|
56862
57128
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
56863
57129
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
56864
57130
|
cloudId: Scalars['ID']['input'];
|
|
@@ -56888,6 +57154,18 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
56888
57154
|
errors?: Maybe<Array<MutationError>>;
|
|
56889
57155
|
success: Scalars['Boolean']['output'];
|
|
56890
57156
|
};
|
|
57157
|
+
export declare type MercuryLinkWorkToFocusAreaInput = {
|
|
57158
|
+
cloudId: Scalars['ID']['input'];
|
|
57159
|
+
externalChildWorkIds: Array<Scalars['ID']['input']>;
|
|
57160
|
+
parentFocusAreaId: Scalars['ID']['input'];
|
|
57161
|
+
providerKey: Scalars['String']['input'];
|
|
57162
|
+
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
57163
|
+
};
|
|
57164
|
+
export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
|
|
57165
|
+
__typename?: 'MercuryLinkWorkToFocusAreaPayload';
|
|
57166
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57167
|
+
success: Scalars['Boolean']['output'];
|
|
57168
|
+
};
|
|
56891
57169
|
export declare type MercuryMediaToken = {
|
|
56892
57170
|
__typename?: 'MercuryMediaToken';
|
|
56893
57171
|
token: Scalars['String']['output'];
|
|
@@ -57015,6 +57293,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
57015
57293
|
__typename?: 'MercuryPortfolio';
|
|
57016
57294
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
57017
57295
|
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
57296
|
+
ari: Scalars['String']['output'];
|
|
57018
57297
|
funding?: Maybe<MercuryPortfolioFunding>;
|
|
57019
57298
|
id: Scalars['ID']['output'];
|
|
57020
57299
|
linkedFocusAreaGoalCount: Scalars['Int']['output'];
|
|
@@ -57126,6 +57405,25 @@ export declare type MercuryProviderMultiResolutionIcon = {
|
|
|
57126
57405
|
small?: Maybe<Scalars['URL']['output']>;
|
|
57127
57406
|
xlarge?: Maybe<Scalars['URL']['output']>;
|
|
57128
57407
|
};
|
|
57408
|
+
export declare type MercuryProviderOrchestrationMutationApi = {
|
|
57409
|
+
__typename?: 'MercuryProviderOrchestrationMutationApi';
|
|
57410
|
+
deleteFocusAreaWorkLink?: Maybe<MercuryDeleteFocusAreaWorkLinkPayload>;
|
|
57411
|
+
deleteFocusAreaWorkLinks?: Maybe<MercuryDeleteFocusAreaWorkLinksPayload>;
|
|
57412
|
+
linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
|
|
57413
|
+
linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
|
|
57414
|
+
};
|
|
57415
|
+
export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinkArgs = {
|
|
57416
|
+
input: MercuryDeleteFocusAreaWorkLinkInput;
|
|
57417
|
+
};
|
|
57418
|
+
export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinksArgs = {
|
|
57419
|
+
input: MercuryDeleteFocusAreaWorkLinksInput;
|
|
57420
|
+
};
|
|
57421
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFocusAreaArgs = {
|
|
57422
|
+
input: MercuryLinkAtlassianWorkToFocusAreaInput;
|
|
57423
|
+
};
|
|
57424
|
+
export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
|
|
57425
|
+
input: MercuryLinkWorkToFocusAreaInput;
|
|
57426
|
+
};
|
|
57129
57427
|
export declare type MercuryProviderUser = {
|
|
57130
57428
|
id: Scalars['ID']['output'];
|
|
57131
57429
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -57874,6 +58172,7 @@ export declare type Mutation = {
|
|
|
57874
58172
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
57875
58173
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
57876
58174
|
mercury?: Maybe<MercuryMutationApi>;
|
|
58175
|
+
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
57877
58176
|
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
57878
58177
|
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
57879
58178
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
@@ -69124,12 +69423,18 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
69124
69423
|
__typename?: 'TrelloPlannerCalendar';
|
|
69125
69424
|
color: Scalars['String']['output'];
|
|
69126
69425
|
enabled: Scalars['Boolean']['output'];
|
|
69426
|
+
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69127
69427
|
id: Scalars['ID']['output'];
|
|
69128
69428
|
objectId: Scalars['ID']['output'];
|
|
69129
69429
|
timezone: Scalars['String']['output'];
|
|
69130
69430
|
title: Scalars['String']['output'];
|
|
69131
69431
|
type: TrelloSupportedPlannerProviders;
|
|
69132
69432
|
};
|
|
69433
|
+
export declare type TrelloPlannerCalendarEventsArgs = {
|
|
69434
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69435
|
+
filter: TrelloPlannerCalendarEventsFilter;
|
|
69436
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69437
|
+
};
|
|
69133
69438
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
69134
69439
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
69135
69440
|
accountType: TrelloSupportedPlannerProviders;
|
|
@@ -69169,14 +69474,66 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
69169
69474
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
69170
69475
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
69171
69476
|
};
|
|
69477
|
+
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
69478
|
+
__typename?: 'TrelloPlannerCalendarEvent';
|
|
69479
|
+
allDay: Scalars['Boolean']['output'];
|
|
69480
|
+
busy: Scalars['Boolean']['output'];
|
|
69481
|
+
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
69482
|
+
createdByTrello: Scalars['Boolean']['output'];
|
|
69483
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
69484
|
+
endAt: Scalars['DateTime']['output'];
|
|
69485
|
+
id: Scalars['ID']['output'];
|
|
69486
|
+
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
69487
|
+
readOnly: Scalars['Boolean']['output'];
|
|
69488
|
+
startAt: Scalars['DateTime']['output'];
|
|
69489
|
+
status: TrelloPlannerCalendarEventStatus;
|
|
69490
|
+
title: Scalars['String']['output'];
|
|
69491
|
+
type: TrelloSupportedPlannerProviders;
|
|
69492
|
+
visibility: TrelloPlannerCalendarEventVisibility;
|
|
69493
|
+
};
|
|
69494
|
+
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
69495
|
+
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
69496
|
+
url: Scalars['String']['output'];
|
|
69497
|
+
};
|
|
69498
|
+
export declare type TrelloPlannerCalendarEventConnection = {
|
|
69499
|
+
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
69500
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventEdge>>;
|
|
69501
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarEvent>>;
|
|
69502
|
+
pageInfo: PageInfo;
|
|
69503
|
+
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
69504
|
+
};
|
|
69505
|
+
export declare type TrelloPlannerCalendarEventEdge = {
|
|
69506
|
+
__typename?: 'TrelloPlannerCalendarEventEdge';
|
|
69507
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69508
|
+
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
69509
|
+
};
|
|
69510
|
+
export declare enum TrelloPlannerCalendarEventStatus {
|
|
69511
|
+
Cancelled = "CANCELLED",
|
|
69512
|
+
Confirmed = "CONFIRMED",
|
|
69513
|
+
Tentative = "TENTATIVE"
|
|
69514
|
+
}
|
|
69515
|
+
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
69516
|
+
Private = "PRIVATE",
|
|
69517
|
+
Public = "PUBLIC"
|
|
69518
|
+
}
|
|
69519
|
+
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
69520
|
+
end: Scalars['DateTime']['input'];
|
|
69521
|
+
start: Scalars['DateTime']['input'];
|
|
69522
|
+
};
|
|
69172
69523
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69173
69524
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
69174
69525
|
color: Scalars['String']['output'];
|
|
69526
|
+
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69175
69527
|
id: Scalars['ID']['output'];
|
|
69176
69528
|
timezone: Scalars['String']['output'];
|
|
69177
69529
|
title: Scalars['String']['output'];
|
|
69178
69530
|
type: TrelloSupportedPlannerProviders;
|
|
69179
69531
|
};
|
|
69532
|
+
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
69533
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69534
|
+
filter?: InputMaybe<TrelloPlannerCalendarEventsFilter>;
|
|
69535
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69536
|
+
};
|
|
69180
69537
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
69181
69538
|
__typename?: 'TrelloPlannerProviderCalendarConnection';
|
|
69182
69539
|
edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
|
|
@@ -70243,12 +70600,14 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
70243
70600
|
name: Scalars['String']['input'];
|
|
70244
70601
|
};
|
|
70245
70602
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
70603
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70246
70604
|
id: Scalars['ID']['input'];
|
|
70247
70605
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
70248
70606
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
70249
70607
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
70250
70608
|
};
|
|
70251
70609
|
export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
70610
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70252
70611
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
70253
70612
|
id: Scalars['ID']['input'];
|
|
70254
70613
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70256,6 +70615,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
|
70256
70615
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
70257
70616
|
};
|
|
70258
70617
|
export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
70618
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70259
70619
|
id: Scalars['ID']['input'];
|
|
70260
70620
|
linkType?: InputMaybe<CompassLinkType>;
|
|
70261
70621
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70268,6 +70628,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
70268
70628
|
automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70269
70629
|
comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
70270
70630
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
70631
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70271
70632
|
id: Scalars['ID']['input'];
|
|
70272
70633
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
70273
70634
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70275,6 +70636,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
70275
70636
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
70276
70637
|
};
|
|
70277
70638
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
70639
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
70278
70640
|
id: Scalars['ID']['input'];
|
|
70279
70641
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
70280
70642
|
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -70300,6 +70662,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
70300
70662
|
};
|
|
70301
70663
|
export declare type UpdateCompassScorecardInput = {
|
|
70302
70664
|
componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
70665
|
+
componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
|
|
70303
70666
|
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
70304
70667
|
componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
70305
70668
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -71392,6 +71755,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
71392
71755
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
71393
71756
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
71394
71757
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
71758
|
+
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
71395
71759
|
};
|
|
71396
71760
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
71397
71761
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71663,6 +72027,11 @@ export declare type WorkSuggestionsPeriscopeTask = {
|
|
|
71663
72027
|
title: Scalars['String']['output'];
|
|
71664
72028
|
url: Scalars['String']['output'];
|
|
71665
72029
|
};
|
|
72030
|
+
export declare type WorkSuggestionsPriority = {
|
|
72031
|
+
__typename?: 'WorkSuggestionsPriority';
|
|
72032
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
72033
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
72034
|
+
};
|
|
71666
72035
|
export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
|
|
71667
72036
|
__typename?: 'WorkSuggestionsPullRequestDraftTask';
|
|
71668
72037
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -71756,6 +72125,21 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
|
71756
72125
|
success: Scalars['Boolean']['output'];
|
|
71757
72126
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
71758
72127
|
};
|
|
72128
|
+
export declare type WorkSuggestionsStuckData = {
|
|
72129
|
+
__typename?: 'WorkSuggestionsStuckData';
|
|
72130
|
+
thresholdInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
72131
|
+
timeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
72132
|
+
};
|
|
72133
|
+
export declare type WorkSuggestionsStuckIssueTask = WorkSuggestionsPeriscopeTask & {
|
|
72134
|
+
__typename?: 'WorkSuggestionsStuckIssueTask';
|
|
72135
|
+
assignee?: Maybe<WorkSuggestionsJiraAssignee>;
|
|
72136
|
+
id: Scalars['String']['output'];
|
|
72137
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
72138
|
+
priority?: Maybe<WorkSuggestionsPriority>;
|
|
72139
|
+
stuckData?: Maybe<WorkSuggestionsStuckData>;
|
|
72140
|
+
title: Scalars['String']['output'];
|
|
72141
|
+
url: Scalars['String']['output'];
|
|
72142
|
+
};
|
|
71759
72143
|
export declare enum WorkSuggestionsTargetAudience {
|
|
71760
72144
|
Me = "ME",
|
|
71761
72145
|
Team = "TEAM"
|