@forge/cli-shared 5.5.0-next.9 → 5.5.0

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.
@@ -2454,6 +2454,11 @@ export declare enum CcpDuration {
2454
2454
  Once = "ONCE",
2455
2455
  Repeating = "REPEATING"
2456
2456
  }
2457
+ export declare type CcpEffectiveUncollectibleAction = {
2458
+ __typename?: 'CcpEffectiveUncollectibleAction';
2459
+ destinationOffering?: Maybe<CcpOffering>;
2460
+ uncollectibleActionType?: Maybe<CcpOfferingUncollectibleActionType>;
2461
+ };
2457
2462
  export declare type CcpEntitlement = CommerceEntitlement & Node & {
2458
2463
  __typename?: 'CcpEntitlement';
2459
2464
  changeReason?: Maybe<Scalars['String']['output']>;
@@ -2531,6 +2536,8 @@ export declare type CcpEntitlementTemplate = {
2531
2536
  export declare type CcpEntitlementUsage = {
2532
2537
  __typename?: 'CcpEntitlementUsage';
2533
2538
  offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
2539
+ usageAmount?: Maybe<Scalars['Float']['output']>;
2540
+ usageIdentifier?: Maybe<Scalars['String']['output']>;
2534
2541
  };
2535
2542
  export declare type CcpExperienceCapability = CommerceExperienceCapability & {
2536
2543
  __typename?: 'CcpExperienceCapability';
@@ -2571,6 +2578,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
2571
2578
  dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2572
2579
  derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
2573
2580
  derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
2581
+ effectiveUncollectibleAction?: Maybe<CcpEffectiveUncollectibleAction>;
2574
2582
  entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
2575
2583
  expiryDate?: Maybe<Scalars['Float']['output']>;
2576
2584
  hostingType?: Maybe<CcpOfferingHostingType>;
@@ -2632,6 +2640,11 @@ export declare enum CcpOfferingType {
2632
2640
  Child = "CHILD",
2633
2641
  Parent = "PARENT"
2634
2642
  }
2643
+ export declare enum CcpOfferingUncollectibleActionType {
2644
+ Cancel = "CANCEL",
2645
+ Downgrade = "DOWNGRADE",
2646
+ NoAction = "NO_ACTION"
2647
+ }
2635
2648
  export declare type CcpOrder = Node & {
2636
2649
  __typename?: 'CcpOrder';
2637
2650
  id: Scalars['ID']['output'];
@@ -3298,6 +3311,7 @@ export declare type CompassCatalogMutationApi = {
3298
3311
  detachEventSource?: Maybe<DetachEventSourcePayload>;
3299
3312
  insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
3300
3313
  insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
3314
+ migrateComponentType?: Maybe<MigrateComponentTypePayload>;
3301
3315
  reactivateScorecardForComponent?: Maybe<CompassReactivateScorecardForComponentPayload>;
3302
3316
  removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
3303
3317
  removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
@@ -3489,6 +3503,10 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
3489
3503
  export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
3490
3504
  input: CompassInsertMetricValueByExternalIdInput;
3491
3505
  };
3506
+ export declare type CompassCatalogMutationApiMigrateComponentTypeArgs = {
3507
+ cloudId: Scalars['ID']['input'];
3508
+ input: MigrateComponentTypeInput;
3509
+ };
3492
3510
  export declare type CompassCatalogMutationApiReactivateScorecardForComponentArgs = {
3493
3511
  componentId: Scalars['ID']['input'];
3494
3512
  scorecardId: Scalars['ID']['input'];
@@ -3739,7 +3757,9 @@ export declare type CompassComponent = Node & {
3739
3757
  announcements?: Maybe<Array<CompassAnnouncement>>;
3740
3758
  api?: Maybe<CompassComponentApi>;
3741
3759
  applicableScorecards?: Maybe<Array<CompassScorecard>>;
3760
+ appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
3742
3761
  changeMetadata: CompassChangeMetadata;
3762
+ componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
3743
3763
  customFields?: Maybe<Array<CompassCustomField>>;
3744
3764
  dataManager?: Maybe<CompassComponentDataManager>;
3745
3765
  deactivatedScorecards?: Maybe<CompassDeactivatedScorecardsConnection>;
@@ -3764,6 +3784,10 @@ export declare type CompassComponent = Node & {
3764
3784
  viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
3765
3785
  viewerSubscription?: Maybe<CompassViewerSubscription>;
3766
3786
  };
3787
+ export declare type CompassComponentAppliedScorecardsArgs = {
3788
+ after?: InputMaybe<Scalars['String']['input']>;
3789
+ first?: InputMaybe<Scalars['Int']['input']>;
3790
+ };
3767
3791
  export declare type CompassComponentDeactivatedScorecardsArgs = {
3768
3792
  after?: InputMaybe<Scalars['String']['input']>;
3769
3793
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -3909,6 +3933,13 @@ export declare type CompassComponentDeactivatedScorecardsEdge = {
3909
3933
  lastScorecardScore?: Maybe<Scalars['Int']['output']>;
3910
3934
  node?: Maybe<CompassDeactivatedScorecard>;
3911
3935
  };
3936
+ export declare type CompassComponentDescriptionDetails = {
3937
+ __typename?: 'CompassComponentDescriptionDetails';
3938
+ content: Scalars['String']['output'];
3939
+ };
3940
+ export declare type CompassComponentDescriptionDetailsInput = {
3941
+ content: Scalars['String']['input'];
3942
+ };
3912
3943
  export declare type CompassComponentEndpoint = {
3913
3944
  __typename?: 'CompassComponentEndpoint';
3914
3945
  checksum: Scalars['String']['output'];
@@ -3931,6 +3962,21 @@ export declare type CompassComponentEndpointEdge = {
3931
3962
  cursor: Scalars['String']['output'];
3932
3963
  node: CompassComponentEndpoint;
3933
3964
  };
3965
+ export declare type CompassComponentHasScorecardsAppliedConnection = {
3966
+ __typename?: 'CompassComponentHasScorecardsAppliedConnection';
3967
+ edges?: Maybe<Array<CompassComponentHasScorecardsAppliedEdge>>;
3968
+ nodes?: Maybe<Array<CompassScorecard>>;
3969
+ pageInfo: PageInfo;
3970
+ };
3971
+ export declare type CompassComponentHasScorecardsAppliedEdge = {
3972
+ __typename?: 'CompassComponentHasScorecardsAppliedEdge';
3973
+ activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
3974
+ cursor: Scalars['String']['output'];
3975
+ node?: Maybe<CompassScorecard>;
3976
+ };
3977
+ export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
3978
+ query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
3979
+ };
3934
3980
  export declare type CompassComponentInstancePermissions = {
3935
3981
  __typename?: 'CompassComponentInstancePermissions';
3936
3982
  applyScorecard?: Maybe<CompassPermissionResult>;
@@ -5928,12 +5974,16 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
5928
5974
  };
5929
5975
  export declare type CompassScorecardDeactivatedComponentsEdge = {
5930
5976
  __typename?: 'CompassScorecardDeactivatedComponentsEdge';
5977
+ activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
5931
5978
  cursor: Scalars['String']['output'];
5932
5979
  deactivatedBy?: Maybe<User>;
5933
5980
  deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
5934
5981
  lastScorecardScore?: Maybe<Scalars['Int']['output']>;
5935
5982
  node?: Maybe<CompassComponent>;
5936
5983
  };
5984
+ export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
5985
+ query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
5986
+ };
5937
5987
  export declare type CompassScorecardDeactivatedComponentsQuery = {
5938
5988
  filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
5939
5989
  sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
@@ -15881,6 +15931,7 @@ export declare type CustomerServiceAttributes = {
15881
15931
  };
15882
15932
  export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
15883
15933
  export declare type CustomerServiceContext = {
15934
+ issueId?: InputMaybe<Scalars['String']['input']>;
15884
15935
  type: CustomerServiceContextType;
15885
15936
  };
15886
15937
  export declare type CustomerServiceContextConfiguration = {
@@ -15946,6 +15997,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
15946
15997
  success: Scalars['Boolean']['output'];
15947
15998
  successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
15948
15999
  };
16000
+ export declare type CustomerServiceCustomDetailContextInput = {
16001
+ contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
16002
+ id: Scalars['ID']['input'];
16003
+ };
15949
16004
  export declare enum CustomerServiceCustomDetailCreateErrorCode {
15950
16005
  ColorNotSaved = "COLOR_NOT_SAVED"
15951
16006
  }
@@ -16213,6 +16268,7 @@ export declare type CustomerServiceMutationApi = {
16213
16268
  removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
16214
16269
  updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
16215
16270
  updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
16271
+ updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
16216
16272
  updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
16217
16273
  updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
16218
16274
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
@@ -16282,6 +16338,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
16282
16338
  export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
16283
16339
  input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
16284
16340
  };
16341
+ export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
16342
+ input: Array<CustomerServiceCustomDetailContextInput>;
16343
+ };
16285
16344
  export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
16286
16345
  input: CustomerServiceCustomDetailPermissionsUpdateInput;
16287
16346
  };
@@ -16571,6 +16630,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
16571
16630
  errors?: Maybe<Array<MutationError>>;
16572
16631
  success: Scalars['Boolean']['output'];
16573
16632
  };
16633
+ export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
16634
+ __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
16635
+ errors?: Maybe<Array<MutationError>>;
16636
+ success: Scalars['Boolean']['output'];
16637
+ successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
16638
+ };
16574
16639
  export declare type CustomerServiceUpdateCustomDetailValueInput = {
16575
16640
  id: CustomerServiceCustomDetailEntityTypeId;
16576
16641
  name: Scalars['String']['input'];
@@ -19034,9 +19099,10 @@ export declare type EcosystemMutationForgeAlertsArgs = {
19034
19099
  appId: Scalars['ID']['input'];
19035
19100
  };
19036
19101
  export declare type EcosystemMutationPublishAppClientEventArgs = {
19037
- contextAri: Scalars['String']['input'];
19038
- eventId?: InputMaybe<Scalars['String']['input']>;
19039
- extensionAri: Scalars['String']['input'];
19102
+ appId: Scalars['ID']['input'];
19103
+ channel: Scalars['String']['input'];
19104
+ contextAri: Scalars['ID']['input'];
19105
+ eventName?: InputMaybe<Scalars['String']['input']>;
19040
19106
  payload: Scalars['String']['input'];
19041
19107
  };
19042
19108
  export declare type EcosystemMutationRemoveAppContributorsArgs = {
@@ -19154,9 +19220,10 @@ export declare type EcosystemSubscription = {
19154
19220
  onAppClientEvent?: Maybe<EcosystemOnEventBody>;
19155
19221
  };
19156
19222
  export declare type EcosystemSubscriptionOnAppClientEventArgs = {
19157
- contextAri: Scalars['String']['input'];
19158
- eventId?: InputMaybe<Scalars['String']['input']>;
19159
- extensionAri: Scalars['String']['input'];
19223
+ appId: Scalars['ID']['input'];
19224
+ channel: Scalars['String']['input'];
19225
+ contextAri: Scalars['ID']['input'];
19226
+ eventName?: InputMaybe<Scalars['String']['input']>;
19160
19227
  };
19161
19228
  export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
19162
19229
  __typename?: 'EcosystemUpdateAppOAuthClientResult';
@@ -20177,6 +20244,7 @@ export declare type ForgeAlertsQuery = {
20177
20244
  isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
20178
20245
  rule?: Maybe<ForgeAlertsRuleResult>;
20179
20246
  ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
20247
+ ruleFilters?: Maybe<ForgeAlertsRuleFiltersResult>;
20180
20248
  rules?: Maybe<ForgeAlertsRulesResult>;
20181
20249
  };
20182
20250
  export declare type ForgeAlertsQueryAlertArgs = {
@@ -20209,6 +20277,9 @@ export declare type ForgeAlertsQueryRuleArgs = {
20209
20277
  export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
20210
20278
  query: ForgeAlertsRuleActivityLogsInput;
20211
20279
  };
20280
+ export declare type ForgeAlertsQueryRuleFiltersArgs = {
20281
+ input: ForgeAlertsRuleFiltersInput;
20282
+ };
20212
20283
  export declare type ForgeAlertsQueryIntervalInput = {
20213
20284
  end: Scalars['String']['input'];
20214
20285
  start: Scalars['String']['input'];
@@ -20302,12 +20373,20 @@ export declare type ForgeAlertsRuleFilters = {
20302
20373
  dimension: ForgeAlertsRuleFilterDimensions;
20303
20374
  value: Array<Scalars['String']['input']>;
20304
20375
  };
20376
+ export declare type ForgeAlertsRuleFiltersData = {
20377
+ __typename?: 'ForgeAlertsRuleFiltersData';
20378
+ filters: Array<ForgeAlertsMetricsLabelGroup>;
20379
+ };
20380
+ export declare type ForgeAlertsRuleFiltersInput = {
20381
+ environment: Scalars['String']['input'];
20382
+ };
20305
20383
  export declare type ForgeAlertsRuleFiltersResponse = {
20306
20384
  __typename?: 'ForgeAlertsRuleFiltersResponse';
20307
20385
  action: ForgeAlertsRuleFilterActions;
20308
20386
  dimension: ForgeAlertsRuleFilterDimensions;
20309
20387
  value: Array<Scalars['String']['output']>;
20310
20388
  };
20389
+ export declare type ForgeAlertsRuleFiltersResult = ForgeAlertsRuleFiltersData | QueryError;
20311
20390
  export declare enum ForgeAlertsRuleMetricType {
20312
20391
  InvocationCount = "INVOCATION_COUNT",
20313
20392
  InvocationErrors = "INVOCATION_ERRORS",
@@ -24936,6 +25015,7 @@ export declare type GraphStore = {
24936
25015
  testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
24937
25016
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
24938
25017
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25018
+ userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
24939
25019
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
24940
25020
  versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
24941
25021
  versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
@@ -25123,6 +25203,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
25123
25203
  after?: InputMaybe<Scalars['String']['input']>;
25124
25204
  first?: InputMaybe<Scalars['Int']['input']>;
25125
25205
  ids: Array<Scalars['ID']['input']>;
25206
+ sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
25126
25207
  };
25127
25208
  export declare type GraphStoreContentReferencedEntityInverseArgs = {
25128
25209
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25134,6 +25215,7 @@ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
25134
25215
  after?: InputMaybe<Scalars['String']['input']>;
25135
25216
  first?: InputMaybe<Scalars['Int']['input']>;
25136
25217
  ids: Array<Scalars['ID']['input']>;
25218
+ sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
25137
25219
  };
25138
25220
  export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
25139
25221
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25161,6 +25243,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
25161
25243
  after?: InputMaybe<Scalars['String']['input']>;
25162
25244
  first?: InputMaybe<Scalars['Int']['input']>;
25163
25245
  ids: Array<Scalars['ID']['input']>;
25246
+ sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
25164
25247
  };
25165
25248
  export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
25166
25249
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25172,6 +25255,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
25172
25255
  after?: InputMaybe<Scalars['String']['input']>;
25173
25256
  first?: InputMaybe<Scalars['Int']['input']>;
25174
25257
  ids: Array<Scalars['ID']['input']>;
25258
+ sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
25175
25259
  };
25176
25260
  export declare type GraphStoreFocusAreaHasAtlasGoalArgs = {
25177
25261
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25183,6 +25267,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalBatchArgs = {
25183
25267
  after?: InputMaybe<Scalars['String']['input']>;
25184
25268
  first?: InputMaybe<Scalars['Int']['input']>;
25185
25269
  ids: Array<Scalars['ID']['input']>;
25270
+ sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
25186
25271
  };
25187
25272
  export declare type GraphStoreFocusAreaHasAtlasGoalInverseArgs = {
25188
25273
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25194,6 +25279,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalInverseBatchArgs = {
25194
25279
  after?: InputMaybe<Scalars['String']['input']>;
25195
25280
  first?: InputMaybe<Scalars['Int']['input']>;
25196
25281
  ids: Array<Scalars['ID']['input']>;
25282
+ sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
25197
25283
  };
25198
25284
  export declare type GraphStoreFocusAreaHasFocusAreaArgs = {
25199
25285
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25205,6 +25291,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaBatchArgs = {
25205
25291
  after?: InputMaybe<Scalars['String']['input']>;
25206
25292
  first?: InputMaybe<Scalars['Int']['input']>;
25207
25293
  ids: Array<Scalars['ID']['input']>;
25294
+ sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
25208
25295
  };
25209
25296
  export declare type GraphStoreFocusAreaHasFocusAreaInverseArgs = {
25210
25297
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25216,6 +25303,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
25216
25303
  after?: InputMaybe<Scalars['String']['input']>;
25217
25304
  first?: InputMaybe<Scalars['Int']['input']>;
25218
25305
  ids: Array<Scalars['ID']['input']>;
25306
+ sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
25219
25307
  };
25220
25308
  export declare type GraphStoreFocusAreaHasProjectArgs = {
25221
25309
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25227,6 +25315,7 @@ export declare type GraphStoreFocusAreaHasProjectBatchArgs = {
25227
25315
  after?: InputMaybe<Scalars['String']['input']>;
25228
25316
  first?: InputMaybe<Scalars['Int']['input']>;
25229
25317
  ids: Array<Scalars['ID']['input']>;
25318
+ sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
25230
25319
  };
25231
25320
  export declare type GraphStoreFocusAreaHasProjectInverseArgs = {
25232
25321
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25238,6 +25327,7 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
25238
25327
  after?: InputMaybe<Scalars['String']['input']>;
25239
25328
  first?: InputMaybe<Scalars['Int']['input']>;
25240
25329
  ids: Array<Scalars['ID']['input']>;
25330
+ sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
25241
25331
  };
25242
25332
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
25243
25333
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25249,6 +25339,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
25249
25339
  after?: InputMaybe<Scalars['String']['input']>;
25250
25340
  first?: InputMaybe<Scalars['Int']['input']>;
25251
25341
  ids: Array<Scalars['ID']['input']>;
25342
+ sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
25252
25343
  };
25253
25344
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
25254
25345
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25260,6 +25351,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchAr
25260
25351
  after?: InputMaybe<Scalars['String']['input']>;
25261
25352
  first?: InputMaybe<Scalars['Int']['input']>;
25262
25353
  ids: Array<Scalars['ID']['input']>;
25354
+ sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
25263
25355
  };
25264
25356
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
25265
25357
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25276,6 +25368,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
25276
25368
  after?: InputMaybe<Scalars['String']['input']>;
25277
25369
  first?: InputMaybe<Scalars['Int']['input']>;
25278
25370
  ids: Array<Scalars['ID']['input']>;
25371
+ sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
25279
25372
  };
25280
25373
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
25281
25374
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25287,6 +25380,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseBat
25287
25380
  after?: InputMaybe<Scalars['String']['input']>;
25288
25381
  first?: InputMaybe<Scalars['Int']['input']>;
25289
25382
  ids: Array<Scalars['ID']['input']>;
25383
+ sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
25290
25384
  };
25291
25385
  export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
25292
25386
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25313,6 +25407,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
25313
25407
  after?: InputMaybe<Scalars['String']['input']>;
25314
25408
  first?: InputMaybe<Scalars['Int']['input']>;
25315
25409
  ids: Array<Scalars['ID']['input']>;
25410
+ sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
25316
25411
  };
25317
25412
  export declare type GraphStoreIncidentHasActionItemInverseArgs = {
25318
25413
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25324,6 +25419,7 @@ export declare type GraphStoreIncidentHasActionItemInverseBatchArgs = {
25324
25419
  after?: InputMaybe<Scalars['String']['input']>;
25325
25420
  first?: InputMaybe<Scalars['Int']['input']>;
25326
25421
  ids: Array<Scalars['ID']['input']>;
25422
+ sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
25327
25423
  };
25328
25424
  export declare type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
25329
25425
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25345,6 +25441,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
25345
25441
  after?: InputMaybe<Scalars['String']['input']>;
25346
25442
  first?: InputMaybe<Scalars['Int']['input']>;
25347
25443
  ids: Array<Scalars['ID']['input']>;
25444
+ sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
25348
25445
  };
25349
25446
  export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
25350
25447
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25356,6 +25453,7 @@ export declare type GraphStoreIncidentLinkedJswIssueInverseBatchArgs = {
25356
25453
  after?: InputMaybe<Scalars['String']['input']>;
25357
25454
  first?: InputMaybe<Scalars['Int']['input']>;
25358
25455
  ids: Array<Scalars['ID']['input']>;
25456
+ sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
25359
25457
  };
25360
25458
  export declare type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
25361
25459
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25387,6 +25485,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
25387
25485
  after?: InputMaybe<Scalars['String']['input']>;
25388
25486
  first?: InputMaybe<Scalars['Int']['input']>;
25389
25487
  ids: Array<Scalars['ID']['input']>;
25488
+ sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
25390
25489
  };
25391
25490
  export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
25392
25491
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25398,6 +25497,7 @@ export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
25398
25497
  after?: InputMaybe<Scalars['String']['input']>;
25399
25498
  first?: InputMaybe<Scalars['Int']['input']>;
25400
25499
  ids: Array<Scalars['ID']['input']>;
25500
+ sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
25401
25501
  };
25402
25502
  export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
25403
25503
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25427,35 +25527,45 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
25427
25527
  };
25428
25528
  export declare type GraphStoreIssueAssociatedDeploymentArgs = {
25429
25529
  after?: InputMaybe<Scalars['String']['input']>;
25530
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25430
25531
  first?: InputMaybe<Scalars['Int']['input']>;
25431
25532
  id: Scalars['ID']['input'];
25432
25533
  sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25433
25534
  };
25434
25535
  export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
25435
25536
  after?: InputMaybe<Scalars['String']['input']>;
25537
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25436
25538
  first?: InputMaybe<Scalars['Int']['input']>;
25437
25539
  ids: Array<Scalars['ID']['input']>;
25540
+ sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25438
25541
  };
25439
25542
  export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
25440
25543
  after?: InputMaybe<Scalars['String']['input']>;
25544
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25441
25545
  first?: InputMaybe<Scalars['Int']['input']>;
25442
25546
  id: Scalars['ID']['input'];
25443
25547
  sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25444
25548
  };
25445
25549
  export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
25446
25550
  after?: InputMaybe<Scalars['String']['input']>;
25551
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25447
25552
  first?: InputMaybe<Scalars['Int']['input']>;
25448
25553
  ids: Array<Scalars['ID']['input']>;
25554
+ sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25449
25555
  };
25450
25556
  export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
25451
25557
  after?: InputMaybe<Scalars['String']['input']>;
25558
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25452
25559
  first?: InputMaybe<Scalars['Int']['input']>;
25453
25560
  id: Scalars['ID']['input'];
25561
+ sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25454
25562
  };
25455
25563
  export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
25456
25564
  after?: InputMaybe<Scalars['String']['input']>;
25565
+ filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
25457
25566
  first?: InputMaybe<Scalars['Int']['input']>;
25458
25567
  id: Scalars['ID']['input'];
25568
+ sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
25459
25569
  };
25460
25570
  export declare type GraphStoreIssueAssociatedDesignArgs = {
25461
25571
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25511,6 +25621,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
25511
25621
  after?: InputMaybe<Scalars['String']['input']>;
25512
25622
  first?: InputMaybe<Scalars['Int']['input']>;
25513
25623
  ids: Array<Scalars['ID']['input']>;
25624
+ sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
25514
25625
  };
25515
25626
  export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
25516
25627
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25522,6 +25633,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
25522
25633
  after?: InputMaybe<Scalars['String']['input']>;
25523
25634
  first?: InputMaybe<Scalars['Int']['input']>;
25524
25635
  ids: Array<Scalars['ID']['input']>;
25636
+ sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
25525
25637
  };
25526
25638
  export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
25527
25639
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25735,6 +25847,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
25735
25847
  after?: InputMaybe<Scalars['String']['input']>;
25736
25848
  first?: InputMaybe<Scalars['Int']['input']>;
25737
25849
  ids: Array<Scalars['ID']['input']>;
25850
+ sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
25738
25851
  };
25739
25852
  export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
25740
25853
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25746,6 +25859,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
25746
25859
  after?: InputMaybe<Scalars['String']['input']>;
25747
25860
  first?: InputMaybe<Scalars['Int']['input']>;
25748
25861
  ids: Array<Scalars['ID']['input']>;
25862
+ sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
25749
25863
  };
25750
25864
  export declare type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
25751
25865
  after?: InputMaybe<Scalars['String']['input']>;
@@ -25861,11 +25975,13 @@ export declare type GraphStoreMediaAttachedToContentBatchArgs = {
25861
25975
  after?: InputMaybe<Scalars['String']['input']>;
25862
25976
  first?: InputMaybe<Scalars['Int']['input']>;
25863
25977
  ids: Array<Scalars['ID']['input']>;
25978
+ sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
25864
25979
  };
25865
25980
  export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
25866
25981
  after?: InputMaybe<Scalars['String']['input']>;
25867
25982
  first?: InputMaybe<Scalars['Int']['input']>;
25868
25983
  ids: Array<Scalars['ID']['input']>;
25984
+ sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
25869
25985
  };
25870
25986
  export declare type GraphStoreOnPremProjectHasIssueArgs = {
25871
25987
  after?: InputMaybe<Scalars['String']['input']>;
@@ -26502,11 +26618,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
26502
26618
  after?: InputMaybe<Scalars['String']['input']>;
26503
26619
  first?: InputMaybe<Scalars['Int']['input']>;
26504
26620
  ids: Array<Scalars['ID']['input']>;
26621
+ sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
26505
26622
  };
26506
26623
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
26507
26624
  after?: InputMaybe<Scalars['String']['input']>;
26508
26625
  first?: InputMaybe<Scalars['Int']['input']>;
26509
26626
  ids: Array<Scalars['ID']['input']>;
26627
+ sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
26510
26628
  };
26511
26629
  export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
26512
26630
  after?: InputMaybe<Scalars['String']['input']>;
@@ -26832,6 +26950,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
26832
26950
  after?: InputMaybe<Scalars['String']['input']>;
26833
26951
  first?: InputMaybe<Scalars['Int']['input']>;
26834
26952
  ids: Array<Scalars['ID']['input']>;
26953
+ sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
26835
26954
  };
26836
26955
  export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
26837
26956
  after?: InputMaybe<Scalars['String']['input']>;
@@ -26843,6 +26962,7 @@ export declare type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
26843
26962
  after?: InputMaybe<Scalars['String']['input']>;
26844
26963
  first?: InputMaybe<Scalars['Int']['input']>;
26845
26964
  ids: Array<Scalars['ID']['input']>;
26965
+ sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
26846
26966
  };
26847
26967
  export declare type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
26848
26968
  after?: InputMaybe<Scalars['String']['input']>;
@@ -26854,6 +26974,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
26854
26974
  first?: InputMaybe<Scalars['Int']['input']>;
26855
26975
  id: Scalars['ID']['input'];
26856
26976
  };
26977
+ export declare type GraphStoreUserOwnsComponentArgs = {
26978
+ after?: InputMaybe<Scalars['String']['input']>;
26979
+ first?: InputMaybe<Scalars['Int']['input']>;
26980
+ id: Scalars['ID']['input'];
26981
+ sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
26982
+ };
26857
26983
  export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
26858
26984
  after?: InputMaybe<Scalars['String']['input']>;
26859
26985
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -28161,6 +28287,7 @@ export declare type GraphStoreDateFilterInput = {
28161
28287
  };
28162
28288
  export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
28163
28289
  relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
28290
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28164
28291
  };
28165
28292
  export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
28166
28293
  __typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
@@ -28173,6 +28300,7 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
28173
28300
  };
28174
28301
  export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
28175
28302
  relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
28303
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28176
28304
  };
28177
28305
  export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
28178
28306
  __typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
@@ -28185,6 +28313,7 @@ export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
28185
28313
  };
28186
28314
  export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
28187
28315
  relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
28316
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28188
28317
  };
28189
28318
  export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
28190
28319
  __typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
@@ -28197,6 +28326,7 @@ export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRela
28197
28326
  };
28198
28327
  export declare type GraphStoreDeleteIncidentHasActionItemInput = {
28199
28328
  relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
28329
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28200
28330
  };
28201
28331
  export declare type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
28202
28332
  __typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
@@ -28209,6 +28339,7 @@ export declare type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
28209
28339
  };
28210
28340
  export declare type GraphStoreDeleteIncidentLinkedJswIssueInput = {
28211
28341
  relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
28342
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28212
28343
  };
28213
28344
  export declare type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
28214
28345
  __typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
@@ -28221,6 +28352,7 @@ export declare type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
28221
28352
  };
28222
28353
  export declare type GraphStoreDeleteIssueToWhiteboardInput = {
28223
28354
  relationships: Array<GraphStoreDeleteIssueToWhiteboardRelationshipInput>;
28355
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28224
28356
  };
28225
28357
  export declare type GraphStoreDeleteIssueToWhiteboardPayload = Payload & {
28226
28358
  __typename?: 'GraphStoreDeleteIssueToWhiteboardPayload';
@@ -28233,6 +28365,7 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
28233
28365
  };
28234
28366
  export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
28235
28367
  relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
28368
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28236
28369
  };
28237
28370
  export declare type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
28238
28371
  __typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
@@ -28245,6 +28378,7 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
28245
28378
  };
28246
28379
  export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
28247
28380
  relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
28381
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28248
28382
  };
28249
28383
  export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
28250
28384
  __typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
@@ -28257,6 +28391,7 @@ export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInp
28257
28391
  };
28258
28392
  export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
28259
28393
  relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
28394
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28260
28395
  };
28261
28396
  export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
28262
28397
  __typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
@@ -28269,6 +28404,7 @@ export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerRelation
28269
28404
  };
28270
28405
  export declare type GraphStoreDeleteProjectDisassociatedRepoInput = {
28271
28406
  relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
28407
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28272
28408
  };
28273
28409
  export declare type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
28274
28410
  __typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
@@ -28281,6 +28417,7 @@ export declare type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput =
28281
28417
  };
28282
28418
  export declare type GraphStoreDeleteProjectDocumentationEntityInput = {
28283
28419
  relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
28420
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28284
28421
  };
28285
28422
  export declare type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
28286
28423
  __typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
@@ -28293,6 +28430,7 @@ export declare type GraphStoreDeleteProjectDocumentationEntityRelationshipInput
28293
28430
  };
28294
28431
  export declare type GraphStoreDeleteProjectDocumentationPageInput = {
28295
28432
  relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
28433
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28296
28434
  };
28297
28435
  export declare type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
28298
28436
  __typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
@@ -28305,6 +28443,7 @@ export declare type GraphStoreDeleteProjectDocumentationPageRelationshipInput =
28305
28443
  };
28306
28444
  export declare type GraphStoreDeleteProjectDocumentationSpaceInput = {
28307
28445
  relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
28446
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28308
28447
  };
28309
28448
  export declare type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
28310
28449
  __typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
@@ -28317,6 +28456,7 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
28317
28456
  };
28318
28457
  export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
28319
28458
  relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
28459
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28320
28460
  };
28321
28461
  export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
28322
28462
  __typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
@@ -28329,6 +28469,7 @@ export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationship
28329
28469
  };
28330
28470
  export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
28331
28471
  relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
28472
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28332
28473
  };
28333
28474
  export declare type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
28334
28475
  __typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
@@ -28341,6 +28482,7 @@ export declare type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput
28341
28482
  };
28342
28483
  export declare type GraphStoreDeleteProjectHasVersionInput = {
28343
28484
  relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
28485
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28344
28486
  };
28345
28487
  export declare type GraphStoreDeleteProjectHasVersionPayload = Payload & {
28346
28488
  __typename?: 'GraphStoreDeleteProjectHasVersionPayload';
@@ -28353,6 +28495,7 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
28353
28495
  };
28354
28496
  export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
28355
28497
  relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
28498
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28356
28499
  };
28357
28500
  export declare type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
28358
28501
  __typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
@@ -28365,6 +28508,7 @@ export declare type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
28365
28508
  };
28366
28509
  export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
28367
28510
  relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
28511
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28368
28512
  };
28369
28513
  export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
28370
28514
  __typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
@@ -28377,6 +28521,7 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
28377
28521
  };
28378
28522
  export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
28379
28523
  relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
28524
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28380
28525
  };
28381
28526
  export declare type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
28382
28527
  __typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
@@ -28389,6 +28534,7 @@ export declare type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput
28389
28534
  };
28390
28535
  export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput = {
28391
28536
  relationships: Array<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelationshipInput>;
28537
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28392
28538
  };
28393
28539
  export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload = Payload & {
28394
28540
  __typename?: 'GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload';
@@ -28401,6 +28547,7 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
28401
28547
  };
28402
28548
  export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
28403
28549
  relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
28550
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28404
28551
  };
28405
28552
  export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
28406
28553
  __typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
@@ -28413,6 +28560,7 @@ export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationship
28413
28560
  };
28414
28561
  export declare type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
28415
28562
  relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
28563
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
28416
28564
  };
28417
28565
  export declare type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
28418
28566
  __typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
@@ -31880,9 +32028,53 @@ export declare type GraphStoreIssueAssociatedBuildSortInput = {
31880
32028
  export declare type GraphStoreIssueAssociatedCommitSortInput = {
31881
32029
  lastModified?: InputMaybe<GraphStoreSortInput>;
31882
32030
  };
32031
+ export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
32032
+ and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
32033
+ authorAri?: InputMaybe<GraphStoreAriFilterInput>;
32034
+ or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
32035
+ };
31883
32036
  export declare type GraphStoreIssueAssociatedDeploymentAuthorSortInput = {
31884
32037
  authorAri?: InputMaybe<GraphStoreSortInput>;
31885
32038
  };
32039
+ export declare type GraphStoreIssueAssociatedDeploymentConditionalFilterInput = {
32040
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
32041
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
32042
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
32043
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
32044
+ to_author?: InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>;
32045
+ to_environmentType?: InputMaybe<GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput>;
32046
+ to_state?: InputMaybe<GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput>;
32047
+ };
32048
+ export declare enum GraphStoreIssueAssociatedDeploymentDeploymentState {
32049
+ Cancelled = "CANCELLED",
32050
+ Failed = "FAILED",
32051
+ InProgress = "IN_PROGRESS",
32052
+ NotSet = "NOT_SET",
32053
+ Pending = "PENDING",
32054
+ RolledBack = "ROLLED_BACK",
32055
+ Successful = "SUCCESSFUL",
32056
+ Unknown = "UNKNOWN"
32057
+ }
32058
+ export declare type GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput = {
32059
+ is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
32060
+ isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
32061
+ };
32062
+ export declare enum GraphStoreIssueAssociatedDeploymentEnvironmentType {
32063
+ Development = "DEVELOPMENT",
32064
+ NotSet = "NOT_SET",
32065
+ Production = "PRODUCTION",
32066
+ Staging = "STAGING",
32067
+ Testing = "TESTING",
32068
+ Unmapped = "UNMAPPED"
32069
+ }
32070
+ export declare type GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput = {
32071
+ is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
32072
+ isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
32073
+ };
32074
+ export declare type GraphStoreIssueAssociatedDeploymentFilterInput = {
32075
+ and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
32076
+ or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
32077
+ };
31886
32078
  export declare type GraphStoreIssueAssociatedDeploymentSortInput = {
31887
32079
  createdAt?: InputMaybe<GraphStoreSortInput>;
31888
32080
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -35025,6 +35217,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
35025
35217
  node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
35026
35218
  };
35027
35219
  export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
35220
+ export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
35221
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
35222
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
35223
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
35224
+ pageInfo: PageInfo;
35225
+ totalCount?: Maybe<Scalars['Int']['output']>;
35226
+ };
35227
+ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
35228
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
35229
+ createdAt: Scalars['DateTime']['output'];
35230
+ cursor?: Maybe<Scalars['String']['output']>;
35231
+ id: Scalars['ID']['output'];
35232
+ lastUpdated: Scalars['DateTime']['output'];
35233
+ node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
35234
+ };
35235
+ export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
35028
35236
  export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
35029
35237
  __typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
35030
35238
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
@@ -35659,6 +35867,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
35659
35867
  export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
35660
35868
  lastModified?: InputMaybe<GraphStoreSortInput>;
35661
35869
  };
35870
+ export declare type GraphStoreUserOwnsComponentSortInput = {
35871
+ createdAt?: InputMaybe<GraphStoreSortInput>;
35872
+ fromAti?: InputMaybe<GraphStoreSortInput>;
35873
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35874
+ toAti?: InputMaybe<GraphStoreSortInput>;
35875
+ };
35662
35876
  export declare type GraphStoreVersionAssociatedBranchSortInput = {
35663
35877
  createdAt?: InputMaybe<GraphStoreSortInput>;
35664
35878
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -36141,7 +36355,6 @@ export declare type HelpCenter = Node & {
36141
36355
  __typename?: 'HelpCenter';
36142
36356
  announcements?: Maybe<HelpCenterAnnouncements>;
36143
36357
  canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
36144
- conversation?: Maybe<HelpCenterConversation>;
36145
36358
  helpCenterBranding?: Maybe<HelpCenterBranding>;
36146
36359
  helpDesks: HelpCenterHelpDeskItemConnection;
36147
36360
  homePageLayout?: Maybe<HelpCenterHomePageLayout>;
@@ -36249,22 +36462,6 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
36249
36462
  __typename?: 'HelpCenterContentGapIndicatorsWithMetaData';
36250
36463
  contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
36251
36464
  };
36252
- export declare type HelpCenterConversation = {
36253
- __typename?: 'HelpCenterConversation';
36254
- compositeFailureMessageAdf?: Maybe<Scalars['String']['output']>;
36255
- fallbackMessage?: Maybe<Scalars['String']['output']>;
36256
- };
36257
- export declare type HelpCenterConversationCompositeFailureMessageAdfArgs = {
36258
- type: HelpCenterConversationFailureMessageType;
36259
- };
36260
- export declare enum HelpCenterConversationFailureMessageType {
36261
- ConversationFailureMessage = "CONVERSATION_FAILURE_MESSAGE",
36262
- ConversationUnhelpfulMessage = "CONVERSATION_UNHELPFUL_MESSAGE",
36263
- CustomMessage = "CUSTOM_MESSAGE"
36264
- }
36265
- export declare type HelpCenterConversationInput = {
36266
- fallbackMessage?: InputMaybe<Scalars['String']['input']>;
36267
- };
36268
36465
  export declare type HelpCenterCreateInput = {
36269
36466
  name: HelpCenterNameInput;
36270
36467
  slug: Scalars['String']['input'];
@@ -36523,10 +36720,15 @@ export declare enum HelpCenterPortalsType {
36523
36720
  Hidden = "HIDDEN",
36524
36721
  Visible = "VISIBLE"
36525
36722
  }
36723
+ export declare enum HelpCenterProjectMappingOperationType {
36724
+ MapProjects = "MAP_PROJECTS",
36725
+ UnmapProjects = "UNMAP_PROJECTS"
36726
+ }
36526
36727
  export declare type HelpCenterProjectMappingUpdateInput = {
36527
36728
  helpCenterAri: Scalars['String']['input'];
36528
- mappedProjectIds: Array<Scalars['String']['input']>;
36529
- syncNewProjects: Scalars['Boolean']['input'];
36729
+ operationType?: InputMaybe<HelpCenterProjectMappingOperationType>;
36730
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
36731
+ syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
36530
36732
  };
36531
36733
  export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
36532
36734
  __typename?: 'HelpCenterProjectMappingUpdatePayload';
@@ -36698,7 +36900,6 @@ export declare enum HelpCenterType {
36698
36900
  Unified = "UNIFIED"
36699
36901
  }
36700
36902
  export declare type HelpCenterUpdateInput = {
36701
- conversation?: InputMaybe<HelpCenterConversationInput>;
36702
36903
  helpCenterAri: Scalars['String']['input'];
36703
36904
  helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
36704
36905
  name?: InputMaybe<HelpCenterNameInput>;
@@ -37847,17 +38048,12 @@ export declare type InlineColumnEditConfig = {
37847
38048
  export declare type Insights = {
37848
38049
  __typename?: 'Insights';
37849
38050
  githubOnboardingDetails: InsightsGithubOnboardingDetails;
37850
- nextBestTasksByContextAri: Array<InsightsNextBestTask>;
37851
38051
  nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
37852
38052
  };
37853
38053
  export declare type InsightsGithubOnboardingDetailsArgs = {
37854
38054
  cloudId: Scalars['ID']['input'];
37855
38055
  projectAri?: InputMaybe<Scalars['ID']['input']>;
37856
38056
  };
37857
- export declare type InsightsNextBestTasksByContextAriArgs = {
37858
- contextAri: InsightsContextAri;
37859
- statusId?: InputMaybe<Scalars['String']['input']>;
37860
- };
37861
38057
  export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
37862
38058
  after?: InputMaybe<Scalars['String']['input']>;
37863
38059
  contextAri: InsightsContextAri;
@@ -37883,13 +38079,6 @@ export declare type InsightsBlockedIssue = {
37883
38079
  issueKey: Scalars['String']['output'];
37884
38080
  title: Scalars['String']['output'];
37885
38081
  };
37886
- export declare type InsightsBlockingIssueDetails = {
37887
- __typename?: 'InsightsBlockingIssueDetails';
37888
- blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
37889
- issueIconUrl: Scalars['String']['output'];
37890
- issueId: Scalars['String']['output'];
37891
- issueKey: Scalars['String']['output'];
37892
- };
37893
38082
  export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
37894
38083
  __typename?: 'InsightsBlockingIssueTask';
37895
38084
  blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
@@ -37900,15 +38089,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
37900
38089
  title: Scalars['String']['output'];
37901
38090
  url: Scalars['String']['output'];
37902
38091
  };
37903
- export declare type InsightsBuildDetails = {
37904
- __typename?: 'InsightsBuildDetails';
37905
- buildNumber: Scalars['Int']['output'];
37906
- issueId: Scalars['String']['output'];
37907
- issueKey: Scalars['String']['output'];
37908
- issueName: Scalars['String']['output'];
37909
- lastUpdated: Scalars['String']['output'];
37910
- numberOfFailedBuilds: Scalars['Int']['output'];
37911
- };
37912
38092
  export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
37913
38093
  __typename?: 'InsightsBuildTask';
37914
38094
  buildNumber: Scalars['Int']['output'];
@@ -37936,17 +38116,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
37936
38116
  title: Scalars['String']['output'];
37937
38117
  url: Scalars['String']['output'];
37938
38118
  };
37939
- export declare type InsightsDeploymentDetails = {
37940
- __typename?: 'InsightsDeploymentDetails';
37941
- environmentNames: Array<Scalars['String']['output']>;
37942
- environmentType: InsightsEnvironmentType;
37943
- issueId: Scalars['String']['output'];
37944
- issueKey: Scalars['String']['output'];
37945
- issueName: Scalars['String']['output'];
37946
- lastUpdated: Scalars['String']['output'];
37947
- numberOfFailedDeployments: Scalars['Int']['output'];
37948
- pipelineName: Scalars['String']['output'];
37949
- };
37950
38119
  export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
37951
38120
  __typename?: 'InsightsDeploymentTask';
37952
38121
  environmentNames: Array<Scalars['String']['output']>;
@@ -38020,14 +38189,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
38020
38189
  errorType?: Maybe<Scalars['String']['output']>;
38021
38190
  statusCode?: Maybe<Scalars['Int']['output']>;
38022
38191
  };
38023
- export declare type InsightsNextBestTask = {
38024
- __typename?: 'InsightsNextBestTask';
38025
- details: InsightsNextBestTaskDetails;
38026
- id: Scalars['String']['output'];
38027
- task: InsightsTaskType;
38028
- title: Scalars['String']['output'];
38029
- url: Scalars['String']['output'];
38030
- };
38031
38192
  export declare enum InsightsNextBestTaskAction {
38032
38193
  Remove = "REMOVE",
38033
38194
  Snooze = "SNOOZE"
@@ -38044,24 +38205,11 @@ export declare type InsightsNextBestTaskConnection = {
38044
38205
  pageInfo: PageInfo;
38045
38206
  totalCount?: Maybe<Scalars['Int']['output']>;
38046
38207
  };
38047
- export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
38048
38208
  export declare type InsightsNextBestTaskEdge = {
38049
38209
  __typename?: 'InsightsNextBestTaskEdge';
38050
38210
  cursor: Scalars['String']['output'];
38051
38211
  node?: Maybe<InsightsNextBestTaskCommon>;
38052
38212
  };
38053
- export declare type InsightsPullRequestNeedsWorkDetails = {
38054
- __typename?: 'InsightsPullRequestNeedsWorkDetails';
38055
- commentCount: Scalars['Int']['output'];
38056
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38057
- lastUpdated: Scalars['String']['output'];
38058
- needsWorkCount: Scalars['Int']['output'];
38059
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38060
- providerName?: Maybe<Scalars['String']['output']>;
38061
- repositoryName?: Maybe<Scalars['String']['output']>;
38062
- reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
38063
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38064
- };
38065
38213
  export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
38066
38214
  __typename?: 'InsightsPullRequestNeedsWorkTask';
38067
38215
  commentCount: Scalars['Int']['output'];
@@ -38077,18 +38225,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
38077
38225
  title: Scalars['String']['output'];
38078
38226
  url: Scalars['String']['output'];
38079
38227
  };
38080
- export declare type InsightsPullRequestReviewDetails = {
38081
- __typename?: 'InsightsPullRequestReviewDetails';
38082
- approvalsCount: Scalars['Int']['output'];
38083
- author?: Maybe<InsightsUserDetail>;
38084
- commentCount: Scalars['Int']['output'];
38085
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38086
- lastUpdated: Scalars['String']['output'];
38087
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38088
- providerName?: Maybe<Scalars['String']['output']>;
38089
- repositoryName?: Maybe<Scalars['String']['output']>;
38090
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38091
- };
38092
38228
  export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
38093
38229
  __typename?: 'InsightsPullRequestReviewTask';
38094
38230
  approvalsCount: Scalars['Int']['output'];
@@ -38134,15 +38270,6 @@ export declare type InsightsUserDetail = {
38134
38270
  id: Scalars['ID']['output'];
38135
38271
  name: Scalars['String']['output'];
38136
38272
  };
38137
- export declare type InsightsVulnDetails = {
38138
- __typename?: 'InsightsVulnDetails';
38139
- id: Scalars['ID']['output'];
38140
- introducedDate: Scalars['String']['output'];
38141
- issueId: Scalars['String']['output'];
38142
- issueKey: Scalars['String']['output'];
38143
- securityContainerName: Scalars['String']['output'];
38144
- status: InsightsVulnerabilityStatus;
38145
- };
38146
38273
  export declare enum InsightsVulnerabilityStatus {
38147
38274
  Closed = "CLOSED",
38148
38275
  Ignored = "IGNORED",
@@ -38746,9 +38873,14 @@ export declare type JiraAdvancedRoadmapsNavigation = {
38746
38873
  hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
38747
38874
  isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
38748
38875
  };
38749
- export declare type JiraAffectedService = {
38876
+ export declare type JiraAffectedService = JiraSelectableValue & {
38750
38877
  __typename?: 'JiraAffectedService';
38878
+ id: Scalars['ID']['output'];
38751
38879
  name?: Maybe<Scalars['String']['output']>;
38880
+ selectableGroupKey?: Maybe<Scalars['String']['output']>;
38881
+ selectableIconUrl?: Maybe<Scalars['URL']['output']>;
38882
+ selectableLabel?: Maybe<Scalars['String']['output']>;
38883
+ selectableUrl?: Maybe<Scalars['URL']['output']>;
38752
38884
  serviceId: Scalars['ID']['output'];
38753
38885
  };
38754
38886
  export declare type JiraAffectedServiceConnection = {
@@ -38763,7 +38895,7 @@ export declare type JiraAffectedServiceEdge = {
38763
38895
  cursor: Scalars['String']['output'];
38764
38896
  node?: Maybe<JiraAffectedService>;
38765
38897
  };
38766
- export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
38898
+ export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
38767
38899
  __typename?: 'JiraAffectedServicesField';
38768
38900
  affectedServices?: Maybe<JiraAffectedServiceConnection>;
38769
38901
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -38775,8 +38907,10 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
38775
38907
  issue?: Maybe<JiraIssue>;
38776
38908
  name: Scalars['String']['output'];
38777
38909
  searchUrl?: Maybe<Scalars['String']['output']>;
38910
+ selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
38778
38911
  selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
38779
38912
  selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
38913
+ selectedValues?: Maybe<JiraSelectableValueConnection>;
38780
38914
  type: Scalars['String']['output'];
38781
38915
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
38782
38916
  };
@@ -38788,12 +38922,27 @@ export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
38788
38922
  searchBy?: InputMaybe<Scalars['String']['input']>;
38789
38923
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
38790
38924
  };
38925
+ export declare type JiraAffectedServicesFieldSelectableValueOptionsArgs = {
38926
+ after?: InputMaybe<Scalars['String']['input']>;
38927
+ before?: InputMaybe<Scalars['String']['input']>;
38928
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
38929
+ first?: InputMaybe<Scalars['Int']['input']>;
38930
+ last?: InputMaybe<Scalars['Int']['input']>;
38931
+ searchBy?: InputMaybe<Scalars['String']['input']>;
38932
+ };
38791
38933
  export declare type JiraAffectedServicesFieldSelectedAffectedServicesConnectionArgs = {
38792
38934
  after?: InputMaybe<Scalars['String']['input']>;
38793
38935
  before?: InputMaybe<Scalars['String']['input']>;
38794
38936
  first?: InputMaybe<Scalars['Int']['input']>;
38795
38937
  last?: InputMaybe<Scalars['Int']['input']>;
38796
38938
  };
38939
+ export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
38940
+ after?: InputMaybe<Scalars['String']['input']>;
38941
+ before?: InputMaybe<Scalars['String']['input']>;
38942
+ first?: InputMaybe<Scalars['Int']['input']>;
38943
+ last?: InputMaybe<Scalars['Int']['input']>;
38944
+ searchBy?: InputMaybe<Scalars['String']['input']>;
38945
+ };
38797
38946
  export declare type JiraAffectedServicesFieldInput = {
38798
38947
  affectedServices: Array<JiraAffectedServicesInput>;
38799
38948
  fieldId: Scalars['ID']['input'];
@@ -39580,6 +39729,7 @@ export declare enum JiraBoardLocationType {
39580
39729
  Project = "PROJECT",
39581
39730
  User = "USER"
39582
39731
  }
39732
+ export declare type JiraBoardResult = JiraBoard | QueryError;
39583
39733
  export declare enum JiraBoardType {
39584
39734
  Kanban = "KANBAN",
39585
39735
  Scrum = "SCRUM"
@@ -40869,7 +41019,8 @@ export declare type JiraCreateBoardPayload = Payload & {
40869
41019
  success: Scalars['Boolean']['output'];
40870
41020
  };
40871
41021
  export declare type JiraCreateBoardSource = {
40872
- fieldInput: JiraCreateBoardFieldInput;
41022
+ fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
41023
+ savedFilterId?: InputMaybe<Scalars['Long']['input']>;
40873
41024
  };
40874
41025
  export declare type JiraCreateCalendarIssuePayload = Payload & {
40875
41026
  __typename?: 'JiraCreateCalendarIssuePayload';
@@ -43714,6 +43865,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
43714
43865
  fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
43715
43866
  searchString?: InputMaybe<Scalars['String']['input']>;
43716
43867
  };
43868
+ export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
43869
+ __typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
43870
+ errors?: Maybe<Array<MutationError>>;
43871
+ success: Scalars['Boolean']['output'];
43872
+ };
43717
43873
  export declare type JiraIssueSearchInput = {
43718
43874
  customInput?: InputMaybe<JiraIssueSearchCustomInput>;
43719
43875
  filterId?: InputMaybe<Scalars['String']['input']>;
@@ -43752,6 +43908,7 @@ export declare type JiraIssueSearchView = Node & {
43752
43908
  filterId?: Maybe<Scalars['String']['output']>;
43753
43909
  hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
43754
43910
  id: Scalars['ID']['output'];
43911
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
43755
43912
  namespace?: Maybe<Scalars['String']['output']>;
43756
43913
  viewId?: Maybe<Scalars['String']['output']>;
43757
43914
  };
@@ -43821,6 +43978,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
43821
43978
  JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
43822
43979
  JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
43823
43980
  JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
43981
+ JiraServiceManagementOrganizationField?: InputMaybe<Array<JiraServiceManagementUpdateOrganizationFieldInput>>;
43824
43982
  JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
43825
43983
  JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
43826
43984
  JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
@@ -44196,6 +44354,11 @@ export declare type JiraJqlFieldValueEdge = {
44196
44354
  cursor: Scalars['String']['output'];
44197
44355
  node?: Maybe<JiraJqlFieldValue>;
44198
44356
  };
44357
+ export declare type JiraJqlFieldWithAliases = {
44358
+ __typename?: 'JiraJqlFieldWithAliases';
44359
+ aliases?: Maybe<Array<Scalars['String']['output']>>;
44360
+ jqlTerm: Scalars['ID']['output'];
44361
+ };
44199
44362
  export declare type JiraJqlFunction = {
44200
44363
  __typename?: 'JiraJqlFunction';
44201
44364
  dataTypes: Array<Scalars['String']['output']>;
@@ -45075,6 +45238,7 @@ export declare type JiraMutation = {
45075
45238
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
45076
45239
  setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
45077
45240
  setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
45241
+ setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
45078
45242
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
45079
45243
  sprintUpdate?: Maybe<JiraSprintMutationPayload>;
45080
45244
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
@@ -45096,6 +45260,7 @@ export declare type JiraMutation = {
45096
45260
  updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
45097
45261
  updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
45098
45262
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
45263
+ updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
45099
45264
  updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
45100
45265
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45101
45266
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
@@ -45106,6 +45271,7 @@ export declare type JiraMutation = {
45106
45271
  updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
45107
45272
  updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
45108
45273
  updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
45274
+ updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
45109
45275
  updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
45110
45276
  updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
45111
45277
  updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
@@ -45403,6 +45569,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
45403
45569
  export declare type JiraMutationSetEntityIsFavouriteArgs = {
45404
45570
  input: JiraSetIsFavouriteInput;
45405
45571
  };
45572
+ export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
45573
+ id: Scalars['ID']['input'];
45574
+ };
45406
45575
  export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
45407
45576
  cloudId: Scalars['ID']['input'];
45408
45577
  id: Scalars['ID']['input'];
@@ -45471,6 +45640,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
45471
45640
  cloudId: Scalars['ID']['input'];
45472
45641
  input: JiraIssueHierarchyConfigurationMutationInput;
45473
45642
  };
45643
+ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
45644
+ isHierarchyEnabled: Scalars['Boolean']['input'];
45645
+ viewId: Scalars['ID']['input'];
45646
+ };
45474
45647
  export declare type JiraMutationUpdateIssueTypeFieldArgs = {
45475
45648
  input: JiraUpdateIssueTypeFieldInput;
45476
45649
  };
@@ -45501,6 +45674,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
45501
45674
  export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
45502
45675
  input?: InputMaybe<JiraUpdateViewConfigInput>;
45503
45676
  };
45677
+ export declare type JiraMutationUpdateJsmOrganizationFieldArgs = {
45678
+ input: JiraServiceManagementUpdateOrganizationFieldInput;
45679
+ };
45504
45680
  export declare type JiraMutationUpdateJwmFilterArgs = {
45505
45681
  input: JiraWorkManagementUpdateFilterInput;
45506
45682
  };
@@ -46598,6 +46774,7 @@ export declare type JiraProject = Node & {
46598
46774
  linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
46599
46775
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
46600
46776
  linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
46777
+ mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
46601
46778
  name: Scalars['String']['output'];
46602
46779
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
46603
46780
  opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
@@ -47334,7 +47511,6 @@ export declare type JiraQuery = {
47334
47511
  epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
47335
47512
  favouriteFilters?: Maybe<JiraFilterConnection>;
47336
47513
  favourites?: Maybe<JiraFavouriteConnection>;
47337
- fetchBoardCreationFilters?: Maybe<JiraIssueFieldConnection>;
47338
47514
  fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
47339
47515
  fields?: Maybe<JiraJqlFieldConnectionResult>;
47340
47516
  filter?: Maybe<JiraFilter>;
@@ -47388,6 +47564,7 @@ export declare type JiraQuery = {
47388
47564
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
47389
47565
  issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
47390
47566
  issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
47567
+ jiraBoard?: Maybe<JiraBoardResult>;
47391
47568
  jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
47392
47569
  jiraCalendar?: Maybe<JiraCalendar>;
47393
47570
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
@@ -47441,6 +47618,7 @@ export declare type JiraQuery = {
47441
47618
  projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
47442
47619
  projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
47443
47620
  projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
47621
+ rankField?: Maybe<JiraJqlFieldWithAliases>;
47444
47622
  recentItems?: Maybe<JiraSearchableEntityConnection>;
47445
47623
  remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
47446
47624
  requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
@@ -47624,14 +47802,6 @@ export declare type JiraQueryFavouritesArgs = {
47624
47802
  first?: InputMaybe<Scalars['Int']['input']>;
47625
47803
  last?: InputMaybe<Scalars['Int']['input']>;
47626
47804
  };
47627
- export declare type JiraQueryFetchBoardCreationFiltersArgs = {
47628
- after?: InputMaybe<Scalars['String']['input']>;
47629
- before?: InputMaybe<Scalars['String']['input']>;
47630
- cloudId: Scalars['ID']['input'];
47631
- first?: InputMaybe<Scalars['Int']['input']>;
47632
- last?: InputMaybe<Scalars['Int']['input']>;
47633
- projectId: Scalars['String']['input'];
47634
- };
47635
47805
  export declare type JiraQueryFieldSetsByIdArgs = {
47636
47806
  after?: InputMaybe<Scalars['String']['input']>;
47637
47807
  before?: InputMaybe<Scalars['String']['input']>;
@@ -47884,6 +48054,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
47884
48054
  cloudId: Scalars['ID']['input'];
47885
48055
  keys: Array<Scalars['String']['input']>;
47886
48056
  };
48057
+ export declare type JiraQueryJiraBoardArgs = {
48058
+ id: Scalars['ID']['input'];
48059
+ };
47887
48060
  export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
47888
48061
  issueIds: Array<Scalars['ID']['input']>;
47889
48062
  transitionId: Scalars['Int']['input'];
@@ -48142,6 +48315,9 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
48142
48315
  statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
48143
48316
  userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
48144
48317
  };
48318
+ export declare type JiraQueryRankFieldArgs = {
48319
+ cloudId: Scalars['ID']['input'];
48320
+ };
48145
48321
  export declare type JiraQueryRecentItemsArgs = {
48146
48322
  after?: InputMaybe<Scalars['String']['input']>;
48147
48323
  before?: InputMaybe<Scalars['String']['input']>;
@@ -48197,7 +48373,7 @@ export declare type JiraQuerySavedFiltersArgs = {
48197
48373
  before?: InputMaybe<Scalars['String']['input']>;
48198
48374
  cloudId: Scalars['ID']['input'];
48199
48375
  first?: InputMaybe<Scalars['Int']['input']>;
48200
- keyword: Scalars['String']['input'];
48376
+ keyword?: InputMaybe<Scalars['String']['input']>;
48201
48377
  last?: InputMaybe<Scalars['Int']['input']>;
48202
48378
  };
48203
48379
  export declare type JiraQueryScreenIdByIssueIdArgs = {
@@ -49651,6 +49827,16 @@ export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
49651
49827
  last?: InputMaybe<Scalars['Int']['input']>;
49652
49828
  searchBy?: InputMaybe<Scalars['String']['input']>;
49653
49829
  };
49830
+ export declare type JiraServiceManagementOrganizationFieldOperationInput = {
49831
+ ids: Array<Scalars['ID']['input']>;
49832
+ operation: JiraMultiValueFieldOperations;
49833
+ };
49834
+ export declare type JiraServiceManagementOrganizationFieldPayload = Payload & {
49835
+ __typename?: 'JiraServiceManagementOrganizationFieldPayload';
49836
+ errors?: Maybe<Array<MutationError>>;
49837
+ field?: Maybe<JiraServiceManagementOrganizationField>;
49838
+ success: Scalars['Boolean']['output'];
49839
+ };
49654
49840
  export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
49655
49841
  __typename?: 'JiraServiceManagementPeopleField';
49656
49842
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -49970,6 +50156,10 @@ export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
49970
50156
  entitlementId?: InputMaybe<Scalars['ID']['input']>;
49971
50157
  operation: JiraSingleValueFieldOperations;
49972
50158
  };
50159
+ export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
50160
+ id: Scalars['ID']['input'];
50161
+ operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
50162
+ };
49973
50163
  export declare type JiraServiceManagementUpdateSentimentFieldInput = {
49974
50164
  id: Scalars['ID']['input'];
49975
50165
  operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
@@ -50053,6 +50243,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
50053
50243
  favouriteValue?: Maybe<JiraFavouriteValue>;
50054
50244
  success: Scalars['Boolean']['output'];
50055
50245
  };
50246
+ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
50247
+ __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
50248
+ board?: Maybe<JiraBoard>;
50249
+ errors?: Maybe<Array<MutationError>>;
50250
+ success: Scalars['Boolean']['output'];
50251
+ };
50056
50252
  export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
50057
50253
  deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
50058
50254
  projectId: Scalars['ID']['input'];
@@ -50926,6 +51122,8 @@ export declare type JiraTeamInput = {
50926
51122
  export declare type JiraTeamView = {
50927
51123
  __typename?: 'JiraTeamView';
50928
51124
  fullTeam?: Maybe<TeamV2>;
51125
+ jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
51126
+ jiraMemberCount?: Maybe<Scalars['Int']['output']>;
50929
51127
  jiraSuppliedAvatar?: Maybe<JiraAvatar>;
50930
51128
  jiraSuppliedId: Scalars['ID']['output'];
50931
51129
  jiraSuppliedName?: Maybe<Scalars['String']['output']>;
@@ -51085,14 +51283,17 @@ export declare type JiraUiModification = {
51085
51283
  id: Scalars['ID']['output'];
51086
51284
  };
51087
51285
  export declare type JiraUiModificationsContextInput = {
51088
- issueTypeId: Scalars['ID']['input'];
51089
- projectId: Scalars['ID']['input'];
51286
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
51287
+ portalId?: InputMaybe<Scalars['ID']['input']>;
51288
+ projectId?: InputMaybe<Scalars['ID']['input']>;
51289
+ requestTypeId?: InputMaybe<Scalars['ID']['input']>;
51090
51290
  viewType: JiraUiModificationsViewType;
51091
51291
  };
51092
51292
  export declare enum JiraUiModificationsViewType {
51093
51293
  Gic = "GIC",
51094
51294
  IssueTransition = "IssueTransition",
51095
- IssueView = "IssueView"
51295
+ IssueView = "IssueView",
51296
+ JsmRequestCreate = "JSMRequestCreate"
51096
51297
  }
51097
51298
  export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
51098
51299
  incidentId: Scalars['ID']['input'];
@@ -51654,7 +51855,6 @@ export declare type JiraUserPreferences = {
51654
51855
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
51655
51856
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
51656
51857
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
51657
- issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
51658
51858
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
51659
51859
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
51660
51860
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
@@ -51666,9 +51866,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
51666
51866
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
51667
51867
  projectKey: Scalars['String']['input'];
51668
51868
  };
51669
- export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
51670
- projectKey: Scalars['String']['input'];
51671
- };
51672
51869
  export declare type JiraUserPreferencesMutation = {
51673
51870
  __typename?: 'JiraUserPreferencesMutation';
51674
51871
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
@@ -53591,6 +53788,49 @@ export declare type KnowledgeBaseSources = {
53591
53788
  edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
53592
53789
  totalCount: Scalars['Int']['output'];
53593
53790
  };
53791
+ export declare type KnowledgeBaseSpacePermission = {
53792
+ __typename?: 'KnowledgeBaseSpacePermission';
53793
+ editPermission: KnowledgeBaseSpacePermissionDetail;
53794
+ viewPermission: KnowledgeBaseSpacePermissionDetail;
53795
+ };
53796
+ export declare type KnowledgeBaseSpacePermissionBulkQueryApi = {
53797
+ __typename?: 'KnowledgeBaseSpacePermissionBulkQueryApi';
53798
+ knowledgeBaseSpacePermission_bulkQuery: KnowledgeBaseSpacePermissionBulkResponse;
53799
+ };
53800
+ export declare type KnowledgeBaseSpacePermissionBulkQueryApiKnowledgeBaseSpacePermission_BulkQueryArgs = {
53801
+ input: KnowledgeBaseSpacePermissionInput;
53802
+ };
53803
+ export declare type KnowledgeBaseSpacePermissionBulkResponse = KnowledgeBaseSpacePermissions | QueryError;
53804
+ export declare type KnowledgeBaseSpacePermissionDetail = {
53805
+ __typename?: 'KnowledgeBaseSpacePermissionDetail';
53806
+ currentPermission: KnowledgeBaseSpacePermissionType;
53807
+ invalidPermissions: Array<Maybe<KnowledgeBaseSpacePermissionType>>;
53808
+ validPermissions: Array<KnowledgeBaseSpacePermissionType>;
53809
+ };
53810
+ export declare type KnowledgeBaseSpacePermissionInput = {
53811
+ spaceAris: Array<Scalars['String']['input']>;
53812
+ };
53813
+ export declare type KnowledgeBaseSpacePermissionMutationApi = {
53814
+ __typename?: 'KnowledgeBaseSpacePermissionMutationApi';
53815
+ knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionUpdateResponse;
53816
+ };
53817
+ export declare type KnowledgeBaseSpacePermissionMutationApiKnowledgeBaseSpacePermission_UpdateViewArgs = {
53818
+ input: KnowledgeBaseSpacePermissionUpdateViewInput;
53819
+ };
53820
+ export declare enum KnowledgeBaseSpacePermissionType {
53821
+ AnonymousUsers = "ANONYMOUS_USERS",
53822
+ ConfluenceLicensedUsers = "CONFLUENCE_LICENSED_USERS",
53823
+ ConfluenceUnlicensedUsers = "CONFLUENCE_UNLICENSED_USERS"
53824
+ }
53825
+ export declare type KnowledgeBaseSpacePermissionUpdateResponse = KnowledgeBaseSpacePermission | MutationError;
53826
+ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
53827
+ spaceAri: Scalars['String']['input'];
53828
+ viewPermission: KnowledgeBaseSpacePermissionType;
53829
+ };
53830
+ export declare type KnowledgeBaseSpacePermissions = {
53831
+ __typename?: 'KnowledgeBaseSpacePermissions';
53832
+ permissions: Array<Maybe<KnowledgeBaseSpacePermissions>>;
53833
+ };
53594
53834
  export declare type KnowledgeBaseUnlinkResponse = {
53595
53835
  __typename?: 'KnowledgeBaseUnlinkResponse';
53596
53836
  mutationError?: Maybe<MutationError>;
@@ -53613,10 +53853,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
53613
53853
  __typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
53614
53854
  cloudId: Scalars['String']['output'];
53615
53855
  createdTimestamp: Scalars['String']['output'];
53856
+ creator?: Maybe<User>;
53616
53857
  creatorAccountId: Scalars['String']['output'];
53617
53858
  description?: Maybe<Scalars['String']['output']>;
53618
53859
  keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
53619
53860
  lastModifiedTimestamp: Scalars['String']['output'];
53861
+ lastModifier?: Maybe<User>;
53620
53862
  lastModifierAccountId: Scalars['String']['output'];
53621
53863
  orgId: Scalars['String']['output'];
53622
53864
  title: Scalars['String']['output'];
@@ -54020,26 +54262,6 @@ export declare type LogQueryInput = {
54020
54262
  lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
54021
54263
  msg?: InputMaybe<Scalars['String']['input']>;
54022
54264
  };
54023
- export declare type LpBunchballBadge = {
54024
- __typename?: 'LpBunchballBadge';
54025
- contentfulCourseId?: Maybe<Scalars['String']['output']>;
54026
- dateEarned?: Maybe<Scalars['String']['output']>;
54027
- fullUrl?: Maybe<Scalars['String']['output']>;
54028
- missionId?: Maybe<Scalars['Int']['output']>;
54029
- thumbUrl?: Maybe<Scalars['String']['output']>;
54030
- };
54031
- export declare type LpBunchballBadgeConnection = {
54032
- __typename?: 'LpBunchballBadgeConnection';
54033
- edges?: Maybe<Array<LpBunchballBadgeEdge>>;
54034
- pageInfo?: Maybe<LpPageInfo>;
54035
- totalCount?: Maybe<Scalars['Int']['output']>;
54036
- };
54037
- export declare type LpBunchballBadgeEdge = {
54038
- __typename?: 'LpBunchballBadgeEdge';
54039
- cursor: Scalars['String']['output'];
54040
- node?: Maybe<LpBunchballBadge>;
54041
- };
54042
- export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
54043
54265
  export declare type LpCertSort = {
54044
54266
  sortDirection?: InputMaybe<SortDirection>;
54045
54267
  sortField?: InputMaybe<LpCertSortField>;
@@ -54134,17 +54356,10 @@ export declare enum LpCourseStatus {
54134
54356
  export declare type LpLearner = Node & {
54135
54357
  __typename?: 'LpLearner';
54136
54358
  atlassianId: Scalars['String']['output'];
54137
- bunchballBadges?: Maybe<LpBunchballBadgeResult>;
54138
54359
  certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
54139
54360
  courses?: Maybe<LpCourseProgressResult>;
54140
54361
  id: Scalars['ID']['output'];
54141
54362
  };
54142
- export declare type LpLearnerBunchballBadgesArgs = {
54143
- after?: InputMaybe<Scalars['String']['input']>;
54144
- before?: InputMaybe<Scalars['String']['input']>;
54145
- first?: InputMaybe<Scalars['Int']['input']>;
54146
- last?: InputMaybe<Scalars['Int']['input']>;
54147
- };
54148
54363
  export declare type LpLearnerCertmetricsCertificatesArgs = {
54149
54364
  after?: InputMaybe<Scalars['String']['input']>;
54150
54365
  before?: InputMaybe<Scalars['String']['input']>;
@@ -54411,6 +54626,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
54411
54626
  };
54412
54627
  export declare type MarketplaceConsoleAppSoftwareVersion = {
54413
54628
  __typename?: 'MarketplaceConsoleAppSoftwareVersion';
54629
+ appSoftware?: Maybe<MarketplaceConsoleAppSoftwareShort>;
54414
54630
  appSoftwareId: Scalars['ID']['output'];
54415
54631
  buildNumber: Scalars['ID']['output'];
54416
54632
  changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
@@ -54437,11 +54653,21 @@ export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
54437
54653
  parentSoftware?: Maybe<MarketplaceConsoleParentSoftware>;
54438
54654
  parentSoftwareId: Scalars['ID']['output'];
54439
54655
  };
54656
+ export declare type MarketplaceConsoleAppSoftwareVersionCompatibilityInput = {
54657
+ hosting: MarketplaceConsoleHosting;
54658
+ maxBuildNumber?: InputMaybe<Scalars['Int']['input']>;
54659
+ minBuildNumber?: InputMaybe<Scalars['Int']['input']>;
54660
+ parentSoftwareId: Scalars['ID']['input'];
54661
+ };
54440
54662
  export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
54441
54663
  __typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
54442
54664
  attributes: MarketplaceConsoleFrameworkAttributes;
54443
54665
  frameworkId: Scalars['ID']['output'];
54444
54666
  };
54667
+ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput = {
54668
+ attributes: MarketplaceConsoleFrameworkAttributesInput;
54669
+ frameworkId: Scalars['ID']['input'];
54670
+ };
54445
54671
  export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
54446
54672
  __typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
54447
54673
  id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
@@ -54502,6 +54728,12 @@ export declare type MarketplaceConsoleAppSoftwares = {
54502
54728
  __typename?: 'MarketplaceConsoleAppSoftwares';
54503
54729
  appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
54504
54730
  };
54731
+ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
54732
+ buildNumber?: InputMaybe<Scalars['Int']['input']>;
54733
+ compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
54734
+ frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
54735
+ versionNumber?: InputMaybe<Scalars['String']['input']>;
54736
+ };
54505
54737
  export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
54506
54738
  appId?: InputMaybe<Scalars['ID']['input']>;
54507
54739
  appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
@@ -54515,9 +54747,16 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
54515
54747
  };
54516
54748
  export declare type MarketplaceConsoleConnectFrameworkAttributes = {
54517
54749
  __typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
54750
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54518
54751
  descriptorId: Scalars['ID']['output'];
54752
+ descriptorUrl: Scalars['String']['output'];
54519
54753
  scopes: Array<Scalars['String']['output']>;
54520
54754
  };
54755
+ export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
54756
+ descriptorId: Scalars['String']['input'];
54757
+ href: Scalars['String']['input'];
54758
+ scopes?: InputMaybe<Array<Scalars['String']['input']>>;
54759
+ };
54521
54760
  export declare type MarketplaceConsoleDeploymentInstruction = {
54522
54761
  __typename?: 'MarketplaceConsoleDeploymentInstruction';
54523
54762
  body: Scalars['String']['output'];
@@ -54651,6 +54890,11 @@ export declare type MarketplaceConsoleExternalFrameworkAttributes = {
54651
54890
  authorization: Scalars['Boolean']['output'];
54652
54891
  binaryUrl?: Maybe<Scalars['String']['output']>;
54653
54892
  };
54893
+ export declare type MarketplaceConsoleExternalFrameworkAttributesInput = {
54894
+ authorization: Scalars['Boolean']['input'];
54895
+ binaryUrl?: InputMaybe<Scalars['String']['input']>;
54896
+ learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
54897
+ };
54654
54898
  export declare type MarketplaceConsoleFeature = {
54655
54899
  __typename?: 'MarketplaceConsoleFeature';
54656
54900
  description: Scalars['String']['output'];
@@ -54668,9 +54912,30 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
54668
54912
  __typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
54669
54913
  appId: Scalars['ID']['output'];
54670
54914
  envId: Scalars['ID']['output'];
54915
+ scopes: Array<Scalars['String']['output']>;
54671
54916
  versionId: Scalars['String']['output'];
54672
54917
  };
54673
- export declare type MarketplaceConsoleFrameworkAttributes = MarketplaceConsoleConnectFrameworkAttributes | MarketplaceConsoleExternalFrameworkAttributes | MarketplaceConsoleForgeFrameworkAttributes | MarketplaceConsolePluginsFrameworkAttributes | MarketplaceConsoleWorkflowFrameworkAttributes;
54918
+ export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
54919
+ appId: Scalars['String']['input'];
54920
+ envId: Scalars['String']['input'];
54921
+ versionId: Scalars['String']['input'];
54922
+ };
54923
+ export declare type MarketplaceConsoleFrameworkAttributes = {
54924
+ __typename?: 'MarketplaceConsoleFrameworkAttributes';
54925
+ connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
54926
+ external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
54927
+ forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
54928
+ plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
54929
+ plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
54930
+ workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
54931
+ };
54932
+ export declare type MarketplaceConsoleFrameworkAttributesInput = {
54933
+ connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
54934
+ external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
54935
+ forge?: InputMaybe<MarketplaceConsoleForgeFrameworkAttributesInput>;
54936
+ plugin?: InputMaybe<MarketplaceConsolePluginFrameworkAttributesInput>;
54937
+ workflow?: InputMaybe<MarketplaceConsoleWorkflowFrameworkAttributesInput>;
54938
+ };
54674
54939
  export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
54675
54940
  __typename?: 'MarketplaceConsoleGenericError';
54676
54941
  message: Scalars['String']['output'];
@@ -54753,10 +55018,12 @@ export declare type MarketplaceConsoleMutationApi = {
54753
55018
  __typename?: 'MarketplaceConsoleMutationApi';
54754
55019
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
54755
55020
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
55021
+ createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
55022
+ createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54756
55023
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54757
55024
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54758
55025
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
54759
- validateArtifactUrl?: Maybe<MarketplaceConsoleRemoteFetchedSoftwareArtifact>;
55026
+ validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54760
55027
  };
54761
55028
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
54762
55029
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -54765,6 +55032,13 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
54765
55032
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
54766
55033
  appSoftwareId: Scalars['String']['input'];
54767
55034
  };
55035
+ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
55036
+ product: MarketplaceConsoleEditionsInput;
55037
+ };
55038
+ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
55039
+ appKey: Scalars['ID']['input'];
55040
+ version: MarketplaceConsoleAppVersionCreateRequestInput;
55041
+ };
54768
55042
  export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
54769
55043
  appSoftwareId: Scalars['String']['input'];
54770
55044
  token: Scalars['String']['input'];
@@ -54835,10 +55109,21 @@ export declare enum MarketplaceConsolePaymentModel {
54835
55109
  PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
54836
55110
  PaidViaVendor = "PAID_VIA_VENDOR"
54837
55111
  }
54838
- export declare type MarketplaceConsolePluginsFrameworkAttributes = {
54839
- __typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
55112
+ export declare type MarketplaceConsolePluginFrameworkAttributes = {
55113
+ __typename?: 'MarketplaceConsolePluginFrameworkAttributes';
55114
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54840
55115
  artifactId: Scalars['ID']['output'];
55116
+ descriptorId?: Maybe<Scalars['String']['output']>;
55117
+ pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
54841
55118
  };
55119
+ export declare type MarketplaceConsolePluginFrameworkAttributesInput = {
55120
+ artifactId: Scalars['String']['input'];
55121
+ href: Scalars['String']['input'];
55122
+ };
55123
+ export declare enum MarketplaceConsolePluginFrameworkType {
55124
+ P1 = "P1",
55125
+ P2 = "P2"
55126
+ }
54842
55127
  export declare enum MarketplaceConsolePricingCurrency {
54843
55128
  Jpy = "JPY",
54844
55129
  Usd = "USD"
@@ -54936,6 +55221,17 @@ export declare type MarketplaceConsoleProductMetadata = {
54936
55221
  productId: Scalars['ID']['output'];
54937
55222
  vendorId: Scalars['ID']['output'];
54938
55223
  };
55224
+ export declare type MarketplaceConsoleProductTag = {
55225
+ __typename?: 'MarketplaceConsoleProductTag';
55226
+ description?: Maybe<Scalars['String']['output']>;
55227
+ id: Scalars['ID']['output'];
55228
+ name: Scalars['String']['output'];
55229
+ };
55230
+ export declare enum MarketplaceConsoleProductTagType {
55231
+ Category = "CATEGORY",
55232
+ Keywords = "KEYWORDS",
55233
+ Marketing = "MARKETING"
55234
+ }
54939
55235
  export declare type MarketplaceConsoleQueryApi = {
54940
55236
  __typename?: 'MarketplaceConsoleQueryApi';
54941
55237
  appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
@@ -54955,6 +55251,7 @@ export declare type MarketplaceConsoleQueryApi = {
54955
55251
  product?: Maybe<MarketplaceConsoleProduct>;
54956
55252
  productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
54957
55253
  productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
55254
+ productTags: Array<MarketplaceConsoleProductTag>;
54958
55255
  };
54959
55256
  export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
54960
55257
  after?: InputMaybe<Scalars['String']['input']>;
@@ -55004,14 +55301,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
55004
55301
  export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
55005
55302
  appId: Scalars['ID']['input'];
55006
55303
  };
55304
+ export declare type MarketplaceConsoleQueryApiProductTagsArgs = {
55305
+ tagType: MarketplaceConsoleProductTagType;
55306
+ };
55007
55307
  export declare type MarketplaceConsoleRemoteArtifactLinks = {
55008
55308
  __typename?: 'MarketplaceConsoleRemoteArtifactLinks';
55009
55309
  binary: MarketplaceConsoleLink;
55010
55310
  remote?: Maybe<MarketplaceConsoleLink>;
55011
55311
  self: MarketplaceConsoleLink;
55012
55312
  };
55013
- export declare type MarketplaceConsoleRemoteFetchedSoftwareArtifact = {
55014
- __typename?: 'MarketplaceConsoleRemoteFetchedSoftwareArtifact';
55313
+ export declare type MarketplaceConsoleSoftwareArtifact = {
55314
+ __typename?: 'MarketplaceConsoleSoftwareArtifact';
55015
55315
  fileInfo: MarketplaceConsoleArtifactFileInfo;
55016
55316
  links: MarketplaceConsoleRemoteArtifactLinks;
55017
55317
  };
@@ -55053,8 +55353,13 @@ export declare type MarketplaceConsoleVendorLinks = {
55053
55353
  };
55054
55354
  export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
55055
55355
  __typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
55356
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55056
55357
  artifactId: Scalars['ID']['output'];
55057
55358
  };
55359
+ export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
55360
+ artifactId: Scalars['String']['input'];
55361
+ href: Scalars['String']['input'];
55362
+ };
55058
55363
  export declare enum MarketplaceEntityStatus {
55059
55364
  Active = "ACTIVE",
55060
55365
  Archived = "ARCHIVED"
@@ -55323,6 +55628,28 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
55323
55628
  Archived = "ARCHIVED",
55324
55629
  Inactive = "INACTIVE"
55325
55630
  }
55631
+ export declare type MarketplaceStoreEdition = {
55632
+ __typename?: 'MarketplaceStoreEdition';
55633
+ features: Array<MarketplaceStoreEditionFeature>;
55634
+ id: Scalars['ID']['output'];
55635
+ isDefault: Scalars['Boolean']['output'];
55636
+ pricingPlan: MarketplaceStorePricingPlan;
55637
+ type: MarketplaceStoreEditionType;
55638
+ };
55639
+ export declare type MarketplaceStoreEditionFeature = {
55640
+ __typename?: 'MarketplaceStoreEditionFeature';
55641
+ description: Scalars['String']['output'];
55642
+ id: Scalars['ID']['output'];
55643
+ name: Scalars['String']['output'];
55644
+ position: Scalars['Int']['output'];
55645
+ };
55646
+ export declare enum MarketplaceStoreEditionType {
55647
+ Advanced = "ADVANCED",
55648
+ Standard = "STANDARD"
55649
+ }
55650
+ export declare type MarketplaceStoreEditionsInput = {
55651
+ appId?: InputMaybe<Scalars['String']['input']>;
55652
+ };
55326
55653
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
55327
55654
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
55328
55655
  description: Scalars['String']['output'];
@@ -55520,11 +55847,43 @@ export declare type MarketplaceStorePartnerSupportHoliday = {
55520
55847
  repeatAnnually: Scalars['Boolean']['output'];
55521
55848
  title: Scalars['String']['output'];
55522
55849
  };
55850
+ export declare enum MarketplaceStorePricingCurrency {
55851
+ Jpy = "JPY",
55852
+ Usd = "USD"
55853
+ }
55854
+ export declare type MarketplaceStorePricingPlan = {
55855
+ __typename?: 'MarketplaceStorePricingPlan';
55856
+ annualPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
55857
+ currency: MarketplaceStorePricingCurrency;
55858
+ monthlyPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
55859
+ };
55860
+ export declare type MarketplaceStorePricingPlanItem = {
55861
+ __typename?: 'MarketplaceStorePricingPlanItem';
55862
+ tieredPricing: Array<MarketplaceStorePricingTier>;
55863
+ };
55864
+ export declare type MarketplaceStorePricingTier = {
55865
+ ceiling: Scalars['Float']['output'];
55866
+ floor: Scalars['Float']['output'];
55867
+ };
55868
+ export declare type MarketplaceStorePricingTierAnnual = MarketplaceStorePricingTier & {
55869
+ __typename?: 'MarketplaceStorePricingTierAnnual';
55870
+ ceiling: Scalars['Float']['output'];
55871
+ flatAmount?: Maybe<Scalars['Float']['output']>;
55872
+ floor: Scalars['Float']['output'];
55873
+ };
55874
+ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricingTier & {
55875
+ __typename?: 'MarketplaceStorePricingTierMonthly';
55876
+ ceiling: Scalars['Float']['output'];
55877
+ flatAmount?: Maybe<Scalars['Float']['output']>;
55878
+ floor: Scalars['Float']['output'];
55879
+ unitAmount?: Maybe<Scalars['Float']['output']>;
55880
+ };
55523
55881
  export declare type MarketplaceStoreQueryApi = {
55524
55882
  __typename?: 'MarketplaceStoreQueryApi';
55525
55883
  category: MarketplaceStoreCategoryResponse;
55526
55884
  collection: MarketplaceStoreCollectionResponse;
55527
55885
  currentUser: MarketplaceStoreCurrentUserResponse;
55886
+ editions: Array<MarketplaceStoreEdition>;
55528
55887
  homePage: MarketplaceStoreHomePageResponse;
55529
55888
  installAppStatus: MarketplaceStoreInstallAppResponse;
55530
55889
  partner: MarketplaceStorePartnerResponse;
@@ -55535,6 +55894,9 @@ export declare type MarketplaceStoreQueryApiCategoryArgs = {
55535
55894
  export declare type MarketplaceStoreQueryApiCollectionArgs = {
55536
55895
  slug: Scalars['String']['input'];
55537
55896
  };
55897
+ export declare type MarketplaceStoreQueryApiEditionsArgs = {
55898
+ product: MarketplaceStoreEditionsInput;
55899
+ };
55538
55900
  export declare type MarketplaceStoreQueryApiHomePageArgs = {
55539
55901
  productId?: InputMaybe<Scalars['String']['input']>;
55540
55902
  };
@@ -55707,8 +56069,10 @@ export declare type MercuryDeleteCommentPayload = Payload & {
55707
56069
  success: Scalars['Boolean']['output'];
55708
56070
  };
55709
56071
  export declare type MercuryDeleteFocusAreaGoalLinkInput = {
56072
+ atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
55710
56073
  cloudId: Scalars['ID']['input'];
55711
- id: Scalars['ID']['input'];
56074
+ focusAreaAri?: InputMaybe<Scalars['String']['input']>;
56075
+ id?: InputMaybe<Scalars['ID']['input']>;
55712
56076
  };
55713
56077
  export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
55714
56078
  __typename?: 'MercuryDeleteFocusAreaGoalLinkPayload';
@@ -56080,16 +56444,6 @@ export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
56080
56444
  errors?: Maybe<Array<MutationError>>;
56081
56445
  success: Scalars['Boolean']['output'];
56082
56446
  };
56083
- export declare type MercuryLinkFocusAreasToGoalInput = {
56084
- atlasGoalId: Scalars['ID']['input'];
56085
- cloudId: Scalars['ID']['input'];
56086
- focusAreaIds: Array<Scalars['ID']['input']>;
56087
- };
56088
- export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
56089
- __typename?: 'MercuryLinkFocusAreasToGoalPayload';
56090
- errors?: Maybe<Array<MutationError>>;
56091
- success: Scalars['Boolean']['output'];
56092
- };
56093
56447
  export declare type MercuryLinkFocusAreasToPortfolioInput = {
56094
56448
  cloudId: Scalars['ID']['input'];
56095
56449
  focusAreaIds: Array<Scalars['ID']['input']>;
@@ -56101,9 +56455,11 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
56101
56455
  success: Scalars['Boolean']['output'];
56102
56456
  };
56103
56457
  export declare type MercuryLinkGoalsToFocusAreaInput = {
56104
- atlasGoalIds: Array<Scalars['ID']['input']>;
56458
+ atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
56459
+ atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
56105
56460
  cloudId: Scalars['ID']['input'];
56106
- parentFocusAreaId: Scalars['ID']['input'];
56461
+ focusAreaAri?: InputMaybe<Scalars['String']['input']>;
56462
+ parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
56107
56463
  };
56108
56464
  export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
56109
56465
  __typename?: 'MercuryLinkGoalsToFocusAreaPayload';
@@ -56131,7 +56487,6 @@ export declare type MercuryMutationApi = {
56131
56487
  deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
56132
56488
  deletePreference?: Maybe<MercuryDeletePreferencePayload>;
56133
56489
  linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
56134
- linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
56135
56490
  linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
56136
56491
  linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
56137
56492
  recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
@@ -56191,9 +56546,6 @@ export declare type MercuryMutationApiDeletePreferenceArgs = {
56191
56546
  export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
56192
56547
  input: MercuryLinkFocusAreasToFocusAreaInput;
56193
56548
  };
56194
- export declare type MercuryMutationApiLinkFocusAreasToGoalArgs = {
56195
- input: MercuryLinkFocusAreasToGoalInput;
56196
- };
56197
56549
  export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
56198
56550
  input: MercuryLinkFocusAreasToPortfolioInput;
56199
56551
  };
@@ -56707,6 +57059,18 @@ export declare type MercuryWorkspaceContext = {
56707
57059
  aiEnabled: Scalars['Boolean']['output'];
56708
57060
  cloudId: Scalars['String']['output'];
56709
57061
  };
57062
+ export declare type MigrateComponentTypeInput = {
57063
+ destinationTypeId: Scalars['ID']['input'];
57064
+ sourceTypeId: Scalars['ID']['input'];
57065
+ };
57066
+ export declare type MigrateComponentTypePayload = Payload & {
57067
+ __typename?: 'MigrateComponentTypePayload';
57068
+ affectedComponentsCount?: Maybe<Scalars['Int']['output']>;
57069
+ errors?: Maybe<Array<MutationError>>;
57070
+ failedComponentsCount?: Maybe<Scalars['Int']['output']>;
57071
+ hasMore?: Maybe<Scalars['Boolean']['output']>;
57072
+ success: Scalars['Boolean']['output'];
57073
+ };
56710
57074
  export declare type Migration = {
56711
57075
  __typename?: 'Migration';
56712
57076
  estimation?: Maybe<MigrationEstimation>;
@@ -57079,6 +57443,7 @@ export declare type Mutation = {
57079
57443
  jsmChat?: Maybe<JsmChatMutation>;
57080
57444
  jsw?: Maybe<JswMutation>;
57081
57445
  knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
57446
+ knowledgeBaseSpacePermission_updateView?: Maybe<KnowledgeBaseSpacePermissionMutationApi>;
57082
57447
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
57083
57448
  marketplaceConsole: MarketplaceConsoleMutationApi;
57084
57449
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
@@ -57876,6 +58241,9 @@ export declare type MutationInvokePolarisObjectArgs = {
57876
58241
  export declare type MutationKnowledgeBaseArgs = {
57877
58242
  cloudId: Scalars['ID']['input'];
57878
58243
  };
58244
+ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
58245
+ input: KnowledgeBaseSpacePermissionUpdateViewInput;
58246
+ };
57879
58247
  export declare type MutationMoveSprintDownArgs = {
57880
58248
  input?: InputMaybe<MoveSprintDownInput>;
57881
58249
  };
@@ -60589,6 +60957,7 @@ export declare type Query = {
60589
60957
  jsmChat?: Maybe<JsmChatQuery>;
60590
60958
  jsw?: Maybe<JswQuery>;
60591
60959
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
60960
+ knowledgeBaseSpacePermission_bulkQuery?: Maybe<KnowledgeBaseSpacePermissionBulkQueryApi>;
60592
60961
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
60593
60962
  lpLearnerData?: Maybe<LpLearnerData>;
60594
60963
  marketplaceApp?: Maybe<MarketplaceApp>;
@@ -60649,7 +61018,6 @@ export declare type Query = {
60649
61018
  softwareBoards?: Maybe<BoardScopeConnection>;
60650
61019
  suggest?: Maybe<QuerySuggestionApi>;
60651
61020
  suggestions?: Maybe<AutoSuggestionApi>;
60652
- surfacePlatform: SurfacePlatformQueryApi;
60653
61021
  team?: Maybe<TeamQuery>;
60654
61022
  template?: Maybe<ContentPlatformTemplate>;
60655
61023
  templateCollection?: Maybe<ContentPlatformTemplateCollection>;
@@ -61893,6 +62261,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
61893
62261
  export declare type QueryKnowledgeBaseArgs = {
61894
62262
  cloudId: Scalars['ID']['input'];
61895
62263
  };
62264
+ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
62265
+ input: KnowledgeBaseSpacePermissionInput;
62266
+ };
61896
62267
  export declare type QueryMarketplaceAppArgs = {
61897
62268
  appId: Scalars['ID']['input'];
61898
62269
  };
@@ -64346,6 +64717,17 @@ export declare type ShepherdAlert = Node & {
64346
64717
  updatedOn?: Maybe<Scalars['DateTime']['output']>;
64347
64718
  workspaceId?: Maybe<Scalars['ID']['output']>;
64348
64719
  };
64720
+ export declare enum ShepherdAlertAction {
64721
+ AddLabel = "ADD_LABEL",
64722
+ Redact = "REDACT",
64723
+ Restrict = "RESTRICT",
64724
+ UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
64725
+ }
64726
+ export declare type ShepherdAlertAuthorizedActions = {
64727
+ __typename?: 'ShepherdAlertAuthorizedActions';
64728
+ actions?: Maybe<Array<ShepherdAlertAction>>;
64729
+ };
64730
+ export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
64349
64731
  export declare enum ShepherdAlertDetectionCategory {
64350
64732
  Data = "DATA",
64351
64733
  Threat = "THREAT"
@@ -64362,9 +64744,14 @@ export declare type ShepherdAlertMetaData = {
64362
64744
  };
64363
64745
  export declare type ShepherdAlertQueries = {
64364
64746
  __typename?: 'ShepherdAlertQueries';
64747
+ authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
64365
64748
  byAri?: Maybe<ShepherdAlertResult>;
64366
64749
  byWorkspace?: Maybe<ShepherdAlertsResult>;
64367
64750
  };
64751
+ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
64752
+ id: Scalars['ID']['input'];
64753
+ resource: Scalars['ID']['input'];
64754
+ };
64368
64755
  export declare type ShepherdAlertQueriesByAriArgs = {
64369
64756
  id: Scalars['ID']['input'];
64370
64757
  };
@@ -66230,44 +66617,6 @@ export declare type SupportRequests = {
66230
66617
  page: Array<SupportRequest>;
66231
66618
  total: Scalars['Int']['output'];
66232
66619
  };
66233
- export declare type SurfacePlatformQueryApi = {
66234
- __typename?: 'SurfacePlatformQueryApi';
66235
- surface?: Maybe<SurfacePlatformSurface>;
66236
- surfaceV2?: Maybe<SurfacePlatformSurfaceV2>;
66237
- };
66238
- export declare type SurfacePlatformQueryApiSurfaceArgs = {
66239
- context?: InputMaybe<Scalars['JSON']['input']>;
66240
- id: Scalars['ID']['input'];
66241
- };
66242
- export declare type SurfacePlatformQueryApiSurfaceV2Args = {
66243
- context?: InputMaybe<Scalars['JSON']['input']>;
66244
- key: Scalars['String']['input'];
66245
- type: Scalars['String']['input'];
66246
- };
66247
- export declare type SurfacePlatformSurface = {
66248
- __typename?: 'SurfacePlatformSurface';
66249
- channels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
66250
- description?: Maybe<Scalars['String']['output']>;
66251
- id: Scalars['ID']['output'];
66252
- locale?: Maybe<Scalars['String']['output']>;
66253
- name?: Maybe<Scalars['String']['output']>;
66254
- status?: Maybe<Scalars['String']['output']>;
66255
- version?: Maybe<Scalars['String']['output']>;
66256
- zones?: Maybe<Scalars['JSON']['output']>;
66257
- };
66258
- export declare type SurfacePlatformSurfaceV2 = {
66259
- __typename?: 'SurfacePlatformSurfaceV2';
66260
- channel?: Maybe<Scalars['String']['output']>;
66261
- definitionVersion?: Maybe<Scalars['String']['output']>;
66262
- description?: Maybe<Scalars['String']['output']>;
66263
- fields?: Maybe<Scalars['JSON']['output']>;
66264
- key?: Maybe<Scalars['String']['output']>;
66265
- label?: Maybe<Scalars['String']['output']>;
66266
- locale?: Maybe<Scalars['String']['output']>;
66267
- revision?: Maybe<Scalars['Int']['output']>;
66268
- type?: Maybe<Scalars['String']['output']>;
66269
- zones?: Maybe<Scalars['JSON']['output']>;
66270
- };
66271
66620
  export declare type Swimlane = {
66272
66621
  __typename?: 'Swimlane';
66273
66622
  allowedCardTypes?: Maybe<Array<CardType>>;
@@ -66513,6 +66862,8 @@ export declare type TeamV2MembersArgs = {
66513
66862
  };
66514
66863
  export declare type TenantContext = {
66515
66864
  __typename?: 'TenantContext';
66865
+ activationIdByProduct?: Maybe<TenantContextActivationId>;
66866
+ activationIds?: Maybe<Array<TenantContextActivationId>>;
66516
66867
  cloudId?: Maybe<Scalars['ID']['output']>;
66517
66868
  cloudUrl?: Maybe<Scalars['URL']['output']>;
66518
66869
  customDomains?: Maybe<Array<TenantContextCustomDomain>>;
@@ -66520,9 +66871,17 @@ export declare type TenantContext = {
66520
66871
  hostName?: Maybe<Scalars['String']['output']>;
66521
66872
  orgId?: Maybe<Scalars['ID']['output']>;
66522
66873
  };
66874
+ export declare type TenantContextActivationIdByProductArgs = {
66875
+ product: Scalars['String']['input'];
66876
+ };
66523
66877
  export declare type TenantContextEntitlementInfoArgs = {
66524
66878
  hamsProductKey: Scalars['String']['input'];
66525
66879
  };
66880
+ export declare type TenantContextActivationId = {
66881
+ __typename?: 'TenantContextActivationId';
66882
+ active?: Maybe<Scalars['String']['output']>;
66883
+ product?: Maybe<Scalars['String']['output']>;
66884
+ };
66526
66885
  export declare type TenantContextCustomDomain = {
66527
66886
  __typename?: 'TenantContextCustomDomain';
66528
66887
  hostName?: Maybe<Scalars['String']['output']>;
@@ -67428,7 +67787,6 @@ export declare type TrelloBoard = Node & {
67428
67787
  members?: Maybe<TrelloBoardMembershipsConnection>;
67429
67788
  name: Scalars['String']['output'];
67430
67789
  objectId: Scalars['ID']['output'];
67431
- popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
67432
67790
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
67433
67791
  powerUps?: Maybe<TrelloBoardPowerUpConnection>;
67434
67792
  powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
@@ -67631,11 +67989,16 @@ export declare type TrelloBoardUpdated = {
67631
67989
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
67632
67990
  closed?: Maybe<Scalars['Boolean']['output']>;
67633
67991
  description?: Maybe<TrelloDescription>;
67992
+ enterprise?: Maybe<TrelloEnterprise>;
67634
67993
  id?: Maybe<Scalars['ID']['output']>;
67994
+ labels?: Maybe<Array<TrelloLabel>>;
67635
67995
  lists?: Maybe<TrelloListUpdatedConnection>;
67996
+ members?: Maybe<TrelloBoardMembershipsConnection>;
67636
67997
  name?: Maybe<Scalars['String']['output']>;
67637
67998
  objectId?: Maybe<Scalars['ID']['output']>;
67638
67999
  prefs?: Maybe<TrelloBoardPrefs>;
68000
+ premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
68001
+ url?: Maybe<Scalars['URL']['output']>;
67639
68002
  };
67640
68003
  export declare type TrelloBoardViewer = {
67641
68004
  __typename?: 'TrelloBoardViewer';
@@ -67679,6 +68042,7 @@ export declare type TrelloCard = Node & {
67679
68042
  members?: Maybe<TrelloMemberConnection>;
67680
68043
  name?: Maybe<Scalars['String']['output']>;
67681
68044
  objectId: Scalars['ID']['output'];
68045
+ pinned?: Maybe<Scalars['Boolean']['output']>;
67682
68046
  position?: Maybe<Scalars['Float']['output']>;
67683
68047
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
67684
68048
  role?: Maybe<TrelloCardRole>;
@@ -68180,6 +68544,7 @@ export declare type TrelloMutationApi = {
68180
68544
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
68181
68545
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
68182
68546
  createCard?: Maybe<TrelloCreateCardPayload>;
68547
+ pinCard?: Maybe<TrelloPinCardPayload>;
68183
68548
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
68184
68549
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
68185
68550
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
@@ -68200,6 +68565,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
68200
68565
  export declare type TrelloMutationApiCreateCardArgs = {
68201
68566
  input: TrelloCreateCardInput;
68202
68567
  };
68568
+ export declare type TrelloMutationApiPinCardArgs = {
68569
+ input: TrelloPinCardInput;
68570
+ };
68203
68571
  export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
68204
68572
  input: TrelloRemoveMemberInput;
68205
68573
  };
@@ -68230,35 +68598,23 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
68230
68598
  export declare type TrelloMutationApiWatchCardArgs = {
68231
68599
  input: TrelloWatchCardInput;
68232
68600
  };
68601
+ export declare type TrelloPinCardInput = {
68602
+ cardId: Scalars['ID']['input'];
68603
+ };
68604
+ export declare type TrelloPinCardPayload = Payload & {
68605
+ __typename?: 'TrelloPinCardPayload';
68606
+ card?: Maybe<TrelloCard>;
68607
+ errors?: Maybe<Array<MutationError>>;
68608
+ success: Scalars['Boolean']['output'];
68609
+ };
68233
68610
  export declare type TrelloPlanner = {
68234
68611
  __typename?: 'TrelloPlanner';
68235
- accounts?: Maybe<TrelloPlannerAccountConnection>;
68612
+ accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
68236
68613
  };
68237
68614
  export declare type TrelloPlannerAccountsArgs = {
68238
68615
  after?: InputMaybe<Scalars['String']['input']>;
68239
68616
  first?: InputMaybe<Scalars['Int']['input']>;
68240
68617
  };
68241
- export declare type TrelloPlannerAccount = Node & {
68242
- __typename?: 'TrelloPlannerAccount';
68243
- accountType: TrelloSupportedPlannerProviders;
68244
- enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68245
- id: Scalars['ID']['output'];
68246
- };
68247
- export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
68248
- after?: InputMaybe<Scalars['String']['input']>;
68249
- first?: InputMaybe<Scalars['Int']['input']>;
68250
- };
68251
- export declare type TrelloPlannerAccountConnection = {
68252
- __typename?: 'TrelloPlannerAccountConnection';
68253
- edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
68254
- nodes?: Maybe<Array<TrelloPlannerAccount>>;
68255
- pageInfo: PageInfo;
68256
- };
68257
- export declare type TrelloPlannerAccountEdge = {
68258
- __typename?: 'TrelloPlannerAccountEdge';
68259
- cursor?: Maybe<Scalars['String']['output']>;
68260
- node?: Maybe<TrelloPlannerAccount>;
68261
- };
68262
68618
  export declare type TrelloPlannerCalendar = Node & {
68263
68619
  __typename?: 'TrelloPlannerCalendar';
68264
68620
  color: Scalars['String']['output'];
@@ -68271,6 +68627,33 @@ export declare type TrelloPlannerCalendar = Node & {
68271
68627
  type: TrelloSupportedPlannerProviders;
68272
68628
  workspaceId: Scalars['ID']['output'];
68273
68629
  };
68630
+ export declare type TrelloPlannerCalendarAccount = Node & {
68631
+ __typename?: 'TrelloPlannerCalendarAccount';
68632
+ accountType: TrelloSupportedPlannerProviders;
68633
+ allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68634
+ displayName: Scalars['String']['output'];
68635
+ enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68636
+ id: Scalars['ID']['output'];
68637
+ };
68638
+ export declare type TrelloPlannerCalendarAccountAllCalendarsArgs = {
68639
+ after?: InputMaybe<Scalars['String']['input']>;
68640
+ first?: InputMaybe<Scalars['Int']['input']>;
68641
+ };
68642
+ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
68643
+ after?: InputMaybe<Scalars['String']['input']>;
68644
+ first?: InputMaybe<Scalars['Int']['input']>;
68645
+ };
68646
+ export declare type TrelloPlannerCalendarAccountConnection = {
68647
+ __typename?: 'TrelloPlannerCalendarAccountConnection';
68648
+ edges?: Maybe<Array<TrelloPlannerCalendarAccountEdge>>;
68649
+ nodes?: Maybe<Array<TrelloPlannerCalendarAccount>>;
68650
+ pageInfo: PageInfo;
68651
+ };
68652
+ export declare type TrelloPlannerCalendarAccountEdge = {
68653
+ __typename?: 'TrelloPlannerCalendarAccountEdge';
68654
+ cursor?: Maybe<Scalars['String']['output']>;
68655
+ node?: Maybe<TrelloPlannerCalendarAccount>;
68656
+ };
68274
68657
  export declare type TrelloPlannerCalendarConnection = {
68275
68658
  __typename?: 'TrelloPlannerCalendarConnection';
68276
68659
  edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
@@ -68283,11 +68666,6 @@ export declare type TrelloPlannerCalendarEdge = {
68283
68666
  cursor?: Maybe<Scalars['String']['output']>;
68284
68667
  node?: Maybe<TrelloPlannerCalendar>;
68285
68668
  };
68286
- export declare type TrelloPopularLabelForColor = {
68287
- __typename?: 'TrelloPopularLabelForColor';
68288
- color?: Maybe<Scalars['String']['output']>;
68289
- labelName?: Maybe<Scalars['String']['output']>;
68290
- };
68291
68669
  export declare type TrelloPowerUp = {
68292
68670
  __typename?: 'TrelloPowerUp';
68293
68671
  author?: Maybe<Scalars['String']['output']>;
@@ -68349,7 +68727,7 @@ export declare type TrelloQueryApi = {
68349
68727
  enterprise?: Maybe<TrelloEnterprise>;
68350
68728
  list?: Maybe<TrelloList>;
68351
68729
  member?: Maybe<TrelloMember>;
68352
- plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
68730
+ plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
68353
68731
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
68354
68732
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
68355
68733
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
@@ -69275,6 +69653,7 @@ export declare type UpdateCompassComponentDataManagerMetadataPayload = Payload &
69275
69653
  success: Scalars['Boolean']['output'];
69276
69654
  };
69277
69655
  export declare type UpdateCompassComponentInput = {
69656
+ componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
69278
69657
  customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
69279
69658
  description?: InputMaybe<Scalars['String']['input']>;
69280
69659
  fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
@@ -70466,8 +70845,11 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
70466
70845
  export declare type WorkSuggestionsByProjectsResponse = {
70467
70846
  __typename?: 'WorkSuggestionsByProjectsResponse';
70468
70847
  autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
70848
+ blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
70469
70849
  commonSuggestions?: Maybe<WorkSuggestionsConnection>;
70470
70850
  compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
70851
+ draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
70852
+ inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
70471
70853
  pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
70472
70854
  recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
70473
70855
  sortOrder?: Maybe<WorkSuggestionsOrder>;
@@ -70475,6 +70857,9 @@ export declare type WorkSuggestionsByProjectsResponse = {
70475
70857
  export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
70476
70858
  first?: InputMaybe<Scalars['Int']['input']>;
70477
70859
  };
70860
+ export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
70861
+ input?: InputMaybe<WorkSuggestionsInput>;
70862
+ };
70478
70863
  export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
70479
70864
  after?: InputMaybe<Scalars['String']['input']>;
70480
70865
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -70482,6 +70867,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
70482
70867
  export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
70483
70868
  first?: InputMaybe<Scalars['Int']['input']>;
70484
70869
  };
70870
+ export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
70871
+ input?: InputMaybe<WorkSuggestionsInput>;
70872
+ };
70485
70873
  export declare type WorkSuggestionsCodeTabEdge = {
70486
70874
  __typename?: 'WorkSuggestionsCodeTabEdge';
70487
70875
  cursor: Scalars['String']['output'];
@@ -70638,6 +71026,9 @@ export declare enum WorkSuggestionsEnvironmentType {
70638
71026
  Testing = "TESTING",
70639
71027
  Unmapped = "UNMAPPED"
70640
71028
  }
71029
+ export declare type WorkSuggestionsInput = {
71030
+ targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
71031
+ };
70641
71032
  export declare type WorkSuggestionsJiraAssignee = {
70642
71033
  __typename?: 'WorkSuggestionsJiraAssignee';
70643
71034
  name?: Maybe<Scalars['String']['output']>;
@@ -70733,6 +71124,38 @@ export declare type WorkSuggestionsPeriscopeTask = {
70733
71124
  title: Scalars['String']['output'];
70734
71125
  url: Scalars['String']['output'];
70735
71126
  };
71127
+ export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
71128
+ __typename?: 'WorkSuggestionsPullRequestDraftTask';
71129
+ approvalsCount: Scalars['Int']['output'];
71130
+ author?: Maybe<WorkSuggestionsUserDetail>;
71131
+ commentCount: Scalars['Int']['output'];
71132
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
71133
+ id: Scalars['String']['output'];
71134
+ lastUpdated: Scalars['String']['output'];
71135
+ orderScore?: Maybe<WorkSuggestionsOrderScore>;
71136
+ providerIconUrl?: Maybe<Scalars['String']['output']>;
71137
+ providerName?: Maybe<Scalars['String']['output']>;
71138
+ repositoryName?: Maybe<Scalars['String']['output']>;
71139
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
71140
+ title: Scalars['String']['output'];
71141
+ url: Scalars['String']['output'];
71142
+ };
71143
+ export declare type WorkSuggestionsPullRequestInactiveTask = WorkSuggestionsCommon & {
71144
+ __typename?: 'WorkSuggestionsPullRequestInactiveTask';
71145
+ approvalsCount: Scalars['Int']['output'];
71146
+ author?: Maybe<WorkSuggestionsUserDetail>;
71147
+ commentCount: Scalars['Int']['output'];
71148
+ destinationBranchName?: Maybe<Scalars['String']['output']>;
71149
+ id: Scalars['String']['output'];
71150
+ lastUpdated: Scalars['String']['output'];
71151
+ orderScore?: Maybe<WorkSuggestionsOrderScore>;
71152
+ providerIconUrl?: Maybe<Scalars['String']['output']>;
71153
+ providerName?: Maybe<Scalars['String']['output']>;
71154
+ repositoryName?: Maybe<Scalars['String']['output']>;
71155
+ sourceBranchName?: Maybe<Scalars['String']['output']>;
71156
+ title: Scalars['String']['output'];
71157
+ url: Scalars['String']['output'];
71158
+ };
70736
71159
  export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
70737
71160
  __typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
70738
71161
  commentCount: Scalars['Int']['output'];
@@ -70794,6 +71217,10 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
70794
71217
  success: Scalars['Boolean']['output'];
70795
71218
  userProfile?: Maybe<WorkSuggestionsUserProfile>;
70796
71219
  };
71220
+ export declare enum WorkSuggestionsTargetAudience {
71221
+ Me = "ME",
71222
+ Team = "TEAM"
71223
+ }
70797
71224
  export declare type WorkSuggestionsUserActionState = {
70798
71225
  __typename?: 'WorkSuggestionsUserActionState';
70799
71226
  expireAt: Scalars['String']['output'];