@forge/cli-shared 5.5.2-next.3 → 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.
@@ -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']>>;
@@ -24714,6 +24787,8 @@ export declare type GraphStore = {
24714
24787
  appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
24715
24788
  appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
24716
24789
  appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
24790
+ atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
24791
+ atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
24717
24792
  atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
24718
24793
  atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
24719
24794
  atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
@@ -25103,6 +25178,20 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
25103
25178
  first?: InputMaybe<Scalars['Int']['input']>;
25104
25179
  id: Scalars['ID']['input'];
25105
25180
  };
25181
+ export declare type GraphStoreAtlasGoalHasSubAtlasGoalArgs = {
25182
+ after?: InputMaybe<Scalars['String']['input']>;
25183
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25184
+ first?: InputMaybe<Scalars['Int']['input']>;
25185
+ id: Scalars['ID']['input'];
25186
+ sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
25187
+ };
25188
+ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
25189
+ after?: InputMaybe<Scalars['String']['input']>;
25190
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
25191
+ first?: InputMaybe<Scalars['Int']['input']>;
25192
+ id: Scalars['ID']['input'];
25193
+ sort?: InputMaybe<GraphStoreAtlasGoalHasSubAtlasGoalSortInput>;
25194
+ };
25106
25195
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
25107
25196
  after?: InputMaybe<Scalars['String']['input']>;
25108
25197
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -27429,6 +27518,9 @@ export declare type GraphStoreAtiFilterInput = {
27429
27518
  is?: InputMaybe<Array<Scalars['String']['input']>>;
27430
27519
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
27431
27520
  };
27521
+ export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
27522
+ lastModified?: InputMaybe<GraphStoreSortInput>;
27523
+ };
27432
27524
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
27433
27525
  lastModified?: InputMaybe<GraphStoreSortInput>;
27434
27526
  };
@@ -33125,6 +33217,34 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
33125
33217
  export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
33126
33218
  lastModified?: InputMaybe<GraphStoreSortInput>;
33127
33219
  };
33220
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
33221
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
33222
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
33223
+ pageInfo: PageInfo;
33224
+ };
33225
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge = {
33226
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge';
33227
+ createdAt: Scalars['DateTime']['output'];
33228
+ cursor?: Maybe<Scalars['String']['output']>;
33229
+ id: Scalars['ID']['output'];
33230
+ lastUpdated: Scalars['DateTime']['output'];
33231
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion>;
33232
+ };
33233
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection = HasPageInfo & {
33234
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection';
33235
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge>>>;
33236
+ pageInfo: PageInfo;
33237
+ };
33238
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge = {
33239
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseEdge';
33240
+ createdAt: Scalars['DateTime']['output'];
33241
+ cursor?: Maybe<Scalars['String']['output']>;
33242
+ id: Scalars['ID']['output'];
33243
+ lastUpdated: Scalars['DateTime']['output'];
33244
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion>;
33245
+ };
33246
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseUnion = TownsquareGoal;
33247
+ export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalUnion = TownsquareGoal;
33128
33248
  export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
33129
33249
  __typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection';
33130
33250
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge>>>;
@@ -36504,9 +36624,11 @@ export declare type HamsEntitlementExperienceCapabilities = CommerceEntitlementE
36504
36624
  };
36505
36625
  export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
36506
36626
  offeringKey?: InputMaybe<Scalars['ID']['input']>;
36627
+ offeringName?: InputMaybe<Scalars['String']['input']>;
36507
36628
  };
36508
36629
  export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
36509
36630
  offeringKey?: InputMaybe<Scalars['ID']['input']>;
36631
+ offeringName?: InputMaybe<Scalars['String']['input']>;
36510
36632
  };
36511
36633
  export declare type HamsEntitlementMigrationEvaluation = {
36512
36634
  __typename?: 'HamsEntitlementMigrationEvaluation';
@@ -39459,6 +39581,11 @@ export declare type JiraAttachmentBackground = JiraBackground & {
39459
39581
  attachment?: Maybe<JiraAttachment>;
39460
39582
  entityId?: Maybe<Scalars['ID']['output']>;
39461
39583
  };
39584
+ export declare type JiraAttachmentByAriResult = {
39585
+ __typename?: 'JiraAttachmentByAriResult';
39586
+ attachment?: Maybe<JiraPlatformAttachment>;
39587
+ error?: Maybe<QueryError>;
39588
+ };
39462
39589
  export declare type JiraAttachmentConnection = {
39463
39590
  __typename?: 'JiraAttachmentConnection';
39464
39591
  edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
@@ -41239,6 +41366,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
41239
41366
  errors?: Maybe<Array<MutationError>>;
41240
41367
  success: Scalars['Boolean']['output'];
41241
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
+ };
41242
41380
  export declare type JiraCreateNavigationItemPayload = Payload & {
41243
41381
  __typename?: 'JiraCreateNavigationItemPayload';
41244
41382
  errors?: Maybe<Array<MutationError>>;
@@ -43061,6 +43199,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
43061
43199
  planScenarioValues?: Maybe<JiraScenarioIssueValues>;
43062
43200
  postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
43063
43201
  priorityField?: Maybe<JiraPriorityField>;
43202
+ projectField?: Maybe<JiraProjectField>;
43064
43203
  projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
43065
43204
  resolutionDateField?: Maybe<JiraDateTimePickerField>;
43066
43205
  resolutionField?: Maybe<JiraResolutionField>;
@@ -44356,6 +44495,7 @@ export declare enum JiraIssueViewTimestampDisplayMode {
44356
44495
  }
44357
44496
  export declare type JiraIssueWithScenario = {
44358
44497
  __typename?: 'JiraIssueWithScenario';
44498
+ errors?: Maybe<Array<QueryError>>;
44359
44499
  scenarioIssueLike?: Maybe<JiraScenarioIssueLike>;
44360
44500
  };
44361
44501
  export declare enum JiraIteration {
@@ -44403,6 +44543,54 @@ export declare type JiraJqlHistoryEdge = {
44403
44543
  __typename?: 'JiraJQLHistoryEdge';
44404
44544
  node?: Maybe<JiraJqlHistory>;
44405
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
+ }
44406
44594
  export declare enum JiraJqlAutocompleteType {
44407
44595
  Basic = "BASIC",
44408
44596
  Cascadingoption = "CASCADINGOPTION",
@@ -45430,6 +45618,7 @@ export declare type JiraMutation = {
45430
45618
  createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
45431
45619
  createIssue?: Maybe<JiraIssueCreatePayload>;
45432
45620
  createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
45621
+ createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
45433
45622
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45434
45623
  createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
45435
45624
  createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
@@ -45640,6 +45829,10 @@ export declare type JiraMutationCreateIssueLinksArgs = {
45640
45829
  cloudId: Scalars['ID']['input'];
45641
45830
  input: JiraBulkCreateIssueLinksInput;
45642
45831
  };
45832
+ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
45833
+ cloudId: Scalars['ID']['input'];
45834
+ input: JiraCreateJourneyConfigurationInput;
45835
+ };
45643
45836
  export declare type JiraMutationCreateJiraVersionArgs = {
45644
45837
  input: JiraVersionCreateMutationInput;
45645
45838
  };
@@ -47751,6 +47944,7 @@ export declare type JiraQuery = {
47751
47944
  addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
47752
47945
  advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
47753
47946
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
47947
+ allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
47754
47948
  allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
47755
47949
  allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
47756
47950
  allJiraProjects?: Maybe<JiraProjectConnection>;
@@ -47760,6 +47954,7 @@ export declare type JiraQuery = {
47760
47954
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
47761
47955
  atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
47762
47956
  attachmentByAri?: Maybe<JiraPlatformAttachment>;
47957
+ attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
47763
47958
  attachmentSearch?: Maybe<JiraAttachmentConnection>;
47764
47959
  attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
47765
47960
  attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
@@ -47839,6 +48034,7 @@ export declare type JiraQuery = {
47839
48034
  jiraCalendar?: Maybe<JiraCalendar>;
47840
48035
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
47841
48036
  jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
48037
+ jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
47842
48038
  jiraProject?: Maybe<JiraProject>;
47843
48039
  jiraProjectByKey?: Maybe<JiraProject>;
47844
48040
  jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
@@ -47938,6 +48134,10 @@ export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
47938
48134
  export declare type JiraQueryAllGrantTypeKeysArgs = {
47939
48135
  cloudId: Scalars['ID']['input'];
47940
48136
  };
48137
+ export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
48138
+ cloudId: Scalars['ID']['input'];
48139
+ first?: InputMaybe<Scalars['Int']['input']>;
48140
+ };
47941
48141
  export declare type JiraQueryAllJiraProjectCategoriesArgs = {
47942
48142
  after?: InputMaybe<Scalars['String']['input']>;
47943
48143
  before?: InputMaybe<Scalars['String']['input']>;
@@ -47989,6 +48189,9 @@ export declare type JiraQueryAtlassianIntelligenceActionArgs = {
47989
48189
  export declare type JiraQueryAttachmentByAriArgs = {
47990
48190
  attachmentAri: Scalars['ID']['input'];
47991
48191
  };
48192
+ export declare type JiraQueryAttachmentByAriV2Args = {
48193
+ attachmentAri: Scalars['ID']['input'];
48194
+ };
47992
48195
  export declare type JiraQueryAttachmentSearchArgs = {
47993
48196
  after?: InputMaybe<Scalars['String']['input']>;
47994
48197
  before?: InputMaybe<Scalars['String']['input']>;
@@ -48353,6 +48556,10 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
48353
48556
  first?: InputMaybe<Scalars['Int']['input']>;
48354
48557
  last?: InputMaybe<Scalars['Int']['input']>;
48355
48558
  };
48559
+ export declare type JiraQueryJiraJourneyConfigurationArgs = {
48560
+ cloudId: Scalars['ID']['input'];
48561
+ id: Scalars['ID']['input'];
48562
+ };
48356
48563
  export declare type JiraQueryJiraProjectArgs = {
48357
48564
  id: Scalars['ID']['input'];
48358
48565
  };
@@ -51166,6 +51373,7 @@ export declare type JiraSubscription = {
51166
51373
  __typename?: 'JiraSubscription';
51167
51374
  bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
51168
51375
  onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
51376
+ onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
51169
51377
  onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
51170
51378
  onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
51171
51379
  onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
@@ -51190,6 +51398,10 @@ export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
51190
51398
  cloudId: Scalars['ID']['input'];
51191
51399
  projectIds: Array<Scalars['String']['input']>;
51192
51400
  };
51401
+ export declare type JiraSubscriptionOnAttachmentCreatedByProjectsV2Args = {
51402
+ cloudId: Scalars['ID']['input'];
51403
+ projectIds: Array<Scalars['String']['input']>;
51404
+ };
51193
51405
  export declare type JiraSubscriptionOnAttachmentDeletedByProjectsArgs = {
51194
51406
  cloudId: Scalars['ID']['input'];
51195
51407
  projectIds: Array<Scalars['String']['input']>;
@@ -53531,7 +53743,7 @@ export declare type JsmChatJiraFieldAppendix = {
53531
53743
  export declare type JsmChatMessageConnection = {
53532
53744
  __typename?: 'JsmChatMessageConnection';
53533
53745
  edges?: Maybe<Array<Maybe<JsmChatMessageEdge>>>;
53534
- pageInfo: PageInfo;
53746
+ pageInfo?: Maybe<PageInfo>;
53535
53747
  };
53536
53748
  export declare type JsmChatMessageEdge = {
53537
53749
  __typename?: 'JsmChatMessageEdge';
@@ -53737,10 +53949,14 @@ export declare type JsmChatSlackConfig = {
53737
53949
  export declare type JsmChatSubscription = {
53738
53950
  __typename?: 'JsmChatSubscription';
53739
53951
  onConversationUpdate?: Maybe<JsmChatConversationUpdateSubscriptionPayload>;
53952
+ updateConversation?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
53740
53953
  };
53741
53954
  export declare type JsmChatSubscriptionOnConversationUpdateArgs = {
53742
53955
  conversationId: Scalars['ID']['input'];
53743
53956
  };
53957
+ export declare type JsmChatSubscriptionUpdateConversationArgs = {
53958
+ conversationId: Scalars['ID']['input'];
53959
+ };
53744
53960
  export declare type JsmChatSubscriptionEstablishedPayload = {
53745
53961
  __typename?: 'JsmChatSubscriptionEstablishedPayload';
53746
53962
  id: Scalars['ID']['output'];
@@ -53806,6 +54022,27 @@ export declare type JsmChatUpdatedProjectSettings = {
53806
54022
  requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
53807
54023
  requesterThreadMessageDisabled: Scalars['Boolean']['input'];
53808
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
+ };
53809
54046
  export declare type JswAvailableCardLayoutField = Node & {
53810
54047
  __typename?: 'JswAvailableCardLayoutField';
53811
54048
  fieldId: Scalars['ID']['output'];
@@ -54147,6 +54384,7 @@ export declare type KnowledgeBaseSource = {
54147
54384
  entityReference: Scalars['String']['output'];
54148
54385
  id: Scalars['ID']['output'];
54149
54386
  name: Scalars['String']['output'];
54387
+ permissions?: Maybe<KnowledgeBaseSourcePermissions>;
54150
54388
  url: Scalars['String']['output'];
54151
54389
  };
54152
54390
  export declare type KnowledgeBaseSourceEdge = {
@@ -54154,6 +54392,7 @@ export declare type KnowledgeBaseSourceEdge = {
54154
54392
  cursor?: Maybe<Scalars['String']['output']>;
54155
54393
  node: KnowledgeBaseSource;
54156
54394
  };
54395
+ export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionResponse | QueryError;
54157
54396
  export declare type KnowledgeBaseSources = {
54158
54397
  __typename?: 'KnowledgeBaseSources';
54159
54398
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -54372,16 +54611,6 @@ export declare enum KnowledgeDiscoveryEntityType {
54372
54611
  Topic = "TOPIC",
54373
54612
  User = "USER"
54374
54613
  }
54375
- export declare type KnowledgeDiscoveryExtendedTopic = KnowledgeDiscoveryEntity & {
54376
- __typename?: 'KnowledgeDiscoveryExtendedTopic';
54377
- documentCount?: Maybe<Scalars['Int']['output']>;
54378
- id: Scalars['ID']['output'];
54379
- name: Scalars['String']['output'];
54380
- summary: Scalars['String']['output'];
54381
- type?: Maybe<KnowledgeDiscoveryTopicType>;
54382
- updatedAt: Scalars['String']['output'];
54383
- };
54384
- export declare type KnowledgeDiscoveryExtendedTopicResult = KnowledgeDiscoveryExtendedTopic | QueryError;
54385
54614
  export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
54386
54615
  __typename?: 'KnowledgeDiscoveryJiraProject';
54387
54616
  id: Scalars['ID']['output'];
@@ -54446,7 +54675,6 @@ export declare type KnowledgeDiscoveryQueryApi = {
54446
54675
  bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
54447
54676
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
54448
54677
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
54449
- extendedTopic?: Maybe<KnowledgeDiscoveryExtendedTopicResult>;
54450
54678
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
54451
54679
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
54452
54680
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
@@ -54489,12 +54717,6 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
54489
54717
  spaceId?: InputMaybe<Scalars['String']['input']>;
54490
54718
  workspaceId: Scalars['String']['input'];
54491
54719
  };
54492
- export declare type KnowledgeDiscoveryQueryApiExtendedTopicArgs = {
54493
- cloudId?: InputMaybe<Scalars['String']['input']>;
54494
- id: Scalars['String']['input'];
54495
- summaryLength?: InputMaybe<KnowledgeDiscoverySummaryLength>;
54496
- workspaceId?: InputMaybe<Scalars['String']['input']>;
54497
- };
54498
54720
  export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
54499
54721
  after?: InputMaybe<Scalars['String']['input']>;
54500
54722
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -54542,11 +54764,6 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
54542
54764
  transformedQuery: Scalars['String']['output'];
54543
54765
  };
54544
54766
  export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
54545
- export declare enum KnowledgeDiscoverySummaryLength {
54546
- Large = "LARGE",
54547
- Medium = "MEDIUM",
54548
- Small = "SMALL"
54549
- }
54550
54767
  export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
54551
54768
  __typename?: 'KnowledgeDiscoveryTopic';
54552
54769
  description: Scalars['String']['output'];
@@ -55937,6 +56154,11 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
55937
56154
  __typename?: 'MarketplaceStoreAnonymousUserLinks';
55938
56155
  login: Scalars['String']['output'];
55939
56156
  };
56157
+ export declare enum MarketplaceStoreAtlassianProductHostingType {
56158
+ Cloud = "CLOUD",
56159
+ Datacenter = "DATACENTER",
56160
+ Server = "SERVER"
56161
+ }
55940
56162
  export declare type MarketplaceStoreCategoryHeroSection = {
55941
56163
  __typename?: 'MarketplaceStoreCategoryHeroSection';
55942
56164
  backgroundColor: Scalars['String']['output'];
@@ -55989,6 +56211,20 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
55989
56211
  title: Scalars['String']['output'];
55990
56212
  };
55991
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
+ };
55992
56228
  export declare type MarketplaceStoreDeveloperSpace = {
55993
56229
  __typename?: 'MarketplaceStoreDeveloperSpace';
55994
56230
  name: Scalars['String']['output'];
@@ -56021,6 +56257,10 @@ export declare enum MarketplaceStoreEditionType {
56021
56257
  export declare type MarketplaceStoreEditionsInput = {
56022
56258
  appId?: InputMaybe<Scalars['String']['input']>;
56023
56259
  };
56260
+ export declare type MarketplaceStoreGeoIpResponse = {
56261
+ __typename?: 'MarketplaceStoreGeoIPResponse';
56262
+ countryCode: Scalars['String']['output'];
56263
+ };
56024
56264
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
56025
56265
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
56026
56266
  description: Scalars['String']['output'];
@@ -56251,14 +56491,23 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
56251
56491
  };
56252
56492
  export declare type MarketplaceStoreQueryApi = {
56253
56493
  __typename?: 'MarketplaceStoreQueryApi';
56494
+ appReviews: MarketplaceStoreReviewsResponse;
56254
56495
  category: MarketplaceStoreCategoryResponse;
56255
56496
  collection: MarketplaceStoreCollectionResponse;
56256
56497
  currentUser: MarketplaceStoreCurrentUserResponse;
56257
56498
  editions: Array<MarketplaceStoreEdition>;
56499
+ geoip: MarketplaceStoreGeoIpResponse;
56258
56500
  homePage: MarketplaceStoreHomePageResponse;
56259
56501
  installAppStatus: MarketplaceStoreInstallAppResponse;
56502
+ myReview: MarketplaceStoreCurrentUserReviewResponse;
56260
56503
  partner: MarketplaceStorePartnerResponse;
56261
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
+ };
56262
56511
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
56263
56512
  slug: Scalars['String']['input'];
56264
56513
  };
@@ -56274,10 +56523,47 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
56274
56523
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
56275
56524
  id: Scalars['ID']['input'];
56276
56525
  };
56526
+ export declare type MarketplaceStoreQueryApiMyReviewArgs = {
56527
+ appKey: Scalars['String']['input'];
56528
+ };
56277
56529
  export declare type MarketplaceStoreQueryApiPartnerArgs = {
56278
56530
  developerId?: InputMaybe<Scalars['ID']['input']>;
56279
56531
  vendorId: Scalars['ID']['input'];
56280
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
+ }
56281
56567
  export declare type MarketplaceSupportedAtlassianProduct = {
56282
56568
  __typename?: 'MarketplaceSupportedAtlassianProduct';
56283
56569
  hostingOptions: Array<AtlassianProductHostingType>;
@@ -56484,6 +56770,24 @@ export declare type MercuryDeleteFocusAreaStatusUpdatePayload = Payload & {
56484
56770
  errors?: Maybe<Array<MutationError>>;
56485
56771
  success: Scalars['Boolean']['output'];
56486
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
+ };
56487
56791
  export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
56488
56792
  cloudId: Scalars['ID']['input'];
56489
56793
  focusAreaIds: Array<Scalars['ID']['input']>;
@@ -56812,6 +57116,15 @@ export declare type MercuryHumanResourcesAllocation = {
56812
57116
  totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
56813
57117
  totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
56814
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
+ };
56815
57128
  export declare type MercuryLinkFocusAreasToFocusAreaInput = {
56816
57129
  childFocusAreaIds: Array<Scalars['ID']['input']>;
56817
57130
  cloudId: Scalars['ID']['input'];
@@ -56841,6 +57154,18 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
56841
57154
  errors?: Maybe<Array<MutationError>>;
56842
57155
  success: Scalars['Boolean']['output'];
56843
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
+ };
56844
57169
  export declare type MercuryMediaToken = {
56845
57170
  __typename?: 'MercuryMediaToken';
56846
57171
  token: Scalars['String']['output'];
@@ -56968,6 +57293,7 @@ export declare type MercuryPortfolio = Node & {
56968
57293
  __typename?: 'MercuryPortfolio';
56969
57294
  aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
56970
57295
  allocations?: Maybe<MercuryPortfolioAllocations>;
57296
+ ari: Scalars['String']['output'];
56971
57297
  funding?: Maybe<MercuryPortfolioFunding>;
56972
57298
  id: Scalars['ID']['output'];
56973
57299
  linkedFocusAreaGoalCount: Scalars['Int']['output'];
@@ -57079,6 +57405,25 @@ export declare type MercuryProviderMultiResolutionIcon = {
57079
57405
  small?: Maybe<Scalars['URL']['output']>;
57080
57406
  xlarge?: Maybe<Scalars['URL']['output']>;
57081
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
+ };
57082
57427
  export declare type MercuryProviderUser = {
57083
57428
  id: Scalars['ID']['output'];
57084
57429
  name?: Maybe<Scalars['String']['output']>;
@@ -57827,6 +58172,7 @@ export declare type Mutation = {
57827
58172
  marketplaceConsole: MarketplaceConsoleMutationApi;
57828
58173
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
57829
58174
  mercury?: Maybe<MercuryMutationApi>;
58175
+ mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
57830
58176
  moveSprintDown?: Maybe<MoveSprintDownResponse>;
57831
58177
  moveSprintUp?: Maybe<MoveSprintUpResponse>;
57832
58178
  notifications?: Maybe<InfluentsNotificationMutation>;
@@ -69077,12 +69423,18 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
69077
69423
  __typename?: 'TrelloPlannerCalendar';
69078
69424
  color: Scalars['String']['output'];
69079
69425
  enabled: Scalars['Boolean']['output'];
69426
+ events?: Maybe<TrelloPlannerCalendarEventConnection>;
69080
69427
  id: Scalars['ID']['output'];
69081
69428
  objectId: Scalars['ID']['output'];
69082
69429
  timezone: Scalars['String']['output'];
69083
69430
  title: Scalars['String']['output'];
69084
69431
  type: TrelloSupportedPlannerProviders;
69085
69432
  };
69433
+ export declare type TrelloPlannerCalendarEventsArgs = {
69434
+ after?: InputMaybe<Scalars['String']['input']>;
69435
+ filter: TrelloPlannerCalendarEventsFilter;
69436
+ first?: InputMaybe<Scalars['Int']['input']>;
69437
+ };
69086
69438
  export declare type TrelloPlannerCalendarAccount = Node & {
69087
69439
  __typename?: 'TrelloPlannerCalendarAccount';
69088
69440
  accountType: TrelloSupportedPlannerProviders;
@@ -69122,14 +69474,66 @@ export declare type TrelloPlannerCalendarEdge = {
69122
69474
  cursor?: Maybe<Scalars['String']['output']>;
69123
69475
  node?: Maybe<TrelloPlannerCalendar>;
69124
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
+ };
69125
69523
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
69126
69524
  __typename?: 'TrelloPlannerProviderCalendar';
69127
69525
  color: Scalars['String']['output'];
69526
+ events?: Maybe<TrelloPlannerCalendarEventConnection>;
69128
69527
  id: Scalars['ID']['output'];
69129
69528
  timezone: Scalars['String']['output'];
69130
69529
  title: Scalars['String']['output'];
69131
69530
  type: TrelloSupportedPlannerProviders;
69132
69531
  };
69532
+ export declare type TrelloPlannerProviderCalendarEventsArgs = {
69533
+ after?: InputMaybe<Scalars['String']['input']>;
69534
+ filter?: InputMaybe<TrelloPlannerCalendarEventsFilter>;
69535
+ first?: InputMaybe<Scalars['Int']['input']>;
69536
+ };
69133
69537
  export declare type TrelloPlannerProviderCalendarConnection = {
69134
69538
  __typename?: 'TrelloPlannerProviderCalendarConnection';
69135
69539
  edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
@@ -70196,12 +70600,14 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
70196
70600
  name: Scalars['String']['input'];
70197
70601
  };
70198
70602
  export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
70603
+ description?: InputMaybe<Scalars['String']['input']>;
70199
70604
  id: Scalars['ID']['input'];
70200
70605
  name?: InputMaybe<Scalars['String']['input']>;
70201
70606
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
70202
70607
  weight?: InputMaybe<Scalars['Int']['input']>;
70203
70608
  };
70204
70609
  export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
70610
+ description?: InputMaybe<Scalars['String']['input']>;
70205
70611
  fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
70206
70612
  id: Scalars['ID']['input'];
70207
70613
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70209,6 +70615,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
70209
70615
  weight?: InputMaybe<Scalars['Int']['input']>;
70210
70616
  };
70211
70617
  export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
70618
+ description?: InputMaybe<Scalars['String']['input']>;
70212
70619
  id: Scalars['ID']['input'];
70213
70620
  linkType?: InputMaybe<CompassLinkType>;
70214
70621
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70221,6 +70628,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
70221
70628
  automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
70222
70629
  comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
70223
70630
  comparatorValue?: InputMaybe<Scalars['Float']['input']>;
70631
+ description?: InputMaybe<Scalars['String']['input']>;
70224
70632
  id: Scalars['ID']['input'];
70225
70633
  metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
70226
70634
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70228,6 +70636,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
70228
70636
  weight?: InputMaybe<Scalars['Int']['input']>;
70229
70637
  };
70230
70638
  export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
70639
+ description?: InputMaybe<Scalars['String']['input']>;
70231
70640
  id: Scalars['ID']['input'];
70232
70641
  name?: InputMaybe<Scalars['String']['input']>;
70233
70642
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
@@ -70253,6 +70662,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
70253
70662
  };
70254
70663
  export declare type UpdateCompassScorecardInput = {
70255
70664
  componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
70665
+ componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
70256
70666
  componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
70257
70667
  componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
70258
70668
  componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -71345,6 +71755,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
71345
71755
  pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
71346
71756
  recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
71347
71757
  sortOrder?: Maybe<WorkSuggestionsOrder>;
71758
+ stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
71348
71759
  };
71349
71760
  export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
71350
71761
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -71616,6 +72027,11 @@ export declare type WorkSuggestionsPeriscopeTask = {
71616
72027
  title: Scalars['String']['output'];
71617
72028
  url: Scalars['String']['output'];
71618
72029
  };
72030
+ export declare type WorkSuggestionsPriority = {
72031
+ __typename?: 'WorkSuggestionsPriority';
72032
+ iconUrl?: Maybe<Scalars['String']['output']>;
72033
+ name?: Maybe<Scalars['String']['output']>;
72034
+ };
71619
72035
  export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
71620
72036
  __typename?: 'WorkSuggestionsPullRequestDraftTask';
71621
72037
  approvalsCount: Scalars['Int']['output'];
@@ -71709,6 +72125,21 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
71709
72125
  success: Scalars['Boolean']['output'];
71710
72126
  userProfile?: Maybe<WorkSuggestionsUserProfile>;
71711
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
+ };
71712
72143
  export declare enum WorkSuggestionsTargetAudience {
71713
72144
  Me = "ME",
71714
72145
  Team = "TEAM"