@forge/cli-shared 5.5.2-next.4 → 5.5.2-next.6

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>>>;
@@ -3257,8 +3288,12 @@ export declare type CompassCampaignEdge = {
3257
3288
  node?: Maybe<CompassCampaign>;
3258
3289
  };
3259
3290
  export declare type CompassCampaignQuery = {
3291
+ filter?: InputMaybe<CompassCampaignQueryFilter>;
3260
3292
  sort?: InputMaybe<CompassCampaignQuerySort>;
3261
3293
  };
3294
+ export declare type CompassCampaignQueryFilter = {
3295
+ status?: InputMaybe<Scalars['String']['input']>;
3296
+ };
3262
3297
  export declare type CompassCampaignQuerySort = {
3263
3298
  name: Scalars['String']['input'];
3264
3299
  order?: InputMaybe<CompassCampaignQuerySortOrder>;
@@ -3932,6 +3967,19 @@ export declare type CompassComponentApiStatsEndpointChangesConnection = {
3932
3967
  nodes: Array<CompassComponentApiStatsEndpointChange>;
3933
3968
  pageInfo: PageInfo;
3934
3969
  };
3970
+ export declare type CompassComponentCreationTimeFilter = {
3971
+ __typename?: 'CompassComponentCreationTimeFilter';
3972
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
3973
+ filter?: Maybe<Scalars['String']['output']>;
3974
+ };
3975
+ export declare type CompassComponentCreationTimeFilterInput = {
3976
+ createdAt: Scalars['DateTime']['input'];
3977
+ filter: CompassComponentCreationTimeFilterType;
3978
+ };
3979
+ export declare enum CompassComponentCreationTimeFilterType {
3980
+ After = "AFTER",
3981
+ Before = "BEFORE"
3982
+ }
3935
3983
  export declare type CompassComponentDataManager = {
3936
3984
  __typename?: 'CompassComponentDataManager';
3937
3985
  ecosystemAppId: Scalars['ID']['output'];
@@ -4334,6 +4382,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
4334
4382
  booleanComparator: CompassCriteriaBooleanComparatorOptions;
4335
4383
  booleanComparatorValue: Scalars['Boolean']['input'];
4336
4384
  customFieldDefinitionId: Scalars['ID']['input'];
4385
+ description?: InputMaybe<Scalars['String']['input']>;
4337
4386
  name?: InputMaybe<Scalars['String']['input']>;
4338
4387
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
4339
4388
  weight: Scalars['Int']['input'];
@@ -4342,12 +4391,14 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
4342
4391
  collectionComparator: CompassCriteriaCollectionComparatorOptions;
4343
4392
  collectionComparatorValue: Array<Scalars['ID']['input']>;
4344
4393
  customFieldDefinitionId: Scalars['ID']['input'];
4394
+ description?: InputMaybe<Scalars['String']['input']>;
4345
4395
  name?: InputMaybe<Scalars['String']['input']>;
4346
4396
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
4347
4397
  weight: Scalars['Int']['input'];
4348
4398
  };
4349
4399
  export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
4350
4400
  customFieldDefinitionId: Scalars['ID']['input'];
4401
+ description?: InputMaybe<Scalars['String']['input']>;
4351
4402
  name?: InputMaybe<Scalars['String']['input']>;
4352
4403
  numberComparator: CompassCriteriaNumberComparatorOptions;
4353
4404
  numberComparatorValue: Scalars['Float']['input'];
@@ -4356,6 +4407,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
4356
4407
  };
4357
4408
  export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
4358
4409
  customFieldDefinitionId: Scalars['ID']['input'];
4410
+ description?: InputMaybe<Scalars['String']['input']>;
4359
4411
  membershipComparator: CompassCriteriaMembershipComparatorOptions;
4360
4412
  membershipComparatorValue: Array<Scalars['ID']['input']>;
4361
4413
  name?: InputMaybe<Scalars['String']['input']>;
@@ -4364,6 +4416,7 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
4364
4416
  };
4365
4417
  export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
4366
4418
  customFieldDefinitionId: Scalars['ID']['input'];
4419
+ description?: InputMaybe<Scalars['String']['input']>;
4367
4420
  name?: InputMaybe<Scalars['String']['input']>;
4368
4421
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
4369
4422
  weight: Scalars['Int']['input'];
@@ -4618,6 +4671,7 @@ export declare type CompassCustomFieldInput = {
4618
4671
  userField?: InputMaybe<CompassCustomUserFieldInput>;
4619
4672
  };
4620
4673
  export declare type CompassCustomFieldScorecardCriteria = {
4674
+ description?: Maybe<Scalars['String']['output']>;
4621
4675
  id: Scalars['ID']['output'];
4622
4676
  name?: Maybe<Scalars['String']['output']>;
4623
4677
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5131,6 +5185,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
5131
5185
  booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
5132
5186
  booleanComparatorValue?: Maybe<Scalars['Boolean']['output']>;
5133
5187
  customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
5188
+ description?: Maybe<Scalars['String']['output']>;
5134
5189
  id: Scalars['ID']['output'];
5135
5190
  name?: Maybe<Scalars['String']['output']>;
5136
5191
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5146,6 +5201,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
5146
5201
  collectionComparatorValue: Array<Scalars['ID']['output']>;
5147
5202
  customFieldDefinition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
5148
5203
  customFieldDefinitionId: Scalars['ID']['output'];
5204
+ description?: Maybe<Scalars['String']['output']>;
5149
5205
  id: Scalars['ID']['output'];
5150
5206
  name?: Maybe<Scalars['String']['output']>;
5151
5207
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5158,6 +5214,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCr
5158
5214
  export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
5159
5215
  __typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
5160
5216
  customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
5217
+ description?: Maybe<Scalars['String']['output']>;
5161
5218
  id: Scalars['ID']['output'];
5162
5219
  name?: Maybe<Scalars['String']['output']>;
5163
5220
  numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
@@ -5173,6 +5230,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
5173
5230
  __typename?: 'CompassHasCustomSingleSelectFieldScorecardCriteria';
5174
5231
  customFieldDefinition?: Maybe<CompassCustomSingleSelectFieldDefinition>;
5175
5232
  customFieldDefinitionId: Scalars['ID']['output'];
5233
+ description?: Maybe<Scalars['String']['output']>;
5176
5234
  id: Scalars['ID']['output'];
5177
5235
  membershipComparator?: Maybe<CompassCriteriaMembershipComparatorOptions>;
5178
5236
  membershipComparatorValue: Array<Scalars['ID']['output']>;
@@ -5187,6 +5245,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardC
5187
5245
  export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
5188
5246
  __typename?: 'CompassHasCustomTextFieldScorecardCriteria';
5189
5247
  customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
5248
+ description?: Maybe<Scalars['String']['output']>;
5190
5249
  id: Scalars['ID']['output'];
5191
5250
  name?: Maybe<Scalars['String']['output']>;
5192
5251
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5198,6 +5257,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaS
5198
5257
  };
5199
5258
  export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
5200
5259
  __typename?: 'CompassHasDescriptionScorecardCriteria';
5260
+ description?: Maybe<Scalars['String']['output']>;
5201
5261
  id: Scalars['ID']['output'];
5202
5262
  name?: Maybe<Scalars['String']['output']>;
5203
5263
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5209,6 +5269,7 @@ export declare type CompassHasDescriptionScorecardCriteriaScorecardCriteriaScore
5209
5269
  };
5210
5270
  export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria & {
5211
5271
  __typename?: 'CompassHasFieldScorecardCriteria';
5272
+ description?: Maybe<Scalars['String']['output']>;
5212
5273
  fieldDefinition: CompassFieldDefinition;
5213
5274
  id: Scalars['ID']['output'];
5214
5275
  name?: Maybe<Scalars['String']['output']>;
@@ -5221,6 +5282,7 @@ export declare type CompassHasFieldScorecardCriteriaScorecardCriteriaScoreArgs =
5221
5282
  };
5222
5283
  export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria & {
5223
5284
  __typename?: 'CompassHasLinkScorecardCriteria';
5285
+ description?: Maybe<Scalars['String']['output']>;
5224
5286
  id: Scalars['ID']['output'];
5225
5287
  linkType: CompassLinkType;
5226
5288
  name?: Maybe<Scalars['String']['output']>;
@@ -5238,6 +5300,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
5238
5300
  automaticallyCreateMetricSources?: Maybe<Scalars['Boolean']['output']>;
5239
5301
  comparator: CompassCriteriaNumberComparatorOptions;
5240
5302
  comparatorValue: Scalars['Float']['output'];
5303
+ description?: Maybe<Scalars['String']['output']>;
5241
5304
  id: Scalars['ID']['output'];
5242
5305
  metricDefinition?: Maybe<CompassMetricDefinition>;
5243
5306
  metricDefinitionId: Scalars['ID']['output'];
@@ -5251,6 +5314,7 @@ export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScore
5251
5314
  };
5252
5315
  export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria & {
5253
5316
  __typename?: 'CompassHasOwnerScorecardCriteria';
5317
+ description?: Maybe<Scalars['String']['output']>;
5254
5318
  id: Scalars['ID']['output'];
5255
5319
  name?: Maybe<Scalars['String']['output']>;
5256
5320
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -5376,6 +5440,19 @@ export declare enum CompassLifecycleEventStage {
5376
5440
  PreRelease = "PRE_RELEASE",
5377
5441
  Production = "PRODUCTION"
5378
5442
  }
5443
+ export declare type CompassLifecycleFilter = {
5444
+ __typename?: 'CompassLifecycleFilter';
5445
+ operator: Scalars['String']['output'];
5446
+ values?: Maybe<Array<CompassLifecycleEventStage>>;
5447
+ };
5448
+ export declare type CompassLifecycleFilterInput = {
5449
+ operator: CompassLifecycleFilterOperator;
5450
+ values: Array<Scalars['String']['input']>;
5451
+ };
5452
+ export declare enum CompassLifecycleFilterOperator {
5453
+ Nor = "NOR",
5454
+ Or = "OR"
5455
+ }
5379
5456
  export declare type CompassLink = {
5380
5457
  __typename?: 'CompassLink';
5381
5458
  eventSources?: Maybe<Array<EventSource>>;
@@ -5872,7 +5949,9 @@ export declare type CompassScorecardAppliedToComponentsTypesFilter = {
5872
5949
  export declare type CompassScorecardAutomaticApplicationModel = CompassScorecardApplicationModel & {
5873
5950
  __typename?: 'CompassScorecardAutomaticApplicationModel';
5874
5951
  applicationType: Scalars['String']['output'];
5952
+ componentCreationTimeFilter?: Maybe<CompassComponentCreationTimeFilter>;
5875
5953
  componentLabels?: Maybe<Array<CompassComponentLabel>>;
5954
+ componentLifecycleStages?: Maybe<CompassLifecycleFilter>;
5876
5955
  componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
5877
5956
  componentTiers?: Maybe<Array<CompassComponentTier>>;
5878
5957
  componentTypeIds: Array<Scalars['ID']['output']>;
@@ -5886,6 +5965,7 @@ export declare type CompassScorecardConnection = {
5886
5965
  totalCount?: Maybe<Scalars['Int']['output']>;
5887
5966
  };
5888
5967
  export declare type CompassScorecardCriteria = {
5968
+ description?: Maybe<Scalars['String']['output']>;
5889
5969
  id: Scalars['ID']['output'];
5890
5970
  name?: Maybe<Scalars['String']['output']>;
5891
5971
  scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
@@ -6492,6 +6572,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
6492
6572
  booleanComparator?: InputMaybe<CompassCriteriaBooleanComparatorOptions>;
6493
6573
  booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
6494
6574
  customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6575
+ description?: InputMaybe<Scalars['String']['input']>;
6495
6576
  id: Scalars['ID']['input'];
6496
6577
  name?: InputMaybe<Scalars['String']['input']>;
6497
6578
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
@@ -6501,6 +6582,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
6501
6582
  collectionComparator?: InputMaybe<CompassCriteriaCollectionComparatorOptions>;
6502
6583
  collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
6503
6584
  customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6585
+ description?: InputMaybe<Scalars['String']['input']>;
6504
6586
  id: Scalars['ID']['input'];
6505
6587
  name?: InputMaybe<Scalars['String']['input']>;
6506
6588
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
@@ -6508,6 +6590,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
6508
6590
  };
6509
6591
  export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
6510
6592
  customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6593
+ description?: InputMaybe<Scalars['String']['input']>;
6511
6594
  id: Scalars['ID']['input'];
6512
6595
  name?: InputMaybe<Scalars['String']['input']>;
6513
6596
  numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
@@ -6517,6 +6600,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
6517
6600
  };
6518
6601
  export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
6519
6602
  customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6603
+ description?: InputMaybe<Scalars['String']['input']>;
6520
6604
  id: Scalars['ID']['input'];
6521
6605
  membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
6522
6606
  membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -6526,6 +6610,7 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
6526
6610
  };
6527
6611
  export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
6528
6612
  customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
6613
+ description?: InputMaybe<Scalars['String']['input']>;
6529
6614
  id: Scalars['ID']['input'];
6530
6615
  name?: InputMaybe<Scalars['String']['input']>;
6531
6616
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
@@ -14105,7 +14190,7 @@ export declare type ContentPlatformCallToAction = {
14105
14190
  url?: Maybe<Scalars['String']['output']>;
14106
14191
  valueProposition?: Maybe<Scalars['String']['output']>;
14107
14192
  };
14108
- export declare type ContentPlatformCallToActionAndPricingCallToActionMicrocopyUnion = ContentPlatformCallToAction | ContentPlatformPricingCallToActionMicrocopy;
14193
+ export declare type ContentPlatformCallToActionAndCallToActionMicrocopyUnion = ContentPlatformCallToAction | ContentPlatformCallToActionMicrocopy;
14109
14194
  export declare type ContentPlatformCallToActionMicrocopy = {
14110
14195
  __typename?: 'ContentPlatformCallToActionMicrocopy';
14111
14196
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -14266,7 +14351,7 @@ export declare type ContentPlatformFeature = {
14266
14351
  __typename?: 'ContentPlatformFeature';
14267
14352
  callOut?: Maybe<Scalars['String']['output']>;
14268
14353
  createdAt?: Maybe<Scalars['String']['output']>;
14269
- description?: Maybe<Scalars['JSON']['output']>;
14354
+ description?: Maybe<Scalars['String']['output']>;
14270
14355
  featureAdditionalInformation?: Maybe<Array<ContentPlatformFeatureAdditionalInformation>>;
14271
14356
  featureNameExternal?: Maybe<Scalars['String']['output']>;
14272
14357
  product?: Maybe<Array<ContentPlatformPricingProductName>>;
@@ -14353,7 +14438,7 @@ export declare type ContentPlatformFullTutorial = {
14353
14438
  export declare type ContentPlatformHighlightedFeature = {
14354
14439
  __typename?: 'ContentPlatformHighlightedFeature';
14355
14440
  createdAt?: Maybe<Scalars['String']['output']>;
14356
- highlightedFeatureDetails?: Maybe<Scalars['JSON']['output']>;
14441
+ highlightedFeatureDetails?: Maybe<Scalars['String']['output']>;
14357
14442
  highlightedFeatureTitleExternal?: Maybe<Scalars['String']['output']>;
14358
14443
  updatedAt?: Maybe<Scalars['String']['output']>;
14359
14444
  };
@@ -14549,7 +14634,7 @@ export declare type ContentPlatformPlan = {
14549
14634
  errors?: Maybe<Array<ContentPlatformPricingErrors>>;
14550
14635
  highlightedFeaturesContainer?: Maybe<Array<ContentPlatformHighlightedFeature>>;
14551
14636
  highlightedFeaturesTitle?: Maybe<Scalars['String']['output']>;
14552
- microCta?: Maybe<Array<ContentPlatformPricingCallToActionMicrocopy>>;
14637
+ microCta?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
14553
14638
  planOneLiner?: Maybe<Scalars['String']['output']>;
14554
14639
  planTitleExternal?: Maybe<Scalars['String']['output']>;
14555
14640
  relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
@@ -14572,14 +14657,14 @@ export declare type ContentPlatformPlanBenefits = {
14572
14657
  export declare type ContentPlatformPlanDetails = {
14573
14658
  __typename?: 'ContentPlatformPlanDetails';
14574
14659
  createdAt?: Maybe<Scalars['String']['output']>;
14575
- planAdditionalDetails?: Maybe<Scalars['JSON']['output']>;
14660
+ planAdditionalDetails?: Maybe<Scalars['String']['output']>;
14576
14661
  planAdditionalDetailsTitleExternal?: Maybe<Scalars['String']['output']>;
14577
14662
  updatedAt?: Maybe<Scalars['String']['output']>;
14578
14663
  };
14579
14664
  export declare type ContentPlatformPricing = {
14580
14665
  __typename?: 'ContentPlatformPricing';
14581
14666
  additionalDetails?: Maybe<Array<ContentPlatformPlanDetails>>;
14582
- callToActionContainer?: Maybe<Array<ContentPlatformCallToActionAndPricingCallToActionMicrocopyUnion>>;
14667
+ callToActionContainer?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
14583
14668
  compareFeatures?: Maybe<Array<ContentPlatformFeatureGroup>>;
14584
14669
  compareFeaturesTitle?: Maybe<Scalars['String']['output']>;
14585
14670
  comparePlans?: Maybe<Array<ContentPlatformPlan>>;
@@ -14587,22 +14672,15 @@ export declare type ContentPlatformPricing = {
14587
14672
  datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
14588
14673
  getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
14589
14674
  headline?: Maybe<Scalars['String']['output']>;
14675
+ pageDescription?: Maybe<Scalars['String']['output']>;
14590
14676
  pricingTitleExternal?: Maybe<Scalars['String']['output']>;
14591
- questions?: Maybe<Scalars['JSON']['output']>;
14592
14677
  relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
14593
14678
  updatedAt?: Maybe<Scalars['String']['output']>;
14594
14679
  };
14595
- export declare type ContentPlatformPricingCallToActionMicrocopy = {
14596
- __typename?: 'ContentPlatformPricingCallToActionMicrocopy';
14597
- createdAt?: Maybe<Scalars['String']['output']>;
14598
- ctaButtonText?: Maybe<Scalars['String']['output']>;
14599
- ctaMicrocopyTitleExternal?: Maybe<Scalars['String']['output']>;
14600
- updatedAt?: Maybe<Scalars['String']['output']>;
14601
- };
14602
14680
  export declare type ContentPlatformPricingErrors = {
14603
14681
  __typename?: 'ContentPlatformPricingErrors';
14604
14682
  createdAt?: Maybe<Scalars['String']['output']>;
14605
- errorText?: Maybe<Scalars['JSON']['output']>;
14683
+ errorText?: Maybe<Scalars['String']['output']>;
14606
14684
  errorTrigger?: Maybe<Scalars['String']['output']>;
14607
14685
  updatedAt?: Maybe<Scalars['String']['output']>;
14608
14686
  };
@@ -15385,17 +15463,20 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
15385
15463
  name: Scalars['String']['input'];
15386
15464
  };
15387
15465
  export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
15466
+ description?: InputMaybe<Scalars['String']['input']>;
15388
15467
  name?: InputMaybe<Scalars['String']['input']>;
15389
15468
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
15390
15469
  weight: Scalars['Int']['input'];
15391
15470
  };
15392
15471
  export declare type CreateCompassHasFieldScorecardCriteriaInput = {
15472
+ description?: InputMaybe<Scalars['String']['input']>;
15393
15473
  fieldDefinitionId: Scalars['ID']['input'];
15394
15474
  name?: InputMaybe<Scalars['String']['input']>;
15395
15475
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
15396
15476
  weight: Scalars['Int']['input'];
15397
15477
  };
15398
15478
  export declare type CreateCompassHasLinkScorecardCriteriaInput = {
15479
+ description?: InputMaybe<Scalars['String']['input']>;
15399
15480
  linkType: CompassLinkType;
15400
15481
  name?: InputMaybe<Scalars['String']['input']>;
15401
15482
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
@@ -15407,11 +15488,13 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
15407
15488
  automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
15408
15489
  comparator: CompassCriteriaNumberComparatorOptions;
15409
15490
  comparatorValue: Scalars['Float']['input'];
15491
+ description?: InputMaybe<Scalars['String']['input']>;
15410
15492
  metricDefinitionId: Scalars['ID']['input'];
15411
15493
  name?: InputMaybe<Scalars['String']['input']>;
15412
15494
  weight: Scalars['Int']['input'];
15413
15495
  };
15414
15496
  export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
15497
+ description?: InputMaybe<Scalars['String']['input']>;
15415
15498
  name?: InputMaybe<Scalars['String']['input']>;
15416
15499
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
15417
15500
  weight: Scalars['Int']['input'];
@@ -15445,7 +15528,9 @@ export declare type CreateCompassScorecardCriteriaInput = {
15445
15528
  hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
15446
15529
  };
15447
15530
  export declare type CreateCompassScorecardInput = {
15531
+ componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
15448
15532
  componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
15533
+ componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
15449
15534
  componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
15450
15535
  componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
15451
15536
  componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -36551,9 +36636,11 @@ export declare type HamsEntitlementExperienceCapabilities = CommerceEntitlementE
36551
36636
  };
36552
36637
  export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
36553
36638
  offeringKey?: InputMaybe<Scalars['ID']['input']>;
36639
+ offeringName?: InputMaybe<Scalars['String']['input']>;
36554
36640
  };
36555
36641
  export declare type HamsEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
36556
36642
  offeringKey?: InputMaybe<Scalars['ID']['input']>;
36643
+ offeringName?: InputMaybe<Scalars['String']['input']>;
36557
36644
  };
36558
36645
  export declare type HamsEntitlementMigrationEvaluation = {
36559
36646
  __typename?: 'HamsEntitlementMigrationEvaluation';
@@ -36636,6 +36723,7 @@ export declare type HelpCenter = Node & {
36636
36723
  mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
36637
36724
  name?: Maybe<HelpCenterName>;
36638
36725
  portals?: Maybe<HelpCenterPortals>;
36726
+ projectMappingData?: Maybe<HelpCenterProjectMappingData>;
36639
36727
  siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
36640
36728
  slug?: Maybe<Scalars['String']['output']>;
36641
36729
  topics?: Maybe<Array<HelpCenterTopic>>;
@@ -36647,6 +36735,12 @@ export declare type HelpCenterPortalsArgs = {
36647
36735
  portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
36648
36736
  sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
36649
36737
  };
36738
+ export declare enum HelpCenterAccessControlType {
36739
+ External = "EXTERNAL",
36740
+ GroupBased = "GROUP_BASED",
36741
+ Internal = "INTERNAL",
36742
+ Public = "PUBLIC"
36743
+ }
36650
36744
  export declare type HelpCenterAnnouncement = {
36651
36745
  __typename?: 'HelpCenterAnnouncement';
36652
36746
  description?: Maybe<Scalars['String']['output']>;
@@ -36866,6 +36960,12 @@ export declare type HelpCenterNameInput = {
36866
36960
  default: Scalars['String']['input'];
36867
36961
  translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
36868
36962
  };
36963
+ export declare type HelpCenterPermissions = {
36964
+ __typename?: 'HelpCenterPermissions';
36965
+ allowedGroups?: Maybe<Array<Scalars['String']['output']>>;
36966
+ helpCenterAccessControl?: Maybe<HelpCenterAccessControlType>;
36967
+ };
36968
+ export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
36869
36969
  export declare type HelpCenterPortal = {
36870
36970
  __typename?: 'HelpCenterPortal';
36871
36971
  description?: Maybe<Scalars['String']['output']>;
@@ -36882,6 +36982,10 @@ export declare type HelpCenterPortal = {
36882
36982
  export declare type HelpCenterPortalFilter = {
36883
36983
  typeFilter?: InputMaybe<Array<HelpCenterPortalsType>>;
36884
36984
  };
36985
+ export declare type HelpCenterPortalMetaData = {
36986
+ __typename?: 'HelpCenterPortalMetaData';
36987
+ portalId: Scalars['String']['output'];
36988
+ };
36885
36989
  export declare type HelpCenterPortals = {
36886
36990
  __typename?: 'HelpCenterPortals';
36887
36991
  portalsList?: Maybe<Array<HelpCenterPortal>>;
@@ -36907,6 +37011,16 @@ export declare enum HelpCenterPortalsType {
36907
37011
  Hidden = "HIDDEN",
36908
37012
  Visible = "VISIBLE"
36909
37013
  }
37014
+ export declare type HelpCenterProjectMappingData = {
37015
+ __typename?: 'HelpCenterProjectMappingData';
37016
+ projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
37017
+ syncNewProjects?: Maybe<Scalars['Boolean']['output']>;
37018
+ };
37019
+ export declare type HelpCenterProjectMappingEntry = {
37020
+ __typename?: 'HelpCenterProjectMappingEntry';
37021
+ portalMetadata: HelpCenterPortalMetaData;
37022
+ projectId: Scalars['String']['output'];
37023
+ };
36910
37024
  export declare enum HelpCenterProjectMappingOperationType {
36911
37025
  MapProjects = "MAP_PROJECTS",
36912
37026
  UnmapProjects = "UNMAP_PROJECTS"
@@ -36931,9 +37045,11 @@ export declare type HelpCenterQueryApi = {
36931
37045
  helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
36932
37046
  helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
36933
37047
  helpCenterById?: Maybe<HelpCenterQueryResult>;
37048
+ helpCenterPermissions?: Maybe<HelpCenterPermissionsResult>;
36934
37049
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
36935
37050
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
36936
37051
  helpCenters?: Maybe<HelpCenterQueryResultConnection>;
37052
+ helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
36937
37053
  helpCentersConfig?: Maybe<HelpCentersConfigResult>;
36938
37054
  helpCentersList?: Maybe<HelpCentersListQueryResult>;
36939
37055
  mediaConfig?: Maybe<HelpCenterMediaConfig>;
@@ -36948,6 +37064,9 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
36948
37064
  export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
36949
37065
  helpCenterAri: Scalars['ID']['input'];
36950
37066
  };
37067
+ export declare type HelpCenterQueryApiHelpCenterPermissionsArgs = {
37068
+ helpCenterAri: Scalars['ID']['input'];
37069
+ };
36951
37070
  export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
36952
37071
  helpCenterAri: Scalars['ID']['input'];
36953
37072
  };
@@ -36961,6 +37080,13 @@ export declare type HelpCenterQueryApiHelpCentersArgs = {
36961
37080
  sortOrder: HelpCenterSortOrder;
36962
37081
  workspaceAri: Scalars['ID']['input'];
36963
37082
  };
37083
+ export declare type HelpCenterQueryApiHelpCentersByProjectIdArgs = {
37084
+ after?: InputMaybe<Scalars['String']['input']>;
37085
+ first?: InputMaybe<Scalars['Int']['input']>;
37086
+ projectId: Scalars['String']['input'];
37087
+ sortOrder: HelpCenterSortOrder;
37088
+ workspaceAri: Scalars['ID']['input'];
37089
+ };
36964
37090
  export declare type HelpCenterQueryApiHelpCentersConfigArgs = {
36965
37091
  workspaceAri: Scalars['ID']['input'];
36966
37092
  };
@@ -39506,6 +39632,11 @@ export declare type JiraAttachmentBackground = JiraBackground & {
39506
39632
  attachment?: Maybe<JiraAttachment>;
39507
39633
  entityId?: Maybe<Scalars['ID']['output']>;
39508
39634
  };
39635
+ export declare type JiraAttachmentByAriResult = {
39636
+ __typename?: 'JiraAttachmentByAriResult';
39637
+ attachment?: Maybe<JiraPlatformAttachment>;
39638
+ error?: Maybe<QueryError>;
39639
+ };
39509
39640
  export declare type JiraAttachmentConnection = {
39510
39641
  __typename?: 'JiraAttachmentConnection';
39511
39642
  edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
@@ -41286,6 +41417,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
41286
41417
  errors?: Maybe<Array<MutationError>>;
41287
41418
  success: Scalars['Boolean']['output'];
41288
41419
  };
41420
+ export declare type JiraCreateJourneyConfigurationInput = {
41421
+ name: Scalars['String']['input'];
41422
+ parentIssue: JiraJourneyParentIssueInput;
41423
+ trigger: JiraJourneyTriggerInput;
41424
+ };
41425
+ export declare type JiraCreateJourneyConfigurationPayload = Payload & {
41426
+ __typename?: 'JiraCreateJourneyConfigurationPayload';
41427
+ errors?: Maybe<Array<MutationError>>;
41428
+ jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
41429
+ success: Scalars['Boolean']['output'];
41430
+ };
41289
41431
  export declare type JiraCreateNavigationItemPayload = Payload & {
41290
41432
  __typename?: 'JiraCreateNavigationItemPayload';
41291
41433
  errors?: Maybe<Array<MutationError>>;
@@ -42306,6 +42448,21 @@ export declare type JiraFieldType = {
42306
42448
  displayName?: Maybe<Scalars['String']['output']>;
42307
42449
  name: Scalars['String']['output'];
42308
42450
  };
42451
+ export declare type JiraFieldTypeGroup = {
42452
+ __typename?: 'JiraFieldTypeGroup';
42453
+ displayName?: Maybe<Scalars['String']['output']>;
42454
+ key?: Maybe<Scalars['String']['output']>;
42455
+ };
42456
+ export declare type JiraFieldTypeGroupConnection = {
42457
+ __typename?: 'JiraFieldTypeGroupConnection';
42458
+ edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
42459
+ pageInfo: PageInfo;
42460
+ };
42461
+ export declare type JiraFieldTypeGroupEdge = {
42462
+ __typename?: 'JiraFieldTypeGroupEdge';
42463
+ cursor?: Maybe<Scalars['String']['output']>;
42464
+ node?: Maybe<JiraFieldTypeGroup>;
42465
+ };
42309
42466
  export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExtension & {
42310
42467
  __typename?: 'JiraFieldValidationMutationErrorExtension';
42311
42468
  errorType?: Maybe<Scalars['String']['output']>;
@@ -43108,6 +43265,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
43108
43265
  planScenarioValues?: Maybe<JiraScenarioIssueValues>;
43109
43266
  postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
43110
43267
  priorityField?: Maybe<JiraPriorityField>;
43268
+ projectField?: Maybe<JiraProjectField>;
43111
43269
  projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
43112
43270
  resolutionDateField?: Maybe<JiraDateTimePickerField>;
43113
43271
  resolutionField?: Maybe<JiraResolutionField>;
@@ -44403,6 +44561,7 @@ export declare enum JiraIssueViewTimestampDisplayMode {
44403
44561
  }
44404
44562
  export declare type JiraIssueWithScenario = {
44405
44563
  __typename?: 'JiraIssueWithScenario';
44564
+ errors?: Maybe<Array<QueryError>>;
44406
44565
  scenarioIssueLike?: Maybe<JiraScenarioIssueLike>;
44407
44566
  };
44408
44567
  export declare enum JiraIteration {
@@ -44450,6 +44609,54 @@ export declare type JiraJqlHistoryEdge = {
44450
44609
  __typename?: 'JiraJQLHistoryEdge';
44451
44610
  node?: Maybe<JiraJqlHistory>;
44452
44611
  };
44612
+ export declare type JiraJourneyConfiguration = Node & {
44613
+ __typename?: 'JiraJourneyConfiguration';
44614
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
44615
+ createdBy?: Maybe<User>;
44616
+ id: Scalars['ID']['output'];
44617
+ name?: Maybe<Scalars['String']['output']>;
44618
+ parentIssue?: Maybe<JiraJourneyParentIssue>;
44619
+ trigger?: Maybe<JiraJourneyTrigger>;
44620
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
44621
+ updatedBy?: Maybe<User>;
44622
+ version?: Maybe<Scalars['Long']['output']>;
44623
+ };
44624
+ export declare type JiraJourneyConfigurationConnection = {
44625
+ __typename?: 'JiraJourneyConfigurationConnection';
44626
+ edges?: Maybe<Array<Maybe<JiraJourneyConfigurationEdge>>>;
44627
+ errors?: Maybe<Array<QueryError>>;
44628
+ pageInfo: PageInfo;
44629
+ totalCount?: Maybe<Scalars['Int']['output']>;
44630
+ };
44631
+ export declare type JiraJourneyConfigurationEdge = {
44632
+ __typename?: 'JiraJourneyConfigurationEdge';
44633
+ cursor: Scalars['String']['output'];
44634
+ node?: Maybe<JiraJourneyConfiguration>;
44635
+ };
44636
+ export declare type JiraJourneyParentIssue = {
44637
+ __typename?: 'JiraJourneyParentIssue';
44638
+ projectId: Scalars['ID']['output'];
44639
+ value?: Maybe<JiraJourneyParentIssueValueType>;
44640
+ };
44641
+ export declare type JiraJourneyParentIssueInput = {
44642
+ projectId: Scalars['ID']['input'];
44643
+ type: JiraJourneyParentIssueType;
44644
+ value: Scalars['String']['input'];
44645
+ };
44646
+ export declare enum JiraJourneyParentIssueType {
44647
+ Request = "REQUEST"
44648
+ }
44649
+ export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
44650
+ export declare type JiraJourneyTrigger = {
44651
+ __typename?: 'JiraJourneyTrigger';
44652
+ type: JiraJourneyTriggerType;
44653
+ };
44654
+ export declare type JiraJourneyTriggerInput = {
44655
+ type: JiraJourneyTriggerType;
44656
+ };
44657
+ export declare enum JiraJourneyTriggerType {
44658
+ ParentIssueCreated = "PARENT_ISSUE_CREATED"
44659
+ }
44453
44660
  export declare enum JiraJqlAutocompleteType {
44454
44661
  Basic = "BASIC",
44455
44662
  Cascadingoption = "CASCADINGOPTION",
@@ -45477,6 +45684,7 @@ export declare type JiraMutation = {
45477
45684
  createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
45478
45685
  createIssue?: Maybe<JiraIssueCreatePayload>;
45479
45686
  createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
45687
+ createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
45480
45688
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45481
45689
  createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
45482
45690
  createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
@@ -45687,6 +45895,10 @@ export declare type JiraMutationCreateIssueLinksArgs = {
45687
45895
  cloudId: Scalars['ID']['input'];
45688
45896
  input: JiraBulkCreateIssueLinksInput;
45689
45897
  };
45898
+ export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
45899
+ cloudId: Scalars['ID']['input'];
45900
+ input: JiraCreateJourneyConfigurationInput;
45901
+ };
45690
45902
  export declare type JiraMutationCreateJiraVersionArgs = {
45691
45903
  input: JiraVersionCreateMutationInput;
45692
45904
  };
@@ -47083,6 +47295,7 @@ export declare type JiraProject = Node & {
47083
47295
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
47084
47296
  opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
47085
47297
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
47298
+ projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
47086
47299
  projectId?: Maybe<Scalars['String']['output']>;
47087
47300
  projectStyle?: Maybe<JiraProjectStyle>;
47088
47301
  projectType?: Maybe<JiraProjectType>;
@@ -47199,6 +47412,10 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
47199
47412
  after?: InputMaybe<Scalars['String']['input']>;
47200
47413
  first?: InputMaybe<Scalars['Int']['input']>;
47201
47414
  };
47415
+ export declare type JiraProjectProjectFieldTypeGroupsArgs = {
47416
+ after?: InputMaybe<Scalars['String']['input']>;
47417
+ first?: InputMaybe<Scalars['Int']['input']>;
47418
+ };
47202
47419
  export declare type JiraProjectRepositoriesArgs = {
47203
47420
  after?: InputMaybe<Scalars['String']['input']>;
47204
47421
  filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
@@ -47338,6 +47555,10 @@ export declare enum JiraProjectAndRepositoryRelationshipSortBy {
47338
47555
  export declare type JiraProjectAssociatedFieldsInput = {
47339
47556
  includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
47340
47557
  };
47558
+ export declare type JiraProjectAvailableFieldsInput = {
47559
+ fieldTypeGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
47560
+ filterContains?: InputMaybe<Scalars['String']['input']>;
47561
+ };
47341
47562
  export declare type JiraProjectCategory = Node & {
47342
47563
  __typename?: 'JiraProjectCategory';
47343
47564
  description?: Maybe<Scalars['String']['output']>;
@@ -47765,6 +47986,7 @@ export declare type JiraProjectWithIssueTypeIds = {
47765
47986
  export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
47766
47987
  after?: InputMaybe<Scalars['String']['input']>;
47767
47988
  first?: InputMaybe<Scalars['Int']['input']>;
47989
+ input?: InputMaybe<JiraProjectAvailableFieldsInput>;
47768
47990
  };
47769
47991
  export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
47770
47992
  after?: InputMaybe<Scalars['String']['input']>;
@@ -47798,6 +48020,7 @@ export declare type JiraQuery = {
47798
48020
  addableNavigationItemTypes?: Maybe<JiraNavigationItemTypeConnection>;
47799
48021
  advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
47800
48022
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
48023
+ allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
47801
48024
  allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
47802
48025
  allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
47803
48026
  allJiraProjects?: Maybe<JiraProjectConnection>;
@@ -47807,6 +48030,7 @@ export declare type JiraQuery = {
47807
48030
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
47808
48031
  atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
47809
48032
  attachmentByAri?: Maybe<JiraPlatformAttachment>;
48033
+ attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
47810
48034
  attachmentSearch?: Maybe<JiraAttachmentConnection>;
47811
48035
  attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
47812
48036
  attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
@@ -47886,6 +48110,7 @@ export declare type JiraQuery = {
47886
48110
  jiraCalendar?: Maybe<JiraCalendar>;
47887
48111
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
47888
48112
  jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
48113
+ jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
47889
48114
  jiraProject?: Maybe<JiraProject>;
47890
48115
  jiraProjectByKey?: Maybe<JiraProject>;
47891
48116
  jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
@@ -47985,6 +48210,10 @@ export declare type JiraQueryAdvancedRoadmapsNavigationArgs = {
47985
48210
  export declare type JiraQueryAllGrantTypeKeysArgs = {
47986
48211
  cloudId: Scalars['ID']['input'];
47987
48212
  };
48213
+ export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
48214
+ cloudId: Scalars['ID']['input'];
48215
+ first?: InputMaybe<Scalars['Int']['input']>;
48216
+ };
47988
48217
  export declare type JiraQueryAllJiraProjectCategoriesArgs = {
47989
48218
  after?: InputMaybe<Scalars['String']['input']>;
47990
48219
  before?: InputMaybe<Scalars['String']['input']>;
@@ -48036,6 +48265,9 @@ export declare type JiraQueryAtlassianIntelligenceActionArgs = {
48036
48265
  export declare type JiraQueryAttachmentByAriArgs = {
48037
48266
  attachmentAri: Scalars['ID']['input'];
48038
48267
  };
48268
+ export declare type JiraQueryAttachmentByAriV2Args = {
48269
+ attachmentAri: Scalars['ID']['input'];
48270
+ };
48039
48271
  export declare type JiraQueryAttachmentSearchArgs = {
48040
48272
  after?: InputMaybe<Scalars['String']['input']>;
48041
48273
  before?: InputMaybe<Scalars['String']['input']>;
@@ -48400,6 +48632,10 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
48400
48632
  first?: InputMaybe<Scalars['Int']['input']>;
48401
48633
  last?: InputMaybe<Scalars['Int']['input']>;
48402
48634
  };
48635
+ export declare type JiraQueryJiraJourneyConfigurationArgs = {
48636
+ cloudId: Scalars['ID']['input'];
48637
+ id: Scalars['ID']['input'];
48638
+ };
48403
48639
  export declare type JiraQueryJiraProjectArgs = {
48404
48640
  id: Scalars['ID']['input'];
48405
48641
  };
@@ -51213,6 +51449,7 @@ export declare type JiraSubscription = {
51213
51449
  __typename?: 'JiraSubscription';
51214
51450
  bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
51215
51451
  onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
51452
+ onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
51216
51453
  onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
51217
51454
  onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
51218
51455
  onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
@@ -51237,6 +51474,10 @@ export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
51237
51474
  cloudId: Scalars['ID']['input'];
51238
51475
  projectIds: Array<Scalars['String']['input']>;
51239
51476
  };
51477
+ export declare type JiraSubscriptionOnAttachmentCreatedByProjectsV2Args = {
51478
+ cloudId: Scalars['ID']['input'];
51479
+ projectIds: Array<Scalars['String']['input']>;
51480
+ };
51240
51481
  export declare type JiraSubscriptionOnAttachmentDeletedByProjectsArgs = {
51241
51482
  cloudId: Scalars['ID']['input'];
51242
51483
  projectIds: Array<Scalars['String']['input']>;
@@ -53508,7 +53749,7 @@ export declare type JsmChatCreateConversationResponse = {
53508
53749
  export declare type JsmChatCreateWebConversationMessage = {
53509
53750
  __typename?: 'JsmChatCreateWebConversationMessage';
53510
53751
  appendices?: Maybe<Array<Maybe<JsmChatConversationAppendixAction>>>;
53511
- authorType: Scalars['String']['output'];
53752
+ authorType: JsmChatCreateWebConversationUserRole;
53512
53753
  content: Scalars['JSON']['output'];
53513
53754
  contentType: JsmChatCreateWebConversationMessageContentType;
53514
53755
  id: Scalars['ID']['output'];
@@ -53526,6 +53767,13 @@ export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
53526
53767
  errors?: Maybe<Array<MutationError>>;
53527
53768
  success: Scalars['Boolean']['output'];
53528
53769
  };
53770
+ export declare enum JsmChatCreateWebConversationUserRole {
53771
+ Init = "Init",
53772
+ JsmAgent = "JSM_Agent",
53773
+ Participant = "Participant",
53774
+ Reporter = "Reporter",
53775
+ VirtualAgent = "VirtualAgent"
53776
+ }
53529
53777
  export declare type JsmChatDeleteSlackChannelMappingOutput = {
53530
53778
  __typename?: 'JsmChatDeleteSlackChannelMappingOutput';
53531
53779
  message?: Maybe<Scalars['String']['output']>;
@@ -53627,6 +53875,7 @@ export declare type JsmChatMsTeamsUpdatedProjectSettings = {
53627
53875
  export declare type JsmChatMutation = {
53628
53876
  __typename?: 'JsmChatMutation';
53629
53877
  addConversationInteraction?: Maybe<JsmChatAddConversationInteractionPayload>;
53878
+ addWebConversationInteraction?: Maybe<JsmChatWebAddConversationInteractionPayload>;
53630
53879
  createChannel: JsmChatCreateChannelOutput;
53631
53880
  createComment?: Maybe<JsmChatCreateCommentOutput>;
53632
53881
  createConversation?: Maybe<JsmChatCreateConversationPayload>;
@@ -53646,6 +53895,11 @@ export declare type JsmChatMutationAddConversationInteractionArgs = {
53646
53895
  input: JsmChatAddConversationInteractionInput;
53647
53896
  workspaceAri: Scalars['ID']['input'];
53648
53897
  };
53898
+ export declare type JsmChatMutationAddWebConversationInteractionArgs = {
53899
+ conversationId: Scalars['ID']['input'];
53900
+ input: JsmChatWebAddConversationInteractionInput;
53901
+ workspaceAri: Scalars['ID']['input'];
53902
+ };
53649
53903
  export declare type JsmChatMutationCreateChannelArgs = {
53650
53904
  input?: InputMaybe<JsmChatCreateChannelInput>;
53651
53905
  jiraProjectAri: Scalars['ID']['input'];
@@ -53784,10 +54038,14 @@ export declare type JsmChatSlackConfig = {
53784
54038
  export declare type JsmChatSubscription = {
53785
54039
  __typename?: 'JsmChatSubscription';
53786
54040
  onConversationUpdate?: Maybe<JsmChatConversationUpdateSubscriptionPayload>;
54041
+ updateConversation?: Maybe<JsmChatWebSubscriptionResponse>;
53787
54042
  };
53788
54043
  export declare type JsmChatSubscriptionOnConversationUpdateArgs = {
53789
54044
  conversationId: Scalars['ID']['input'];
53790
54045
  };
54046
+ export declare type JsmChatSubscriptionUpdateConversationArgs = {
54047
+ conversationId: Scalars['ID']['input'];
54048
+ };
53791
54049
  export declare type JsmChatSubscriptionEstablishedPayload = {
53792
54050
  __typename?: 'JsmChatSubscriptionEstablishedPayload';
53793
54051
  id: Scalars['ID']['output'];
@@ -53853,6 +54111,48 @@ export declare type JsmChatUpdatedProjectSettings = {
53853
54111
  requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
53854
54112
  requesterThreadMessageDisabled: Scalars['Boolean']['input'];
53855
54113
  };
54114
+ export declare type JsmChatWebAddConversationInteractionInput = {
54115
+ authorId: Scalars['String']['input'];
54116
+ interactionType: JsmChatWebInteractionType;
54117
+ jiraFieldId?: InputMaybe<Scalars['String']['input']>;
54118
+ selectedValue: Scalars['String']['input'];
54119
+ };
54120
+ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
54121
+ __typename?: 'JsmChatWebAddConversationInteractionPayload';
54122
+ errors?: Maybe<Array<MutationError>>;
54123
+ success: Scalars['Boolean']['output'];
54124
+ };
54125
+ export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
54126
+ export declare enum JsmChatWebConversationMessageContentType {
54127
+ Adf = "ADF"
54128
+ }
54129
+ export declare type JsmChatWebConversationUpdateQueryError = {
54130
+ __typename?: 'JsmChatWebConversationUpdateQueryError';
54131
+ extensions?: Maybe<Array<QueryErrorExtension>>;
54132
+ identifier?: Maybe<Scalars['ID']['output']>;
54133
+ message?: Maybe<Scalars['String']['output']>;
54134
+ };
54135
+ export declare type JsmChatWebConversationUpdateSubscriptionPayload = JsmChatWebConversationUpdateQueryError | JsmChatWebSubscriptionEstablishedPayload;
54136
+ export declare enum JsmChatWebConversationUserRole {
54137
+ JsmAgent = "JSM_Agent",
54138
+ Participant = "Participant",
54139
+ Reporter = "Reporter",
54140
+ VirtualAgent = "VirtualAgent"
54141
+ }
54142
+ export declare enum JsmChatWebInteractionType {
54143
+ Buttons = "BUTTONS",
54144
+ Dropdown = "DROPDOWN",
54145
+ JiraField = "JIRA_FIELD"
54146
+ }
54147
+ export declare type JsmChatWebSubscriptionEstablishedPayload = {
54148
+ __typename?: 'JsmChatWebSubscriptionEstablishedPayload';
54149
+ id: Scalars['ID']['output'];
54150
+ };
54151
+ export declare type JsmChatWebSubscriptionResponse = {
54152
+ __typename?: 'JsmChatWebSubscriptionResponse';
54153
+ conversation?: Maybe<JsmChatMessageEdge>;
54154
+ result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
54155
+ };
53856
54156
  export declare type JswAvailableCardLayoutField = Node & {
53857
54157
  __typename?: 'JswAvailableCardLayoutField';
53858
54158
  fieldId: Scalars['ID']['output'];
@@ -54194,6 +54494,7 @@ export declare type KnowledgeBaseSource = {
54194
54494
  entityReference: Scalars['String']['output'];
54195
54495
  id: Scalars['ID']['output'];
54196
54496
  name: Scalars['String']['output'];
54497
+ permissions?: Maybe<KnowledgeBaseSourcePermissions>;
54197
54498
  url: Scalars['String']['output'];
54198
54499
  };
54199
54500
  export declare type KnowledgeBaseSourceEdge = {
@@ -54201,6 +54502,7 @@ export declare type KnowledgeBaseSourceEdge = {
54201
54502
  cursor?: Maybe<Scalars['String']['output']>;
54202
54503
  node: KnowledgeBaseSource;
54203
54504
  };
54505
+ export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionResponse | QueryError;
54204
54506
  export declare type KnowledgeBaseSources = {
54205
54507
  __typename?: 'KnowledgeBaseSources';
54206
54508
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
@@ -54419,16 +54721,6 @@ export declare enum KnowledgeDiscoveryEntityType {
54419
54721
  Topic = "TOPIC",
54420
54722
  User = "USER"
54421
54723
  }
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
54724
  export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
54433
54725
  __typename?: 'KnowledgeDiscoveryJiraProject';
54434
54726
  id: Scalars['ID']['output'];
@@ -54493,7 +54785,6 @@ export declare type KnowledgeDiscoveryQueryApi = {
54493
54785
  bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
54494
54786
  definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
54495
54787
  definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
54496
- extendedTopic?: Maybe<KnowledgeDiscoveryExtendedTopicResult>;
54497
54788
  keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
54498
54789
  relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
54499
54790
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
@@ -54536,12 +54827,6 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
54536
54827
  spaceId?: InputMaybe<Scalars['String']['input']>;
54537
54828
  workspaceId: Scalars['String']['input'];
54538
54829
  };
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
54830
  export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
54546
54831
  after?: InputMaybe<Scalars['String']['input']>;
54547
54832
  cloudId?: InputMaybe<Scalars['String']['input']>;
@@ -54589,11 +54874,6 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
54589
54874
  transformedQuery: Scalars['String']['output'];
54590
54875
  };
54591
54876
  export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
54592
- export declare enum KnowledgeDiscoverySummaryLength {
54593
- Large = "LARGE",
54594
- Medium = "MEDIUM",
54595
- Small = "SMALL"
54596
- }
54597
54877
  export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
54598
54878
  __typename?: 'KnowledgeDiscoveryTopic';
54599
54879
  description: Scalars['String']['output'];
@@ -55984,6 +56264,11 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
55984
56264
  __typename?: 'MarketplaceStoreAnonymousUserLinks';
55985
56265
  login: Scalars['String']['output'];
55986
56266
  };
56267
+ export declare enum MarketplaceStoreAtlassianProductHostingType {
56268
+ Cloud = "CLOUD",
56269
+ Datacenter = "DATACENTER",
56270
+ Server = "SERVER"
56271
+ }
55987
56272
  export declare type MarketplaceStoreCategoryHeroSection = {
55988
56273
  __typename?: 'MarketplaceStoreCategoryHeroSection';
55989
56274
  backgroundColor: Scalars['String']['output'];
@@ -56036,6 +56321,20 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
56036
56321
  title: Scalars['String']['output'];
56037
56322
  };
56038
56323
  export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
56324
+ export declare type MarketplaceStoreCurrentUserReviewResponse = {
56325
+ __typename?: 'MarketplaceStoreCurrentUserReviewResponse';
56326
+ author?: Maybe<MarketplaceStoreReviewAuthor>;
56327
+ date?: Maybe<Scalars['String']['output']>;
56328
+ helpfulVotes?: Maybe<Scalars['Int']['output']>;
56329
+ hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
56330
+ id: Scalars['ID']['output'];
56331
+ response?: Maybe<Scalars['String']['output']>;
56332
+ review?: Maybe<Scalars['String']['output']>;
56333
+ stars?: Maybe<Scalars['Int']['output']>;
56334
+ status?: Maybe<Scalars['String']['output']>;
56335
+ totalVotes?: Maybe<Scalars['Int']['output']>;
56336
+ userHasComplianceConsent?: Maybe<Scalars['Boolean']['output']>;
56337
+ };
56039
56338
  export declare type MarketplaceStoreDeveloperSpace = {
56040
56339
  __typename?: 'MarketplaceStoreDeveloperSpace';
56041
56340
  name: Scalars['String']['output'];
@@ -56068,6 +56367,10 @@ export declare enum MarketplaceStoreEditionType {
56068
56367
  export declare type MarketplaceStoreEditionsInput = {
56069
56368
  appId?: InputMaybe<Scalars['String']['input']>;
56070
56369
  };
56370
+ export declare type MarketplaceStoreGeoIpResponse = {
56371
+ __typename?: 'MarketplaceStoreGeoIPResponse';
56372
+ countryCode: Scalars['String']['output'];
56373
+ };
56071
56374
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
56072
56375
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
56073
56376
  description: Scalars['String']['output'];
@@ -56298,14 +56601,23 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
56298
56601
  };
56299
56602
  export declare type MarketplaceStoreQueryApi = {
56300
56603
  __typename?: 'MarketplaceStoreQueryApi';
56604
+ appReviews: MarketplaceStoreReviewsResponse;
56301
56605
  category: MarketplaceStoreCategoryResponse;
56302
56606
  collection: MarketplaceStoreCollectionResponse;
56303
56607
  currentUser: MarketplaceStoreCurrentUserResponse;
56304
56608
  editions: Array<MarketplaceStoreEdition>;
56609
+ geoip: MarketplaceStoreGeoIpResponse;
56305
56610
  homePage: MarketplaceStoreHomePageResponse;
56306
56611
  installAppStatus: MarketplaceStoreInstallAppResponse;
56612
+ myReview: MarketplaceStoreCurrentUserReviewResponse;
56307
56613
  partner: MarketplaceStorePartnerResponse;
56308
56614
  };
56615
+ export declare type MarketplaceStoreQueryApiAppReviewsArgs = {
56616
+ appKey: Scalars['String']['input'];
56617
+ filter?: InputMaybe<MarketplaceStoreReviewFilterInput>;
56618
+ limit?: InputMaybe<Scalars['Int']['input']>;
56619
+ offset?: InputMaybe<Scalars['Int']['input']>;
56620
+ };
56309
56621
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
56310
56622
  slug: Scalars['String']['input'];
56311
56623
  };
@@ -56321,10 +56633,47 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
56321
56633
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
56322
56634
  id: Scalars['ID']['input'];
56323
56635
  };
56636
+ export declare type MarketplaceStoreQueryApiMyReviewArgs = {
56637
+ appKey: Scalars['String']['input'];
56638
+ };
56324
56639
  export declare type MarketplaceStoreQueryApiPartnerArgs = {
56325
56640
  developerId?: InputMaybe<Scalars['ID']['input']>;
56326
56641
  vendorId: Scalars['ID']['input'];
56327
56642
  };
56643
+ export declare type MarketplaceStoreReviewAuthor = {
56644
+ __typename?: 'MarketplaceStoreReviewAuthor';
56645
+ id: Scalars['ID']['output'];
56646
+ name?: Maybe<Scalars['String']['output']>;
56647
+ profileImage?: Maybe<Scalars['URL']['output']>;
56648
+ profileLink?: Maybe<Scalars['URL']['output']>;
56649
+ };
56650
+ export declare type MarketplaceStoreReviewFilterInput = {
56651
+ hosting?: InputMaybe<MarketplaceStoreAtlassianProductHostingType>;
56652
+ sort?: InputMaybe<MarketplaceStoreReviewsSorting>;
56653
+ };
56654
+ export declare type MarketplaceStoreReviewNode = {
56655
+ __typename?: 'MarketplaceStoreReviewNode';
56656
+ author?: Maybe<MarketplaceStoreReviewAuthor>;
56657
+ date?: Maybe<Scalars['String']['output']>;
56658
+ helpfulVotes?: Maybe<Scalars['Int']['output']>;
56659
+ hosting?: Maybe<MarketplaceStoreAtlassianProductHostingType>;
56660
+ id: Scalars['ID']['output'];
56661
+ response?: Maybe<Scalars['String']['output']>;
56662
+ review?: Maybe<Scalars['String']['output']>;
56663
+ stars?: Maybe<Scalars['Int']['output']>;
56664
+ totalVotes?: Maybe<Scalars['Int']['output']>;
56665
+ };
56666
+ export declare type MarketplaceStoreReviewsResponse = {
56667
+ __typename?: 'MarketplaceStoreReviewsResponse';
56668
+ averageStars: Scalars['Float']['output'];
56669
+ id: Scalars['ID']['output'];
56670
+ reviews: Array<Maybe<MarketplaceStoreReviewNode>>;
56671
+ totalCount: Scalars['Int']['output'];
56672
+ };
56673
+ export declare enum MarketplaceStoreReviewsSorting {
56674
+ Helpful = "HELPFUL",
56675
+ Recent = "RECENT"
56676
+ }
56328
56677
  export declare type MarketplaceSupportedAtlassianProduct = {
56329
56678
  __typename?: 'MarketplaceSupportedAtlassianProduct';
56330
56679
  hostingOptions: Array<AtlassianProductHostingType>;
@@ -56531,6 +56880,24 @@ export declare type MercuryDeleteFocusAreaStatusUpdatePayload = Payload & {
56531
56880
  errors?: Maybe<Array<MutationError>>;
56532
56881
  success: Scalars['Boolean']['output'];
56533
56882
  };
56883
+ export declare type MercuryDeleteFocusAreaWorkLinkInput = {
56884
+ cloudId: Scalars['ID']['input'];
56885
+ id: Scalars['ID']['input'];
56886
+ };
56887
+ export declare type MercuryDeleteFocusAreaWorkLinkPayload = Payload & {
56888
+ __typename?: 'MercuryDeleteFocusAreaWorkLinkPayload';
56889
+ errors?: Maybe<Array<MutationError>>;
56890
+ success: Scalars['Boolean']['output'];
56891
+ };
56892
+ export declare type MercuryDeleteFocusAreaWorkLinksInput = {
56893
+ focusAreaAri: Scalars['String']['input'];
56894
+ workAris: Array<Scalars['String']['input']>;
56895
+ };
56896
+ export declare type MercuryDeleteFocusAreaWorkLinksPayload = Payload & {
56897
+ __typename?: 'MercuryDeleteFocusAreaWorkLinksPayload';
56898
+ errors?: Maybe<Array<MutationError>>;
56899
+ success: Scalars['Boolean']['output'];
56900
+ };
56534
56901
  export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
56535
56902
  cloudId: Scalars['ID']['input'];
56536
56903
  focusAreaIds: Array<Scalars['ID']['input']>;
@@ -56859,6 +57226,15 @@ export declare type MercuryHumanResourcesAllocation = {
56859
57226
  totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
56860
57227
  totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
56861
57228
  };
57229
+ export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
57230
+ focusAreaAri: Scalars['String']['input'];
57231
+ workAris: Array<Scalars['String']['input']>;
57232
+ };
57233
+ export declare type MercuryLinkAtlassianWorkToFocusAreaPayload = Payload & {
57234
+ __typename?: 'MercuryLinkAtlassianWorkToFocusAreaPayload';
57235
+ errors?: Maybe<Array<MutationError>>;
57236
+ success: Scalars['Boolean']['output'];
57237
+ };
56862
57238
  export declare type MercuryLinkFocusAreasToFocusAreaInput = {
56863
57239
  childFocusAreaIds: Array<Scalars['ID']['input']>;
56864
57240
  cloudId: Scalars['ID']['input'];
@@ -56888,6 +57264,18 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
56888
57264
  errors?: Maybe<Array<MutationError>>;
56889
57265
  success: Scalars['Boolean']['output'];
56890
57266
  };
57267
+ export declare type MercuryLinkWorkToFocusAreaInput = {
57268
+ cloudId: Scalars['ID']['input'];
57269
+ externalChildWorkIds: Array<Scalars['ID']['input']>;
57270
+ parentFocusAreaId: Scalars['ID']['input'];
57271
+ providerKey: Scalars['String']['input'];
57272
+ workContainerAri?: InputMaybe<Scalars['String']['input']>;
57273
+ };
57274
+ export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
57275
+ __typename?: 'MercuryLinkWorkToFocusAreaPayload';
57276
+ errors?: Maybe<Array<MutationError>>;
57277
+ success: Scalars['Boolean']['output'];
57278
+ };
56891
57279
  export declare type MercuryMediaToken = {
56892
57280
  __typename?: 'MercuryMediaToken';
56893
57281
  token: Scalars['String']['output'];
@@ -57015,6 +57403,7 @@ export declare type MercuryPortfolio = Node & {
57015
57403
  __typename?: 'MercuryPortfolio';
57016
57404
  aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
57017
57405
  allocations?: Maybe<MercuryPortfolioAllocations>;
57406
+ ari: Scalars['String']['output'];
57018
57407
  funding?: Maybe<MercuryPortfolioFunding>;
57019
57408
  id: Scalars['ID']['output'];
57020
57409
  linkedFocusAreaGoalCount: Scalars['Int']['output'];
@@ -57126,6 +57515,25 @@ export declare type MercuryProviderMultiResolutionIcon = {
57126
57515
  small?: Maybe<Scalars['URL']['output']>;
57127
57516
  xlarge?: Maybe<Scalars['URL']['output']>;
57128
57517
  };
57518
+ export declare type MercuryProviderOrchestrationMutationApi = {
57519
+ __typename?: 'MercuryProviderOrchestrationMutationApi';
57520
+ deleteFocusAreaWorkLink?: Maybe<MercuryDeleteFocusAreaWorkLinkPayload>;
57521
+ deleteFocusAreaWorkLinks?: Maybe<MercuryDeleteFocusAreaWorkLinksPayload>;
57522
+ linkAtlassianWorkToFocusArea?: Maybe<MercuryLinkAtlassianWorkToFocusAreaPayload>;
57523
+ linkWorkToFocusArea?: Maybe<MercuryLinkWorkToFocusAreaPayload>;
57524
+ };
57525
+ export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinkArgs = {
57526
+ input: MercuryDeleteFocusAreaWorkLinkInput;
57527
+ };
57528
+ export declare type MercuryProviderOrchestrationMutationApiDeleteFocusAreaWorkLinksArgs = {
57529
+ input: MercuryDeleteFocusAreaWorkLinksInput;
57530
+ };
57531
+ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFocusAreaArgs = {
57532
+ input: MercuryLinkAtlassianWorkToFocusAreaInput;
57533
+ };
57534
+ export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
57535
+ input: MercuryLinkWorkToFocusAreaInput;
57536
+ };
57129
57537
  export declare type MercuryProviderUser = {
57130
57538
  id: Scalars['ID']['output'];
57131
57539
  name?: Maybe<Scalars['String']['output']>;
@@ -57874,6 +58282,7 @@ export declare type Mutation = {
57874
58282
  marketplaceConsole: MarketplaceConsoleMutationApi;
57875
58283
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
57876
58284
  mercury?: Maybe<MercuryMutationApi>;
58285
+ mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
57877
58286
  moveSprintDown?: Maybe<MoveSprintDownResponse>;
57878
58287
  moveSprintUp?: Maybe<MoveSprintUpResponse>;
57879
58288
  notifications?: Maybe<InfluentsNotificationMutation>;
@@ -64260,6 +64669,7 @@ export declare type SearchConfluenceFilter = {
64260
64669
  creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
64261
64670
  isVerified?: InputMaybe<Scalars['Boolean']['input']>;
64262
64671
  labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
64672
+ owners?: InputMaybe<Array<Scalars['String']['input']>>;
64263
64673
  pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
64264
64674
  range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
64265
64675
  spacesFilter?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -67821,6 +68231,7 @@ export declare type TownsquareGoal = Node & {
67821
68231
  description?: Maybe<Scalars['String']['output']>;
67822
68232
  dueDate?: Maybe<TownsquareTargetDate>;
67823
68233
  goalType?: Maybe<TownsquareGoalType>;
68234
+ icon?: Maybe<TownsquareGoalIcon>;
67824
68235
  iconData?: Maybe<Scalars['String']['output']>;
67825
68236
  id: Scalars['ID']['output'];
67826
68237
  isArchived: Scalars['Boolean']['output'];
@@ -67850,6 +68261,17 @@ export declare type TownsquareGoalEdge = {
67850
68261
  cursor: Scalars['String']['output'];
67851
68262
  node?: Maybe<TownsquareGoal>;
67852
68263
  };
68264
+ export declare type TownsquareGoalIcon = {
68265
+ __typename?: 'TownsquareGoalIcon';
68266
+ appearance?: Maybe<TownsquareGoalIconAppearance>;
68267
+ key?: Maybe<TownsquareGoalTypeIconKey>;
68268
+ };
68269
+ export declare enum TownsquareGoalIconAppearance {
68270
+ AtRisk = "AT_RISK",
68271
+ Default = "DEFAULT",
68272
+ OffTrack = "OFF_TRACK",
68273
+ OnTrack = "ON_TRACK"
68274
+ }
67853
68275
  export declare enum TownsquareGoalSortEnum {
67854
68276
  CreationDateAsc = "CREATION_DATE_ASC",
67855
68277
  CreationDateDesc = "CREATION_DATE_DESC",
@@ -67892,6 +68314,7 @@ export declare type TownsquareGoalType = Node & {
67892
68314
  __typename?: 'TownsquareGoalType';
67893
68315
  allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
67894
68316
  allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
68317
+ icon?: Maybe<TownsquareGoalTypeIcon>;
67895
68318
  id: Scalars['ID']['output'];
67896
68319
  name?: Maybe<TownsquareGoalTypeName>;
67897
68320
  state?: Maybe<TownsquareGoalTypeState>;
@@ -67920,6 +68343,15 @@ export declare type TownsquareGoalTypeEdge = {
67920
68343
  cursor: Scalars['String']['output'];
67921
68344
  node?: Maybe<TownsquareGoalType>;
67922
68345
  };
68346
+ export declare type TownsquareGoalTypeIcon = {
68347
+ __typename?: 'TownsquareGoalTypeIcon';
68348
+ key?: Maybe<TownsquareGoalTypeIconKey>;
68349
+ };
68350
+ export declare enum TownsquareGoalTypeIconKey {
68351
+ Goal = "GOAL",
68352
+ KeyResult = "KEY_RESULT",
68353
+ Objective = "OBJECTIVE"
68354
+ }
67923
68355
  export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
67924
68356
  export declare enum TownsquareGoalTypeState {
67925
68357
  Disabled = "DISABLED",
@@ -69124,12 +69556,18 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
69124
69556
  __typename?: 'TrelloPlannerCalendar';
69125
69557
  color: Scalars['String']['output'];
69126
69558
  enabled: Scalars['Boolean']['output'];
69559
+ events?: Maybe<TrelloPlannerCalendarEventConnection>;
69127
69560
  id: Scalars['ID']['output'];
69128
69561
  objectId: Scalars['ID']['output'];
69129
69562
  timezone: Scalars['String']['output'];
69130
69563
  title: Scalars['String']['output'];
69131
69564
  type: TrelloSupportedPlannerProviders;
69132
69565
  };
69566
+ export declare type TrelloPlannerCalendarEventsArgs = {
69567
+ after?: InputMaybe<Scalars['String']['input']>;
69568
+ filter: TrelloPlannerCalendarEventsFilter;
69569
+ first?: InputMaybe<Scalars['Int']['input']>;
69570
+ };
69133
69571
  export declare type TrelloPlannerCalendarAccount = Node & {
69134
69572
  __typename?: 'TrelloPlannerCalendarAccount';
69135
69573
  accountType: TrelloSupportedPlannerProviders;
@@ -69169,14 +69607,67 @@ export declare type TrelloPlannerCalendarEdge = {
69169
69607
  cursor?: Maybe<Scalars['String']['output']>;
69170
69608
  node?: Maybe<TrelloPlannerCalendar>;
69171
69609
  };
69610
+ export declare type TrelloPlannerCalendarEvent = Node & {
69611
+ __typename?: 'TrelloPlannerCalendarEvent';
69612
+ allDay: Scalars['Boolean']['output'];
69613
+ busy: Scalars['Boolean']['output'];
69614
+ conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
69615
+ createdByTrello: Scalars['Boolean']['output'];
69616
+ description?: Maybe<Scalars['String']['output']>;
69617
+ endAt: Scalars['DateTime']['output'];
69618
+ id: Scalars['ID']['output'];
69619
+ parentEventId?: Maybe<Scalars['ID']['output']>;
69620
+ readOnly: Scalars['Boolean']['output'];
69621
+ startAt: Scalars['DateTime']['output'];
69622
+ status: TrelloPlannerCalendarEventStatus;
69623
+ title: Scalars['String']['output'];
69624
+ type: TrelloSupportedPlannerProviders;
69625
+ visibility: TrelloPlannerCalendarEventVisibility;
69626
+ };
69627
+ export declare type TrelloPlannerCalendarEventConferencing = {
69628
+ __typename?: 'TrelloPlannerCalendarEventConferencing';
69629
+ url: Scalars['String']['output'];
69630
+ };
69631
+ export declare type TrelloPlannerCalendarEventConnection = {
69632
+ __typename?: 'TrelloPlannerCalendarEventConnection';
69633
+ edges?: Maybe<Array<TrelloPlannerCalendarEventEdge>>;
69634
+ nodes?: Maybe<Array<TrelloPlannerCalendarEvent>>;
69635
+ pageInfo: PageInfo;
69636
+ updateCursor?: Maybe<Scalars['String']['output']>;
69637
+ };
69638
+ export declare type TrelloPlannerCalendarEventEdge = {
69639
+ __typename?: 'TrelloPlannerCalendarEventEdge';
69640
+ cursor?: Maybe<Scalars['String']['output']>;
69641
+ node?: Maybe<TrelloPlannerCalendarEvent>;
69642
+ };
69643
+ export declare enum TrelloPlannerCalendarEventStatus {
69644
+ Cancelled = "CANCELLED",
69645
+ Confirmed = "CONFIRMED",
69646
+ Tentative = "TENTATIVE"
69647
+ }
69648
+ export declare enum TrelloPlannerCalendarEventVisibility {
69649
+ Default = "DEFAULT",
69650
+ Private = "PRIVATE",
69651
+ Public = "PUBLIC"
69652
+ }
69653
+ export declare type TrelloPlannerCalendarEventsFilter = {
69654
+ end: Scalars['DateTime']['input'];
69655
+ start: Scalars['DateTime']['input'];
69656
+ };
69172
69657
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
69173
69658
  __typename?: 'TrelloPlannerProviderCalendar';
69174
69659
  color: Scalars['String']['output'];
69660
+ events?: Maybe<TrelloPlannerCalendarEventConnection>;
69175
69661
  id: Scalars['ID']['output'];
69176
69662
  timezone: Scalars['String']['output'];
69177
69663
  title: Scalars['String']['output'];
69178
69664
  type: TrelloSupportedPlannerProviders;
69179
69665
  };
69666
+ export declare type TrelloPlannerProviderCalendarEventsArgs = {
69667
+ after?: InputMaybe<Scalars['String']['input']>;
69668
+ filter?: InputMaybe<TrelloPlannerCalendarEventsFilter>;
69669
+ first?: InputMaybe<Scalars['Int']['input']>;
69670
+ };
69180
69671
  export declare type TrelloPlannerProviderCalendarConnection = {
69181
69672
  __typename?: 'TrelloPlannerProviderCalendarConnection';
69182
69673
  edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
@@ -70243,12 +70734,14 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
70243
70734
  name: Scalars['String']['input'];
70244
70735
  };
70245
70736
  export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
70737
+ description?: InputMaybe<Scalars['String']['input']>;
70246
70738
  id: Scalars['ID']['input'];
70247
70739
  name?: InputMaybe<Scalars['String']['input']>;
70248
70740
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
70249
70741
  weight?: InputMaybe<Scalars['Int']['input']>;
70250
70742
  };
70251
70743
  export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
70744
+ description?: InputMaybe<Scalars['String']['input']>;
70252
70745
  fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
70253
70746
  id: Scalars['ID']['input'];
70254
70747
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70256,6 +70749,7 @@ export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
70256
70749
  weight?: InputMaybe<Scalars['Int']['input']>;
70257
70750
  };
70258
70751
  export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
70752
+ description?: InputMaybe<Scalars['String']['input']>;
70259
70753
  id: Scalars['ID']['input'];
70260
70754
  linkType?: InputMaybe<CompassLinkType>;
70261
70755
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70268,6 +70762,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
70268
70762
  automaticallyCreateMetricSources?: InputMaybe<Scalars['Boolean']['input']>;
70269
70763
  comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
70270
70764
  comparatorValue?: InputMaybe<Scalars['Float']['input']>;
70765
+ description?: InputMaybe<Scalars['String']['input']>;
70271
70766
  id: Scalars['ID']['input'];
70272
70767
  metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
70273
70768
  name?: InputMaybe<Scalars['String']['input']>;
@@ -70275,6 +70770,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
70275
70770
  weight?: InputMaybe<Scalars['Int']['input']>;
70276
70771
  };
70277
70772
  export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
70773
+ description?: InputMaybe<Scalars['String']['input']>;
70278
70774
  id: Scalars['ID']['input'];
70279
70775
  name?: InputMaybe<Scalars['String']['input']>;
70280
70776
  scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
@@ -70299,7 +70795,9 @@ export declare type UpdateCompassScorecardCriteriaInput = {
70299
70795
  hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
70300
70796
  };
70301
70797
  export declare type UpdateCompassScorecardInput = {
70798
+ componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
70302
70799
  componentLabelNames?: InputMaybe<Array<Scalars['String']['input']>>;
70800
+ componentLifecycleStages?: InputMaybe<CompassLifecycleFilterInput>;
70303
70801
  componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
70304
70802
  componentTierValues?: InputMaybe<Array<Scalars['String']['input']>>;
70305
70803
  componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -71392,6 +71890,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
71392
71890
  pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
71393
71891
  recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
71394
71892
  sortOrder?: Maybe<WorkSuggestionsOrder>;
71893
+ stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
71395
71894
  };
71396
71895
  export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
71397
71896
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -71663,6 +72162,11 @@ export declare type WorkSuggestionsPeriscopeTask = {
71663
72162
  title: Scalars['String']['output'];
71664
72163
  url: Scalars['String']['output'];
71665
72164
  };
72165
+ export declare type WorkSuggestionsPriority = {
72166
+ __typename?: 'WorkSuggestionsPriority';
72167
+ iconUrl?: Maybe<Scalars['String']['output']>;
72168
+ name?: Maybe<Scalars['String']['output']>;
72169
+ };
71666
72170
  export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
71667
72171
  __typename?: 'WorkSuggestionsPullRequestDraftTask';
71668
72172
  approvalsCount: Scalars['Int']['output'];
@@ -71756,6 +72260,21 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
71756
72260
  success: Scalars['Boolean']['output'];
71757
72261
  userProfile?: Maybe<WorkSuggestionsUserProfile>;
71758
72262
  };
72263
+ export declare type WorkSuggestionsStuckData = {
72264
+ __typename?: 'WorkSuggestionsStuckData';
72265
+ thresholdInSeconds?: Maybe<Scalars['Long']['output']>;
72266
+ timeInSeconds?: Maybe<Scalars['Long']['output']>;
72267
+ };
72268
+ export declare type WorkSuggestionsStuckIssueTask = WorkSuggestionsPeriscopeTask & {
72269
+ __typename?: 'WorkSuggestionsStuckIssueTask';
72270
+ assignee?: Maybe<WorkSuggestionsJiraAssignee>;
72271
+ id: Scalars['String']['output'];
72272
+ orderScore?: Maybe<WorkSuggestionsOrderScore>;
72273
+ priority?: Maybe<WorkSuggestionsPriority>;
72274
+ stuckData?: Maybe<WorkSuggestionsStuckData>;
72275
+ title: Scalars['String']['output'];
72276
+ url: Scalars['String']['output'];
72277
+ };
71759
72278
  export declare enum WorkSuggestionsTargetAudience {
71760
72279
  Me = "ME",
71761
72280
  Team = "TEAM"