@forge/cli-shared 5.5.0-next.12 → 5.5.0-next.14

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'];
@@ -3739,6 +3752,7 @@ export declare type CompassComponent = Node & {
3739
3752
  announcements?: Maybe<Array<CompassAnnouncement>>;
3740
3753
  api?: Maybe<CompassComponentApi>;
3741
3754
  applicableScorecards?: Maybe<Array<CompassScorecard>>;
3755
+ appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
3742
3756
  changeMetadata: CompassChangeMetadata;
3743
3757
  componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
3744
3758
  customFields?: Maybe<Array<CompassCustomField>>;
@@ -3765,6 +3779,10 @@ export declare type CompassComponent = Node & {
3765
3779
  viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
3766
3780
  viewerSubscription?: Maybe<CompassViewerSubscription>;
3767
3781
  };
3782
+ export declare type CompassComponentAppliedScorecardsArgs = {
3783
+ after?: InputMaybe<Scalars['String']['input']>;
3784
+ first?: InputMaybe<Scalars['Int']['input']>;
3785
+ };
3768
3786
  export declare type CompassComponentDeactivatedScorecardsArgs = {
3769
3787
  after?: InputMaybe<Scalars['String']['input']>;
3770
3788
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -3939,6 +3957,21 @@ export declare type CompassComponentEndpointEdge = {
3939
3957
  cursor: Scalars['String']['output'];
3940
3958
  node: CompassComponentEndpoint;
3941
3959
  };
3960
+ export declare type CompassComponentHasScorecardsAppliedConnection = {
3961
+ __typename?: 'CompassComponentHasScorecardsAppliedConnection';
3962
+ edges?: Maybe<Array<CompassComponentHasScorecardsAppliedEdge>>;
3963
+ nodes?: Maybe<Array<CompassScorecard>>;
3964
+ pageInfo: PageInfo;
3965
+ };
3966
+ export declare type CompassComponentHasScorecardsAppliedEdge = {
3967
+ __typename?: 'CompassComponentHasScorecardsAppliedEdge';
3968
+ activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
3969
+ cursor: Scalars['String']['output'];
3970
+ node?: Maybe<CompassScorecard>;
3971
+ };
3972
+ export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
3973
+ query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
3974
+ };
3942
3975
  export declare type CompassComponentInstancePermissions = {
3943
3976
  __typename?: 'CompassComponentInstancePermissions';
3944
3977
  applyScorecard?: Maybe<CompassPermissionResult>;
@@ -15893,6 +15926,7 @@ export declare type CustomerServiceAttributes = {
15893
15926
  };
15894
15927
  export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
15895
15928
  export declare type CustomerServiceContext = {
15929
+ issueId?: InputMaybe<Scalars['String']['input']>;
15896
15930
  type: CustomerServiceContextType;
15897
15931
  };
15898
15932
  export declare type CustomerServiceContextConfiguration = {
@@ -15958,6 +15992,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
15958
15992
  success: Scalars['Boolean']['output'];
15959
15993
  successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
15960
15994
  };
15995
+ export declare type CustomerServiceCustomDetailContextInput = {
15996
+ contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
15997
+ id: Scalars['ID']['input'];
15998
+ };
15961
15999
  export declare enum CustomerServiceCustomDetailCreateErrorCode {
15962
16000
  ColorNotSaved = "COLOR_NOT_SAVED"
15963
16001
  }
@@ -16225,6 +16263,7 @@ export declare type CustomerServiceMutationApi = {
16225
16263
  removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
16226
16264
  updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
16227
16265
  updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
16266
+ updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
16228
16267
  updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
16229
16268
  updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
16230
16269
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
@@ -16294,6 +16333,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
16294
16333
  export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
16295
16334
  input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
16296
16335
  };
16336
+ export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
16337
+ input: Array<CustomerServiceCustomDetailContextInput>;
16338
+ };
16297
16339
  export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
16298
16340
  input: CustomerServiceCustomDetailPermissionsUpdateInput;
16299
16341
  };
@@ -16583,6 +16625,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
16583
16625
  errors?: Maybe<Array<MutationError>>;
16584
16626
  success: Scalars['Boolean']['output'];
16585
16627
  };
16628
+ export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
16629
+ __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
16630
+ errors?: Maybe<Array<MutationError>>;
16631
+ success: Scalars['Boolean']['output'];
16632
+ successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
16633
+ };
16586
16634
  export declare type CustomerServiceUpdateCustomDetailValueInput = {
16587
16635
  id: CustomerServiceCustomDetailEntityTypeId;
16588
16636
  name: Scalars['String']['input'];
@@ -20191,6 +20239,7 @@ export declare type ForgeAlertsQuery = {
20191
20239
  isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
20192
20240
  rule?: Maybe<ForgeAlertsRuleResult>;
20193
20241
  ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
20242
+ ruleFilters?: Maybe<ForgeAlertsRuleFiltersResult>;
20194
20243
  rules?: Maybe<ForgeAlertsRulesResult>;
20195
20244
  };
20196
20245
  export declare type ForgeAlertsQueryAlertArgs = {
@@ -20223,6 +20272,9 @@ export declare type ForgeAlertsQueryRuleArgs = {
20223
20272
  export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
20224
20273
  query: ForgeAlertsRuleActivityLogsInput;
20225
20274
  };
20275
+ export declare type ForgeAlertsQueryRuleFiltersArgs = {
20276
+ input: ForgeAlertsRuleFiltersInput;
20277
+ };
20226
20278
  export declare type ForgeAlertsQueryIntervalInput = {
20227
20279
  end: Scalars['String']['input'];
20228
20280
  start: Scalars['String']['input'];
@@ -20316,12 +20368,20 @@ export declare type ForgeAlertsRuleFilters = {
20316
20368
  dimension: ForgeAlertsRuleFilterDimensions;
20317
20369
  value: Array<Scalars['String']['input']>;
20318
20370
  };
20371
+ export declare type ForgeAlertsRuleFiltersData = {
20372
+ __typename?: 'ForgeAlertsRuleFiltersData';
20373
+ filters: Array<ForgeAlertsMetricsLabelGroup>;
20374
+ };
20375
+ export declare type ForgeAlertsRuleFiltersInput = {
20376
+ environment: Scalars['String']['input'];
20377
+ };
20319
20378
  export declare type ForgeAlertsRuleFiltersResponse = {
20320
20379
  __typename?: 'ForgeAlertsRuleFiltersResponse';
20321
20380
  action: ForgeAlertsRuleFilterActions;
20322
20381
  dimension: ForgeAlertsRuleFilterDimensions;
20323
20382
  value: Array<Scalars['String']['output']>;
20324
20383
  };
20384
+ export declare type ForgeAlertsRuleFiltersResult = ForgeAlertsRuleFiltersData | QueryError;
20325
20385
  export declare enum ForgeAlertsRuleMetricType {
20326
20386
  InvocationCount = "INVOCATION_COUNT",
20327
20387
  InvocationErrors = "INVOCATION_ERRORS",
@@ -24950,6 +25010,7 @@ export declare type GraphStore = {
24950
25010
  testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
24951
25011
  testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
24952
25012
  testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
25013
+ userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
24953
25014
  versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
24954
25015
  versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
24955
25016
  versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
@@ -26908,6 +26969,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
26908
26969
  first?: InputMaybe<Scalars['Int']['input']>;
26909
26970
  id: Scalars['ID']['input'];
26910
26971
  };
26972
+ export declare type GraphStoreUserOwnsComponentArgs = {
26973
+ after?: InputMaybe<Scalars['String']['input']>;
26974
+ first?: InputMaybe<Scalars['Int']['input']>;
26975
+ id: Scalars['ID']['input'];
26976
+ sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
26977
+ };
26911
26978
  export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
26912
26979
  after?: InputMaybe<Scalars['String']['input']>;
26913
26980
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -35123,6 +35190,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
35123
35190
  node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
35124
35191
  };
35125
35192
  export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
35193
+ export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
35194
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
35195
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
35196
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
35197
+ pageInfo: PageInfo;
35198
+ totalCount?: Maybe<Scalars['Int']['output']>;
35199
+ };
35200
+ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
35201
+ __typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
35202
+ createdAt: Scalars['DateTime']['output'];
35203
+ cursor?: Maybe<Scalars['String']['output']>;
35204
+ id: Scalars['ID']['output'];
35205
+ lastUpdated: Scalars['DateTime']['output'];
35206
+ node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
35207
+ };
35208
+ export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
35126
35209
  export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
35127
35210
  __typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
35128
35211
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
@@ -35757,6 +35840,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
35757
35840
  export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
35758
35841
  lastModified?: InputMaybe<GraphStoreSortInput>;
35759
35842
  };
35843
+ export declare type GraphStoreUserOwnsComponentSortInput = {
35844
+ createdAt?: InputMaybe<GraphStoreSortInput>;
35845
+ fromAti?: InputMaybe<GraphStoreSortInput>;
35846
+ lastModified?: InputMaybe<GraphStoreSortInput>;
35847
+ toAti?: InputMaybe<GraphStoreSortInput>;
35848
+ };
35760
35849
  export declare type GraphStoreVersionAssociatedBranchSortInput = {
35761
35850
  createdAt?: InputMaybe<GraphStoreSortInput>;
35762
35851
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -36621,10 +36710,15 @@ export declare enum HelpCenterPortalsType {
36621
36710
  Hidden = "HIDDEN",
36622
36711
  Visible = "VISIBLE"
36623
36712
  }
36713
+ export declare enum HelpCenterProjectMappingOperationType {
36714
+ MapProjects = "MAP_PROJECTS",
36715
+ UnmapProjects = "UNMAP_PROJECTS"
36716
+ }
36624
36717
  export declare type HelpCenterProjectMappingUpdateInput = {
36625
36718
  helpCenterAri: Scalars['String']['input'];
36626
- mappedProjectIds: Array<Scalars['String']['input']>;
36627
- syncNewProjects: Scalars['Boolean']['input'];
36719
+ operationType?: InputMaybe<HelpCenterProjectMappingOperationType>;
36720
+ projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
36721
+ syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
36628
36722
  };
36629
36723
  export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
36630
36724
  __typename?: 'HelpCenterProjectMappingUpdatePayload';
@@ -37945,17 +38039,12 @@ export declare type InlineColumnEditConfig = {
37945
38039
  export declare type Insights = {
37946
38040
  __typename?: 'Insights';
37947
38041
  githubOnboardingDetails: InsightsGithubOnboardingDetails;
37948
- nextBestTasksByContextAri: Array<InsightsNextBestTask>;
37949
38042
  nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
37950
38043
  };
37951
38044
  export declare type InsightsGithubOnboardingDetailsArgs = {
37952
38045
  cloudId: Scalars['ID']['input'];
37953
38046
  projectAri?: InputMaybe<Scalars['ID']['input']>;
37954
38047
  };
37955
- export declare type InsightsNextBestTasksByContextAriArgs = {
37956
- contextAri: InsightsContextAri;
37957
- statusId?: InputMaybe<Scalars['String']['input']>;
37958
- };
37959
38048
  export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
37960
38049
  after?: InputMaybe<Scalars['String']['input']>;
37961
38050
  contextAri: InsightsContextAri;
@@ -37981,13 +38070,6 @@ export declare type InsightsBlockedIssue = {
37981
38070
  issueKey: Scalars['String']['output'];
37982
38071
  title: Scalars['String']['output'];
37983
38072
  };
37984
- export declare type InsightsBlockingIssueDetails = {
37985
- __typename?: 'InsightsBlockingIssueDetails';
37986
- blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
37987
- issueIconUrl: Scalars['String']['output'];
37988
- issueId: Scalars['String']['output'];
37989
- issueKey: Scalars['String']['output'];
37990
- };
37991
38073
  export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
37992
38074
  __typename?: 'InsightsBlockingIssueTask';
37993
38075
  blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
@@ -37998,15 +38080,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
37998
38080
  title: Scalars['String']['output'];
37999
38081
  url: Scalars['String']['output'];
38000
38082
  };
38001
- export declare type InsightsBuildDetails = {
38002
- __typename?: 'InsightsBuildDetails';
38003
- buildNumber: Scalars['Int']['output'];
38004
- issueId: Scalars['String']['output'];
38005
- issueKey: Scalars['String']['output'];
38006
- issueName: Scalars['String']['output'];
38007
- lastUpdated: Scalars['String']['output'];
38008
- numberOfFailedBuilds: Scalars['Int']['output'];
38009
- };
38010
38083
  export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
38011
38084
  __typename?: 'InsightsBuildTask';
38012
38085
  buildNumber: Scalars['Int']['output'];
@@ -38034,17 +38107,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
38034
38107
  title: Scalars['String']['output'];
38035
38108
  url: Scalars['String']['output'];
38036
38109
  };
38037
- export declare type InsightsDeploymentDetails = {
38038
- __typename?: 'InsightsDeploymentDetails';
38039
- environmentNames: Array<Scalars['String']['output']>;
38040
- environmentType: InsightsEnvironmentType;
38041
- issueId: Scalars['String']['output'];
38042
- issueKey: Scalars['String']['output'];
38043
- issueName: Scalars['String']['output'];
38044
- lastUpdated: Scalars['String']['output'];
38045
- numberOfFailedDeployments: Scalars['Int']['output'];
38046
- pipelineName: Scalars['String']['output'];
38047
- };
38048
38110
  export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
38049
38111
  __typename?: 'InsightsDeploymentTask';
38050
38112
  environmentNames: Array<Scalars['String']['output']>;
@@ -38118,14 +38180,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
38118
38180
  errorType?: Maybe<Scalars['String']['output']>;
38119
38181
  statusCode?: Maybe<Scalars['Int']['output']>;
38120
38182
  };
38121
- export declare type InsightsNextBestTask = {
38122
- __typename?: 'InsightsNextBestTask';
38123
- details: InsightsNextBestTaskDetails;
38124
- id: Scalars['String']['output'];
38125
- task: InsightsTaskType;
38126
- title: Scalars['String']['output'];
38127
- url: Scalars['String']['output'];
38128
- };
38129
38183
  export declare enum InsightsNextBestTaskAction {
38130
38184
  Remove = "REMOVE",
38131
38185
  Snooze = "SNOOZE"
@@ -38142,24 +38196,11 @@ export declare type InsightsNextBestTaskConnection = {
38142
38196
  pageInfo: PageInfo;
38143
38197
  totalCount?: Maybe<Scalars['Int']['output']>;
38144
38198
  };
38145
- export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
38146
38199
  export declare type InsightsNextBestTaskEdge = {
38147
38200
  __typename?: 'InsightsNextBestTaskEdge';
38148
38201
  cursor: Scalars['String']['output'];
38149
38202
  node?: Maybe<InsightsNextBestTaskCommon>;
38150
38203
  };
38151
- export declare type InsightsPullRequestNeedsWorkDetails = {
38152
- __typename?: 'InsightsPullRequestNeedsWorkDetails';
38153
- commentCount: Scalars['Int']['output'];
38154
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38155
- lastUpdated: Scalars['String']['output'];
38156
- needsWorkCount: Scalars['Int']['output'];
38157
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38158
- providerName?: Maybe<Scalars['String']['output']>;
38159
- repositoryName?: Maybe<Scalars['String']['output']>;
38160
- reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
38161
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38162
- };
38163
38204
  export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
38164
38205
  __typename?: 'InsightsPullRequestNeedsWorkTask';
38165
38206
  commentCount: Scalars['Int']['output'];
@@ -38175,18 +38216,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
38175
38216
  title: Scalars['String']['output'];
38176
38217
  url: Scalars['String']['output'];
38177
38218
  };
38178
- export declare type InsightsPullRequestReviewDetails = {
38179
- __typename?: 'InsightsPullRequestReviewDetails';
38180
- approvalsCount: Scalars['Int']['output'];
38181
- author?: Maybe<InsightsUserDetail>;
38182
- commentCount: Scalars['Int']['output'];
38183
- destinationBranchName?: Maybe<Scalars['String']['output']>;
38184
- lastUpdated: Scalars['String']['output'];
38185
- providerIconUrl?: Maybe<Scalars['String']['output']>;
38186
- providerName?: Maybe<Scalars['String']['output']>;
38187
- repositoryName?: Maybe<Scalars['String']['output']>;
38188
- sourceBranchName?: Maybe<Scalars['String']['output']>;
38189
- };
38190
38219
  export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
38191
38220
  __typename?: 'InsightsPullRequestReviewTask';
38192
38221
  approvalsCount: Scalars['Int']['output'];
@@ -38232,15 +38261,6 @@ export declare type InsightsUserDetail = {
38232
38261
  id: Scalars['ID']['output'];
38233
38262
  name: Scalars['String']['output'];
38234
38263
  };
38235
- export declare type InsightsVulnDetails = {
38236
- __typename?: 'InsightsVulnDetails';
38237
- id: Scalars['ID']['output'];
38238
- introducedDate: Scalars['String']['output'];
38239
- issueId: Scalars['String']['output'];
38240
- issueKey: Scalars['String']['output'];
38241
- securityContainerName: Scalars['String']['output'];
38242
- status: InsightsVulnerabilityStatus;
38243
- };
38244
38264
  export declare enum InsightsVulnerabilityStatus {
38245
38265
  Closed = "CLOSED",
38246
38266
  Ignored = "IGNORED",
@@ -39700,6 +39720,7 @@ export declare enum JiraBoardLocationType {
39700
39720
  Project = "PROJECT",
39701
39721
  User = "USER"
39702
39722
  }
39723
+ export declare type JiraBoardResult = JiraBoard | QueryError;
39703
39724
  export declare enum JiraBoardType {
39704
39725
  Kanban = "KANBAN",
39705
39726
  Scrum = "SCRUM"
@@ -40989,7 +41010,8 @@ export declare type JiraCreateBoardPayload = Payload & {
40989
41010
  success: Scalars['Boolean']['output'];
40990
41011
  };
40991
41012
  export declare type JiraCreateBoardSource = {
40992
- fieldInput: JiraCreateBoardFieldInput;
41013
+ fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
41014
+ savedFilterId?: InputMaybe<Scalars['Long']['input']>;
40993
41015
  };
40994
41016
  export declare type JiraCreateCalendarIssuePayload = Payload & {
40995
41017
  __typename?: 'JiraCreateCalendarIssuePayload';
@@ -43834,6 +43856,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
43834
43856
  fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
43835
43857
  searchString?: InputMaybe<Scalars['String']['input']>;
43836
43858
  };
43859
+ export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
43860
+ __typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
43861
+ errors?: Maybe<Array<MutationError>>;
43862
+ success: Scalars['Boolean']['output'];
43863
+ };
43837
43864
  export declare type JiraIssueSearchInput = {
43838
43865
  customInput?: InputMaybe<JiraIssueSearchCustomInput>;
43839
43866
  filterId?: InputMaybe<Scalars['String']['input']>;
@@ -43872,6 +43899,7 @@ export declare type JiraIssueSearchView = Node & {
43872
43899
  filterId?: Maybe<Scalars['String']['output']>;
43873
43900
  hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
43874
43901
  id: Scalars['ID']['output'];
43902
+ isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
43875
43903
  namespace?: Maybe<Scalars['String']['output']>;
43876
43904
  viewId?: Maybe<Scalars['String']['output']>;
43877
43905
  };
@@ -43941,6 +43969,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
43941
43969
  JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
43942
43970
  JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
43943
43971
  JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
43972
+ JiraServiceManagementOrganizationField?: InputMaybe<Array<JiraServiceManagementUpdateOrganizationFieldInput>>;
43944
43973
  JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
43945
43974
  JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
43946
43975
  JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
@@ -45195,6 +45224,7 @@ export declare type JiraMutation = {
45195
45224
  setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
45196
45225
  setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
45197
45226
  setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
45227
+ setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
45198
45228
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
45199
45229
  sprintUpdate?: Maybe<JiraSprintMutationPayload>;
45200
45230
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
@@ -45216,6 +45246,7 @@ export declare type JiraMutation = {
45216
45246
  updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
45217
45247
  updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
45218
45248
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
45249
+ updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
45219
45250
  updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
45220
45251
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45221
45252
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
@@ -45524,6 +45555,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
45524
45555
  export declare type JiraMutationSetEntityIsFavouriteArgs = {
45525
45556
  input: JiraSetIsFavouriteInput;
45526
45557
  };
45558
+ export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
45559
+ id: Scalars['ID']['input'];
45560
+ };
45527
45561
  export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
45528
45562
  cloudId: Scalars['ID']['input'];
45529
45563
  id: Scalars['ID']['input'];
@@ -45592,6 +45626,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
45592
45626
  cloudId: Scalars['ID']['input'];
45593
45627
  input: JiraIssueHierarchyConfigurationMutationInput;
45594
45628
  };
45629
+ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
45630
+ isHierarchyEnabled: Scalars['Boolean']['input'];
45631
+ viewId: Scalars['ID']['input'];
45632
+ };
45595
45633
  export declare type JiraMutationUpdateIssueTypeFieldArgs = {
45596
45634
  input: JiraUpdateIssueTypeFieldInput;
45597
45635
  };
@@ -47458,7 +47496,6 @@ export declare type JiraQuery = {
47458
47496
  epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
47459
47497
  favouriteFilters?: Maybe<JiraFilterConnection>;
47460
47498
  favourites?: Maybe<JiraFavouriteConnection>;
47461
- fetchBoardCreationFilters?: Maybe<JiraIssueFieldConnection>;
47462
47499
  fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
47463
47500
  fields?: Maybe<JiraJqlFieldConnectionResult>;
47464
47501
  filter?: Maybe<JiraFilter>;
@@ -47512,6 +47549,7 @@ export declare type JiraQuery = {
47512
47549
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
47513
47550
  issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
47514
47551
  issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
47552
+ jiraBoard?: Maybe<JiraBoardResult>;
47515
47553
  jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
47516
47554
  jiraCalendar?: Maybe<JiraCalendar>;
47517
47555
  jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
@@ -47748,14 +47786,6 @@ export declare type JiraQueryFavouritesArgs = {
47748
47786
  first?: InputMaybe<Scalars['Int']['input']>;
47749
47787
  last?: InputMaybe<Scalars['Int']['input']>;
47750
47788
  };
47751
- export declare type JiraQueryFetchBoardCreationFiltersArgs = {
47752
- after?: InputMaybe<Scalars['String']['input']>;
47753
- before?: InputMaybe<Scalars['String']['input']>;
47754
- cloudId: Scalars['ID']['input'];
47755
- first?: InputMaybe<Scalars['Int']['input']>;
47756
- last?: InputMaybe<Scalars['Int']['input']>;
47757
- projectId: Scalars['String']['input'];
47758
- };
47759
47789
  export declare type JiraQueryFieldSetsByIdArgs = {
47760
47790
  after?: InputMaybe<Scalars['String']['input']>;
47761
47791
  before?: InputMaybe<Scalars['String']['input']>;
@@ -48008,6 +48038,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
48008
48038
  cloudId: Scalars['ID']['input'];
48009
48039
  keys: Array<Scalars['String']['input']>;
48010
48040
  };
48041
+ export declare type JiraQueryJiraBoardArgs = {
48042
+ id: Scalars['ID']['input'];
48043
+ };
48011
48044
  export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
48012
48045
  issueIds: Array<Scalars['ID']['input']>;
48013
48046
  transitionId: Scalars['Int']['input'];
@@ -50191,6 +50224,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
50191
50224
  favouriteValue?: Maybe<JiraFavouriteValue>;
50192
50225
  success: Scalars['Boolean']['output'];
50193
50226
  };
50227
+ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
50228
+ __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
50229
+ board?: Maybe<JiraBoard>;
50230
+ errors?: Maybe<Array<MutationError>>;
50231
+ success: Scalars['Boolean']['output'];
50232
+ };
50194
50233
  export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
50195
50234
  deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
50196
50235
  projectId: Scalars['ID']['input'];
@@ -51795,7 +51834,6 @@ export declare type JiraUserPreferences = {
51795
51834
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
51796
51835
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
51797
51836
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
51798
- issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
51799
51837
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
51800
51838
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
51801
51839
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
@@ -51807,9 +51845,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
51807
51845
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
51808
51846
  projectKey: Scalars['String']['input'];
51809
51847
  };
51810
- export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
51811
- projectKey: Scalars['String']['input'];
51812
- };
51813
51848
  export declare type JiraUserPreferencesMutation = {
51814
51849
  __typename?: 'JiraUserPreferencesMutation';
51815
51850
  setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
@@ -53754,10 +53789,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
53754
53789
  __typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
53755
53790
  cloudId: Scalars['String']['output'];
53756
53791
  createdTimestamp: Scalars['String']['output'];
53792
+ creator?: Maybe<User>;
53757
53793
  creatorAccountId: Scalars['String']['output'];
53758
53794
  description?: Maybe<Scalars['String']['output']>;
53759
53795
  keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
53760
53796
  lastModifiedTimestamp: Scalars['String']['output'];
53797
+ lastModifier?: Maybe<User>;
53761
53798
  lastModifierAccountId: Scalars['String']['output'];
53762
53799
  orgId: Scalars['String']['output'];
53763
53800
  title: Scalars['String']['output'];
@@ -54161,26 +54198,6 @@ export declare type LogQueryInput = {
54161
54198
  lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
54162
54199
  msg?: InputMaybe<Scalars['String']['input']>;
54163
54200
  };
54164
- export declare type LpBunchballBadge = {
54165
- __typename?: 'LpBunchballBadge';
54166
- contentfulCourseId?: Maybe<Scalars['String']['output']>;
54167
- dateEarned?: Maybe<Scalars['String']['output']>;
54168
- fullUrl?: Maybe<Scalars['String']['output']>;
54169
- missionId?: Maybe<Scalars['Int']['output']>;
54170
- thumbUrl?: Maybe<Scalars['String']['output']>;
54171
- };
54172
- export declare type LpBunchballBadgeConnection = {
54173
- __typename?: 'LpBunchballBadgeConnection';
54174
- edges?: Maybe<Array<LpBunchballBadgeEdge>>;
54175
- pageInfo?: Maybe<LpPageInfo>;
54176
- totalCount?: Maybe<Scalars['Int']['output']>;
54177
- };
54178
- export declare type LpBunchballBadgeEdge = {
54179
- __typename?: 'LpBunchballBadgeEdge';
54180
- cursor: Scalars['String']['output'];
54181
- node?: Maybe<LpBunchballBadge>;
54182
- };
54183
- export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
54184
54201
  export declare type LpCertSort = {
54185
54202
  sortDirection?: InputMaybe<SortDirection>;
54186
54203
  sortField?: InputMaybe<LpCertSortField>;
@@ -54275,17 +54292,10 @@ export declare enum LpCourseStatus {
54275
54292
  export declare type LpLearner = Node & {
54276
54293
  __typename?: 'LpLearner';
54277
54294
  atlassianId: Scalars['String']['output'];
54278
- bunchballBadges?: Maybe<LpBunchballBadgeResult>;
54279
54295
  certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
54280
54296
  courses?: Maybe<LpCourseProgressResult>;
54281
54297
  id: Scalars['ID']['output'];
54282
54298
  };
54283
- export declare type LpLearnerBunchballBadgesArgs = {
54284
- after?: InputMaybe<Scalars['String']['input']>;
54285
- before?: InputMaybe<Scalars['String']['input']>;
54286
- first?: InputMaybe<Scalars['Int']['input']>;
54287
- last?: InputMaybe<Scalars['Int']['input']>;
54288
- };
54289
54299
  export declare type LpLearnerCertmetricsCertificatesArgs = {
54290
54300
  after?: InputMaybe<Scalars['String']['input']>;
54291
54301
  before?: InputMaybe<Scalars['String']['input']>;
@@ -54672,7 +54682,9 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
54672
54682
  };
54673
54683
  export declare type MarketplaceConsoleConnectFrameworkAttributes = {
54674
54684
  __typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
54685
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54675
54686
  descriptorId: Scalars['ID']['output'];
54687
+ descriptorUrl: Scalars['String']['output'];
54676
54688
  scopes: Array<Scalars['String']['output']>;
54677
54689
  };
54678
54690
  export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
@@ -54835,6 +54847,7 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
54835
54847
  __typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
54836
54848
  appId: Scalars['ID']['output'];
54837
54849
  envId: Scalars['ID']['output'];
54850
+ scopes: Array<Scalars['String']['output']>;
54838
54851
  versionId: Scalars['String']['output'];
54839
54852
  };
54840
54853
  export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
@@ -54842,7 +54855,14 @@ export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
54842
54855
  envId: Scalars['String']['input'];
54843
54856
  versionId: Scalars['String']['input'];
54844
54857
  };
54845
- export declare type MarketplaceConsoleFrameworkAttributes = MarketplaceConsoleConnectFrameworkAttributes | MarketplaceConsoleExternalFrameworkAttributes | MarketplaceConsoleForgeFrameworkAttributes | MarketplaceConsolePluginsFrameworkAttributes | MarketplaceConsoleWorkflowFrameworkAttributes;
54858
+ export declare type MarketplaceConsoleFrameworkAttributes = {
54859
+ __typename?: 'MarketplaceConsoleFrameworkAttributes';
54860
+ connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
54861
+ external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
54862
+ forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
54863
+ plugins?: Maybe<MarketplaceConsolePluginsFrameworkAttributes>;
54864
+ workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
54865
+ };
54846
54866
  export declare type MarketplaceConsoleFrameworkAttributesInput = {
54847
54867
  connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
54848
54868
  external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
@@ -54932,11 +54952,12 @@ export declare type MarketplaceConsoleMutationApi = {
54932
54952
  __typename?: 'MarketplaceConsoleMutationApi';
54933
54953
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
54934
54954
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
54955
+ createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
54935
54956
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54936
54957
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54937
54958
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
54938
54959
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
54939
- validateArtifactUrl?: Maybe<MarketplaceConsoleRemoteFetchedSoftwareArtifact>;
54960
+ validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
54940
54961
  };
54941
54962
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
54942
54963
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -54945,6 +54966,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
54945
54966
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
54946
54967
  appSoftwareId: Scalars['String']['input'];
54947
54968
  };
54969
+ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
54970
+ product: MarketplaceConsoleEditionsInput;
54971
+ };
54948
54972
  export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
54949
54973
  appKey: Scalars['ID']['input'];
54950
54974
  version: MarketplaceConsoleAppVersionCreateRequestInput;
@@ -55019,9 +55043,16 @@ export declare enum MarketplaceConsolePaymentModel {
55019
55043
  PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
55020
55044
  PaidViaVendor = "PAID_VIA_VENDOR"
55021
55045
  }
55046
+ export declare enum MarketplaceConsolePluginFrameworkType {
55047
+ P1 = "P1",
55048
+ P2 = "P2"
55049
+ }
55022
55050
  export declare type MarketplaceConsolePluginsFrameworkAttributes = {
55023
55051
  __typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
55052
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55024
55053
  artifactId: Scalars['ID']['output'];
55054
+ descriptorId?: Maybe<Scalars['String']['output']>;
55055
+ pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
55025
55056
  };
55026
55057
  export declare type MarketplaceConsolePluginsFrameworkAttributesInput = {
55027
55058
  artifactId: Scalars['String']['input'];
@@ -55198,8 +55229,8 @@ export declare type MarketplaceConsoleRemoteArtifactLinks = {
55198
55229
  remote?: Maybe<MarketplaceConsoleLink>;
55199
55230
  self: MarketplaceConsoleLink;
55200
55231
  };
55201
- export declare type MarketplaceConsoleRemoteFetchedSoftwareArtifact = {
55202
- __typename?: 'MarketplaceConsoleRemoteFetchedSoftwareArtifact';
55232
+ export declare type MarketplaceConsoleSoftwareArtifact = {
55233
+ __typename?: 'MarketplaceConsoleSoftwareArtifact';
55203
55234
  fileInfo: MarketplaceConsoleArtifactFileInfo;
55204
55235
  links: MarketplaceConsoleRemoteArtifactLinks;
55205
55236
  };
@@ -55241,6 +55272,7 @@ export declare type MarketplaceConsoleVendorLinks = {
55241
55272
  };
55242
55273
  export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
55243
55274
  __typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
55275
+ artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
55244
55276
  artifactId: Scalars['ID']['output'];
55245
55277
  };
55246
55278
  export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
@@ -55515,6 +55547,28 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
55515
55547
  Archived = "ARCHIVED",
55516
55548
  Inactive = "INACTIVE"
55517
55549
  }
55550
+ export declare type MarketplaceStoreEdition = {
55551
+ __typename?: 'MarketplaceStoreEdition';
55552
+ features: Array<MarketplaceStoreEditionFeature>;
55553
+ id: Scalars['ID']['output'];
55554
+ isDefault: Scalars['Boolean']['output'];
55555
+ pricingPlan: MarketplaceStorePricingPlan;
55556
+ type: MarketplaceStoreEditionType;
55557
+ };
55558
+ export declare type MarketplaceStoreEditionFeature = {
55559
+ __typename?: 'MarketplaceStoreEditionFeature';
55560
+ description: Scalars['String']['output'];
55561
+ id: Scalars['ID']['output'];
55562
+ name: Scalars['String']['output'];
55563
+ position: Scalars['Int']['output'];
55564
+ };
55565
+ export declare enum MarketplaceStoreEditionType {
55566
+ Advanced = "ADVANCED",
55567
+ Standard = "STANDARD"
55568
+ }
55569
+ export declare type MarketplaceStoreEditionsInput = {
55570
+ appId?: InputMaybe<Scalars['String']['input']>;
55571
+ };
55518
55572
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
55519
55573
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
55520
55574
  description: Scalars['String']['output'];
@@ -55712,11 +55766,43 @@ export declare type MarketplaceStorePartnerSupportHoliday = {
55712
55766
  repeatAnnually: Scalars['Boolean']['output'];
55713
55767
  title: Scalars['String']['output'];
55714
55768
  };
55769
+ export declare enum MarketplaceStorePricingCurrency {
55770
+ Jpy = "JPY",
55771
+ Usd = "USD"
55772
+ }
55773
+ export declare type MarketplaceStorePricingPlan = {
55774
+ __typename?: 'MarketplaceStorePricingPlan';
55775
+ annualPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
55776
+ currency: MarketplaceStorePricingCurrency;
55777
+ monthlyPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
55778
+ };
55779
+ export declare type MarketplaceStorePricingPlanItem = {
55780
+ __typename?: 'MarketplaceStorePricingPlanItem';
55781
+ tieredPricing: Array<MarketplaceStorePricingTier>;
55782
+ };
55783
+ export declare type MarketplaceStorePricingTier = {
55784
+ ceiling: Scalars['Float']['output'];
55785
+ floor: Scalars['Float']['output'];
55786
+ };
55787
+ export declare type MarketplaceStorePricingTierAnnual = MarketplaceStorePricingTier & {
55788
+ __typename?: 'MarketplaceStorePricingTierAnnual';
55789
+ ceiling: Scalars['Float']['output'];
55790
+ flatAmount?: Maybe<Scalars['Float']['output']>;
55791
+ floor: Scalars['Float']['output'];
55792
+ };
55793
+ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricingTier & {
55794
+ __typename?: 'MarketplaceStorePricingTierMonthly';
55795
+ ceiling: Scalars['Float']['output'];
55796
+ flatAmount?: Maybe<Scalars['Float']['output']>;
55797
+ floor: Scalars['Float']['output'];
55798
+ unitAmount?: Maybe<Scalars['Float']['output']>;
55799
+ };
55715
55800
  export declare type MarketplaceStoreQueryApi = {
55716
55801
  __typename?: 'MarketplaceStoreQueryApi';
55717
55802
  category: MarketplaceStoreCategoryResponse;
55718
55803
  collection: MarketplaceStoreCollectionResponse;
55719
55804
  currentUser: MarketplaceStoreCurrentUserResponse;
55805
+ editions: Array<MarketplaceStoreEdition>;
55720
55806
  homePage: MarketplaceStoreHomePageResponse;
55721
55807
  installAppStatus: MarketplaceStoreInstallAppResponse;
55722
55808
  partner: MarketplaceStorePartnerResponse;
@@ -55727,6 +55813,9 @@ export declare type MarketplaceStoreQueryApiCategoryArgs = {
55727
55813
  export declare type MarketplaceStoreQueryApiCollectionArgs = {
55728
55814
  slug: Scalars['String']['input'];
55729
55815
  };
55816
+ export declare type MarketplaceStoreQueryApiEditionsArgs = {
55817
+ product: MarketplaceStoreEditionsInput;
55818
+ };
55730
55819
  export declare type MarketplaceStoreQueryApiHomePageArgs = {
55731
55820
  productId?: InputMaybe<Scalars['String']['input']>;
55732
55821
  };
@@ -64538,6 +64627,17 @@ export declare type ShepherdAlert = Node & {
64538
64627
  updatedOn?: Maybe<Scalars['DateTime']['output']>;
64539
64628
  workspaceId?: Maybe<Scalars['ID']['output']>;
64540
64629
  };
64630
+ export declare enum ShepherdAlertAction {
64631
+ AddLabel = "ADD_LABEL",
64632
+ Redact = "REDACT",
64633
+ Restrict = "RESTRICT",
64634
+ UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
64635
+ }
64636
+ export declare type ShepherdAlertAuthorizedActions = {
64637
+ __typename?: 'ShepherdAlertAuthorizedActions';
64638
+ actions?: Maybe<Array<ShepherdAlertAction>>;
64639
+ };
64640
+ export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
64541
64641
  export declare enum ShepherdAlertDetectionCategory {
64542
64642
  Data = "DATA",
64543
64643
  Threat = "THREAT"
@@ -64554,9 +64654,14 @@ export declare type ShepherdAlertMetaData = {
64554
64654
  };
64555
64655
  export declare type ShepherdAlertQueries = {
64556
64656
  __typename?: 'ShepherdAlertQueries';
64657
+ authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
64557
64658
  byAri?: Maybe<ShepherdAlertResult>;
64558
64659
  byWorkspace?: Maybe<ShepherdAlertsResult>;
64559
64660
  };
64661
+ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
64662
+ id: Scalars['ID']['input'];
64663
+ resource: Scalars['ID']['input'];
64664
+ };
64560
64665
  export declare type ShepherdAlertQueriesByAriArgs = {
64561
64666
  id: Scalars['ID']['input'];
64562
64667
  };
@@ -67620,7 +67725,6 @@ export declare type TrelloBoard = Node & {
67620
67725
  members?: Maybe<TrelloBoardMembershipsConnection>;
67621
67726
  name: Scalars['String']['output'];
67622
67727
  objectId: Scalars['ID']['output'];
67623
- popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
67624
67728
  powerUpData?: Maybe<TrelloPowerUpDataConnection>;
67625
67729
  powerUps?: Maybe<TrelloBoardPowerUpConnection>;
67626
67730
  powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
@@ -67824,11 +67928,14 @@ export declare type TrelloBoardUpdated = {
67824
67928
  closed?: Maybe<Scalars['Boolean']['output']>;
67825
67929
  description?: Maybe<TrelloDescription>;
67826
67930
  id?: Maybe<Scalars['ID']['output']>;
67931
+ labels?: Maybe<Array<TrelloLabel>>;
67827
67932
  lists?: Maybe<TrelloListUpdatedConnection>;
67933
+ members?: Maybe<Array<TrelloMember>>;
67828
67934
  name?: Maybe<Scalars['String']['output']>;
67829
67935
  objectId?: Maybe<Scalars['ID']['output']>;
67830
67936
  prefs?: Maybe<TrelloBoardPrefs>;
67831
67937
  premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
67938
+ url?: Maybe<Scalars['URL']['output']>;
67832
67939
  };
67833
67940
  export declare type TrelloBoardViewer = {
67834
67941
  __typename?: 'TrelloBoardViewer';
@@ -68425,49 +68532,50 @@ export declare type TrelloMutationApiWatchCardArgs = {
68425
68532
  };
68426
68533
  export declare type TrelloPlanner = {
68427
68534
  __typename?: 'TrelloPlanner';
68428
- accounts?: Maybe<TrelloPlannerAccountConnection>;
68535
+ accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
68429
68536
  };
68430
68537
  export declare type TrelloPlannerAccountsArgs = {
68431
68538
  after?: InputMaybe<Scalars['String']['input']>;
68432
68539
  first?: InputMaybe<Scalars['Int']['input']>;
68433
68540
  };
68434
- export declare type TrelloPlannerAccount = Node & {
68435
- __typename?: 'TrelloPlannerAccount';
68541
+ export declare type TrelloPlannerCalendar = Node & {
68542
+ __typename?: 'TrelloPlannerCalendar';
68543
+ color: Scalars['String']['output'];
68544
+ enabled: Scalars['Boolean']['output'];
68545
+ id: Scalars['ID']['output'];
68546
+ memberId: Scalars['ID']['output'];
68547
+ objectId?: Maybe<Scalars['ID']['output']>;
68548
+ timezone: Scalars['String']['output'];
68549
+ title: Scalars['String']['output'];
68550
+ type: TrelloSupportedPlannerProviders;
68551
+ workspaceId: Scalars['ID']['output'];
68552
+ };
68553
+ export declare type TrelloPlannerCalendarAccount = Node & {
68554
+ __typename?: 'TrelloPlannerCalendarAccount';
68436
68555
  accountType: TrelloSupportedPlannerProviders;
68437
68556
  allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68557
+ displayName: Scalars['String']['output'];
68438
68558
  enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
68439
68559
  id: Scalars['ID']['output'];
68440
68560
  };
68441
- export declare type TrelloPlannerAccountAllCalendarsArgs = {
68561
+ export declare type TrelloPlannerCalendarAccountAllCalendarsArgs = {
68442
68562
  after?: InputMaybe<Scalars['String']['input']>;
68443
68563
  first?: InputMaybe<Scalars['Int']['input']>;
68444
68564
  };
68445
- export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
68565
+ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
68446
68566
  after?: InputMaybe<Scalars['String']['input']>;
68447
68567
  first?: InputMaybe<Scalars['Int']['input']>;
68448
68568
  };
68449
- export declare type TrelloPlannerAccountConnection = {
68450
- __typename?: 'TrelloPlannerAccountConnection';
68451
- edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
68452
- nodes?: Maybe<Array<TrelloPlannerAccount>>;
68569
+ export declare type TrelloPlannerCalendarAccountConnection = {
68570
+ __typename?: 'TrelloPlannerCalendarAccountConnection';
68571
+ edges?: Maybe<Array<TrelloPlannerCalendarAccountEdge>>;
68572
+ nodes?: Maybe<Array<TrelloPlannerCalendarAccount>>;
68453
68573
  pageInfo: PageInfo;
68454
68574
  };
68455
- export declare type TrelloPlannerAccountEdge = {
68456
- __typename?: 'TrelloPlannerAccountEdge';
68575
+ export declare type TrelloPlannerCalendarAccountEdge = {
68576
+ __typename?: 'TrelloPlannerCalendarAccountEdge';
68457
68577
  cursor?: Maybe<Scalars['String']['output']>;
68458
- node?: Maybe<TrelloPlannerAccount>;
68459
- };
68460
- export declare type TrelloPlannerCalendar = Node & {
68461
- __typename?: 'TrelloPlannerCalendar';
68462
- color: Scalars['String']['output'];
68463
- enabled: Scalars['Boolean']['output'];
68464
- id: Scalars['ID']['output'];
68465
- memberId: Scalars['ID']['output'];
68466
- objectId?: Maybe<Scalars['ID']['output']>;
68467
- timezone: Scalars['String']['output'];
68468
- title: Scalars['String']['output'];
68469
- type: TrelloSupportedPlannerProviders;
68470
- workspaceId: Scalars['ID']['output'];
68578
+ node?: Maybe<TrelloPlannerCalendarAccount>;
68471
68579
  };
68472
68580
  export declare type TrelloPlannerCalendarConnection = {
68473
68581
  __typename?: 'TrelloPlannerCalendarConnection';
@@ -68481,11 +68589,6 @@ export declare type TrelloPlannerCalendarEdge = {
68481
68589
  cursor?: Maybe<Scalars['String']['output']>;
68482
68590
  node?: Maybe<TrelloPlannerCalendar>;
68483
68591
  };
68484
- export declare type TrelloPopularLabelForColor = {
68485
- __typename?: 'TrelloPopularLabelForColor';
68486
- color?: Maybe<Scalars['String']['output']>;
68487
- labelName?: Maybe<Scalars['String']['output']>;
68488
- };
68489
68592
  export declare type TrelloPowerUp = {
68490
68593
  __typename?: 'TrelloPowerUp';
68491
68594
  author?: Maybe<Scalars['String']['output']>;
@@ -68547,7 +68650,7 @@ export declare type TrelloQueryApi = {
68547
68650
  enterprise?: Maybe<TrelloEnterprise>;
68548
68651
  list?: Maybe<TrelloList>;
68549
68652
  member?: Maybe<TrelloMember>;
68550
- plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
68653
+ plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
68551
68654
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
68552
68655
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
68553
68656
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;