@forge/cli-shared 3.24.1-next.0 → 3.25.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.25.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - a7da8c4: Clean up FF "Forge CLI: Enable categorise templates by product"
8
+
9
+ ## 3.25.0-next.1
10
+
11
+ ### Minor Changes
12
+
13
+ - ba85e65: Add support for FedRAMP environments
14
+
3
15
  ## 3.24.1-next.0
4
16
 
5
17
  ### Patch Changes
@@ -434,7 +434,7 @@ export declare type ActivityObject = {
434
434
  subProduct?: Maybe<Scalars['String']['output']>;
435
435
  type: Scalars['String']['output'];
436
436
  };
437
- export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
437
+ export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
438
438
  export declare enum ActivityObjectType {
439
439
  Blogpost = "BLOGPOST",
440
440
  Comment = "COMMENT",
@@ -776,6 +776,7 @@ export declare enum ApiContext {
776
776
  Devops = "DEVOPS"
777
777
  }
778
778
  export declare enum ApiGroup {
779
+ AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
779
780
  AppRecommendations = "APP_RECOMMENDATIONS",
780
781
  Caas = "CAAS",
781
782
  CloudAdmin = "CLOUD_ADMIN",
@@ -3062,6 +3063,32 @@ export declare type CompassAssistantAnswer = Node & {
3062
3063
  status?: Maybe<Scalars['String']['output']>;
3063
3064
  value?: Maybe<Scalars['String']['output']>;
3064
3065
  };
3066
+ export declare type CompassAttentionItem = Node & {
3067
+ __typename?: 'CompassAttentionItem';
3068
+ actionLabel: Scalars['String']['output'];
3069
+ actionUri: Scalars['String']['output'];
3070
+ description: Scalars['String']['output'];
3071
+ id: Scalars['ID']['output'];
3072
+ priority: Scalars['Int']['output'];
3073
+ type: Scalars['String']['output'];
3074
+ };
3075
+ export declare type CompassAttentionItemConnection = {
3076
+ __typename?: 'CompassAttentionItemConnection';
3077
+ edges?: Maybe<Array<Maybe<CompassAttentionItemEdge>>>;
3078
+ nodes?: Maybe<Array<CompassAttentionItem>>;
3079
+ pageInfo: PageInfo;
3080
+ };
3081
+ export declare type CompassAttentionItemEdge = {
3082
+ __typename?: 'CompassAttentionItemEdge';
3083
+ cursor: Scalars['String']['output'];
3084
+ node?: Maybe<CompassAttentionItem>;
3085
+ };
3086
+ export declare type CompassAttentionItemQuery = {
3087
+ after?: InputMaybe<Scalars['String']['input']>;
3088
+ cloudId: Scalars['ID']['input'];
3089
+ first?: InputMaybe<Scalars['Int']['input']>;
3090
+ };
3091
+ export declare type CompassAttentionItemQueryResult = CompassAttentionItemConnection | QueryError;
3065
3092
  export declare type CompassBuildEvent = CompassEvent & {
3066
3093
  __typename?: 'CompassBuildEvent';
3067
3094
  buildProperties: CompassBuildEventProperties;
@@ -3358,6 +3385,7 @@ export declare type CompassCatalogQueryApi = {
3358
3385
  __typename?: 'CompassCatalogQueryApi';
3359
3386
  applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
3360
3387
  assistantAnswer?: Maybe<CompassAssistantAnswer>;
3388
+ attentionItems?: Maybe<CompassAttentionItemQueryResult>;
3361
3389
  component?: Maybe<CompassComponentResult>;
3362
3390
  componentByExternalAlias?: Maybe<CompassComponentResult>;
3363
3391
  componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
@@ -3388,6 +3416,9 @@ export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
3388
3416
  export declare type CompassCatalogQueryApiAssistantAnswerArgs = {
3389
3417
  answerId: Scalars['ID']['input'];
3390
3418
  };
3419
+ export declare type CompassCatalogQueryApiAttentionItemsArgs = {
3420
+ query: CompassAttentionItemQuery;
3421
+ };
3391
3422
  export declare type CompassCatalogQueryApiComponentArgs = {
3392
3423
  id: Scalars['ID']['input'];
3393
3424
  };
@@ -7436,10 +7467,6 @@ export declare type CreatePolarisIdeaTemplatePayload = {
7436
7467
  node?: Maybe<PolarisIdeaTemplate>;
7437
7468
  success: Scalars['Boolean']['output'];
7438
7469
  };
7439
- export declare type CreatePolarisInsightFromPlayContributionInput = {
7440
- contribution: Scalars['ID']['input'];
7441
- subject?: InputMaybe<Scalars['ID']['input']>;
7442
- };
7443
7470
  export declare type CreatePolarisInsightInput = {
7444
7471
  cloudID: Scalars['String']['input'];
7445
7472
  data?: InputMaybe<Array<Scalars['JSON']['input']>>;
@@ -8786,6 +8813,9 @@ export declare type DeploymentSummary = Node & {
8786
8813
  updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
8787
8814
  url?: Maybe<Scalars['String']['output']>;
8788
8815
  };
8816
+ export declare type DeploymentSummaryIssueIdsArgs = {
8817
+ projectId?: InputMaybe<Scalars['ID']['input']>;
8818
+ };
8789
8819
  export declare type DetachCompassComponentDataManagerInput = {
8790
8820
  componentId: Scalars['ID']['input'];
8791
8821
  };
@@ -24637,7 +24667,9 @@ export declare type HelpCenterUpdateInput = {
24637
24667
  };
24638
24668
  export declare type HelpCenterUpdatePayload = Payload & {
24639
24669
  __typename?: 'HelpCenterUpdatePayload';
24670
+ banner?: Maybe<HelpCenterBanner>;
24640
24671
  errors?: Maybe<Array<MutationError>>;
24672
+ logo?: Maybe<HelpCenterLogo>;
24641
24673
  success: Scalars['Boolean']['output'];
24642
24674
  };
24643
24675
  export declare type HelpCenterUpdateTopicInput = {
@@ -28771,6 +28803,30 @@ export declare enum JiraGroupsContext {
28771
28803
  Group = "GROUP",
28772
28804
  User = "USER"
28773
28805
  }
28806
+ export declare type JiraHasMultipleSelectedValues = {
28807
+ selectedValues?: Maybe<JiraSelectableValueConnection>;
28808
+ };
28809
+ export declare type JiraHasMultipleSelectedValuesSelectedValuesArgs = {
28810
+ after?: InputMaybe<Scalars['String']['input']>;
28811
+ before?: InputMaybe<Scalars['String']['input']>;
28812
+ first?: InputMaybe<Scalars['Int']['input']>;
28813
+ last?: InputMaybe<Scalars['Int']['input']>;
28814
+ searchBy?: InputMaybe<Scalars['String']['input']>;
28815
+ };
28816
+ export declare type JiraHasSelectableValueOptions = {
28817
+ selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
28818
+ };
28819
+ export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
28820
+ after?: InputMaybe<Scalars['String']['input']>;
28821
+ before?: InputMaybe<Scalars['String']['input']>;
28822
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
28823
+ first?: InputMaybe<Scalars['Int']['input']>;
28824
+ last?: InputMaybe<Scalars['Int']['input']>;
28825
+ searchBy?: InputMaybe<Scalars['String']['input']>;
28826
+ };
28827
+ export declare type JiraHasSingleSelectedValue = {
28828
+ selectedValue?: Maybe<JiraSelectableValue>;
28829
+ };
28774
28830
  export declare type JiraHierarchyConfigError = {
28775
28831
  __typename?: 'JiraHierarchyConfigError';
28776
28832
  code?: Maybe<Scalars['String']['output']>;
@@ -30609,7 +30665,7 @@ export declare type JiraMultipleSelectClearableUserPickerFieldInput = {
30609
30665
  fieldId: Scalars['ID']['input'];
30610
30666
  users?: InputMaybe<Array<JiraUserInput>>;
30611
30667
  };
30612
- export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
30668
+ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
30613
30669
  __typename?: 'JiraMultipleSelectField';
30614
30670
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
30615
30671
  description?: Maybe<Scalars['String']['output']>;
@@ -30620,8 +30676,10 @@ export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldCon
30620
30676
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
30621
30677
  name: Scalars['String']['output'];
30622
30678
  searchUrl?: Maybe<Scalars['String']['output']>;
30679
+ selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
30623
30680
  selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
30624
30681
  selectedOptions?: Maybe<JiraOptionConnection>;
30682
+ selectedValues?: Maybe<JiraSelectableValueConnection>;
30625
30683
  type: Scalars['String']['output'];
30626
30684
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
30627
30685
  };
@@ -30633,12 +30691,27 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
30633
30691
  last?: InputMaybe<Scalars['Int']['input']>;
30634
30692
  searchBy?: InputMaybe<Scalars['String']['input']>;
30635
30693
  };
30694
+ export declare type JiraMultipleSelectFieldSelectableValueOptionsArgs = {
30695
+ after?: InputMaybe<Scalars['String']['input']>;
30696
+ before?: InputMaybe<Scalars['String']['input']>;
30697
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
30698
+ first?: InputMaybe<Scalars['Int']['input']>;
30699
+ last?: InputMaybe<Scalars['Int']['input']>;
30700
+ searchBy?: InputMaybe<Scalars['String']['input']>;
30701
+ };
30636
30702
  export declare type JiraMultipleSelectFieldSelectedOptionsArgs = {
30637
30703
  after?: InputMaybe<Scalars['String']['input']>;
30638
30704
  before?: InputMaybe<Scalars['String']['input']>;
30639
30705
  first?: InputMaybe<Scalars['Int']['input']>;
30640
30706
  last?: InputMaybe<Scalars['Int']['input']>;
30641
30707
  };
30708
+ export declare type JiraMultipleSelectFieldSelectedValuesArgs = {
30709
+ after?: InputMaybe<Scalars['String']['input']>;
30710
+ before?: InputMaybe<Scalars['String']['input']>;
30711
+ first?: InputMaybe<Scalars['Int']['input']>;
30712
+ last?: InputMaybe<Scalars['Int']['input']>;
30713
+ searchBy?: InputMaybe<Scalars['String']['input']>;
30714
+ };
30642
30715
  export declare type JiraMultipleSelectFieldInput = {
30643
30716
  fieldId: Scalars['ID']['input'];
30644
30717
  options: Array<JiraSelectedOptionInput>;
@@ -30761,9 +30834,13 @@ export declare type JiraMutation = {
30761
30834
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
30762
30835
  initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
30763
30836
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
30837
+ jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
30764
30838
  jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
30765
30839
  jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
30840
+ jwmDeleteCustomBackground?: Maybe<JiraWorkManagementDeleteCustomBackgroundPayload>;
30841
+ jwmRemoveActiveBackground?: Maybe<JiraWorkManagementRemoveActiveBackgroundPayload>;
30766
30842
  jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
30843
+ jwmUpdateCustomBackground?: Maybe<JiraWorkManagementUpdateCustomBackgroundPayload>;
30767
30844
  linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
30768
30845
  linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
30769
30846
  makeTransition?: Maybe<JiraIssueTransitionResponse>;
@@ -30925,15 +31002,27 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
30925
31002
  cloudId: Scalars['ID']['input'];
30926
31003
  input: JiraInitializeProjectNotificationPreferencesInput;
30927
31004
  };
31005
+ export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
31006
+ input: JiraWorkManagementCreateCustomBackgroundInput;
31007
+ };
30928
31008
  export declare type JiraMutationJwmCreateSavedViewArgs = {
30929
31009
  input: JiraWorkManagementCreateSavedViewInput;
30930
31010
  };
30931
31011
  export declare type JiraMutationJwmDeleteAttachmentArgs = {
30932
31012
  input: JiraWorkManagementDeleteAttachmentInput;
30933
31013
  };
31014
+ export declare type JiraMutationJwmDeleteCustomBackgroundArgs = {
31015
+ input: JiraWorkManagementDeleteCustomBackgroundInput;
31016
+ };
31017
+ export declare type JiraMutationJwmRemoveActiveBackgroundArgs = {
31018
+ input: JiraWorkManagementRemoveActiveBackgroundInput;
31019
+ };
30934
31020
  export declare type JiraMutationJwmUpdateActiveBackgroundArgs = {
30935
31021
  input: JiraWorkManagementUpdateBackgroundInput;
30936
31022
  };
31023
+ export declare type JiraMutationJwmUpdateCustomBackgroundArgs = {
31024
+ input: JiraWorkManagementUpdateCustomBackgroundInput;
31025
+ };
30937
31026
  export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
30938
31027
  input: JiraLinkIssueToVersionRelatedWorkInput;
30939
31028
  };
@@ -31490,11 +31579,15 @@ export declare type JiraOpsgenieTeam = Node & {
31490
31579
  name?: Maybe<Scalars['String']['output']>;
31491
31580
  url?: Maybe<Scalars['String']['output']>;
31492
31581
  };
31493
- export declare type JiraOption = Node & {
31582
+ export declare type JiraOption = JiraSelectableValue & Node & {
31494
31583
  __typename?: 'JiraOption';
31495
31584
  id: Scalars['ID']['output'];
31496
31585
  isDisabled?: Maybe<Scalars['Boolean']['output']>;
31497
31586
  optionId: Scalars['String']['output'];
31587
+ selectableGroupKey?: Maybe<Scalars['String']['output']>;
31588
+ selectableIconUrl?: Maybe<Scalars['URL']['output']>;
31589
+ selectableLabel?: Maybe<Scalars['String']['output']>;
31590
+ selectableUrl?: Maybe<Scalars['URL']['output']>;
31498
31591
  value?: Maybe<Scalars['String']['output']>;
31499
31592
  };
31500
31593
  export declare type JiraOptionConnection = {
@@ -32585,7 +32678,9 @@ export declare type JiraQuery = {
32585
32678
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
32586
32679
  jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
32587
32680
  jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
32681
+ jwmActiveBackgroundDetails?: Maybe<JiraWorkManagementActiveBackgroundDetailsResult>;
32588
32682
  jwmAddableViewTypes?: Maybe<JiraWorkManagementSavedViewTypeConnection>;
32683
+ jwmBackgroundUploadToken?: Maybe<JiraWorkManagementBackgroundUploadTokenResult>;
32589
32684
  jwmCustomBackgrounds?: Maybe<JiraWorkManagementCustomBackgroundConnection>;
32590
32685
  jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
32591
32686
  jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
@@ -32625,6 +32720,7 @@ export declare type JiraQuery = {
32625
32720
  shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
32626
32721
  sprintById?: Maybe<JiraSprint>;
32627
32722
  sprintSearch?: Maybe<JiraSprintConnection>;
32723
+ startDateField?: Maybe<JiraJqlField>;
32628
32724
  stringUserProperty?: Maybe<JiraEntityPropertyString>;
32629
32725
  systemFilters?: Maybe<JiraSystemFilterConnection>;
32630
32726
  timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
@@ -32966,11 +33062,18 @@ export declare type JiraQueryJsonUserPropertyArgs = {
32966
33062
  cloudId: Scalars['ID']['input'];
32967
33063
  propertyKey: Scalars['String']['input'];
32968
33064
  };
33065
+ export declare type JiraQueryJwmActiveBackgroundDetailsArgs = {
33066
+ entityId: Scalars['ID']['input'];
33067
+ };
32969
33068
  export declare type JiraQueryJwmAddableViewTypesArgs = {
32970
33069
  after?: InputMaybe<Scalars['String']['input']>;
32971
33070
  first?: InputMaybe<Scalars['Int']['input']>;
32972
33071
  projectId: Scalars['ID']['input'];
32973
33072
  };
33073
+ export declare type JiraQueryJwmBackgroundUploadTokenArgs = {
33074
+ cloudId: Scalars['ID']['input'];
33075
+ durationInSeconds: Scalars['Int']['input'];
33076
+ };
32974
33077
  export declare type JiraQueryJwmCustomBackgroundsArgs = {
32975
33078
  after?: InputMaybe<Scalars['String']['input']>;
32976
33079
  before?: InputMaybe<Scalars['String']['input']>;
@@ -33153,6 +33256,9 @@ export declare type JiraQuerySprintSearchArgs = {
33153
33256
  first?: InputMaybe<Scalars['Int']['input']>;
33154
33257
  last?: InputMaybe<Scalars['Int']['input']>;
33155
33258
  };
33259
+ export declare type JiraQueryStartDateFieldArgs = {
33260
+ cloudId: Scalars['ID']['input'];
33261
+ };
33156
33262
  export declare type JiraQueryStringUserPropertyArgs = {
33157
33263
  accountId?: InputMaybe<Scalars['ID']['input']>;
33158
33264
  cloudId: Scalars['ID']['input'];
@@ -33258,8 +33364,8 @@ export declare type JiraRankMutationPayload = Payload & {
33258
33364
  success: Scalars['Boolean']['output'];
33259
33365
  };
33260
33366
  export declare type JiraRankNavigationItemInput = {
33261
- afterId?: InputMaybe<Scalars['ID']['input']>;
33262
- beforeId?: InputMaybe<Scalars['ID']['input']>;
33367
+ afterItemId?: InputMaybe<Scalars['ID']['input']>;
33368
+ beforeItemId?: InputMaybe<Scalars['ID']['input']>;
33263
33369
  id: Scalars['ID']['input'];
33264
33370
  };
33265
33371
  export declare type JiraRankNavigationItemPayload = Payload & {
@@ -33829,6 +33935,23 @@ export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
33829
33935
  export declare type JiraSecurityLevelInput = {
33830
33936
  securityLevelId: Scalars['ID']['input'];
33831
33937
  };
33938
+ export declare type JiraSelectableValue = {
33939
+ id: Scalars['ID']['output'];
33940
+ selectableGroupKey?: Maybe<Scalars['String']['output']>;
33941
+ selectableIconUrl?: Maybe<Scalars['URL']['output']>;
33942
+ selectableLabel?: Maybe<Scalars['String']['output']>;
33943
+ selectableUrl?: Maybe<Scalars['URL']['output']>;
33944
+ };
33945
+ export declare type JiraSelectableValueConnection = {
33946
+ __typename?: 'JiraSelectableValueConnection';
33947
+ edges?: Maybe<Array<Maybe<JiraSelectableValueEdge>>>;
33948
+ pageInfo: PageInfo;
33949
+ };
33950
+ export declare type JiraSelectableValueEdge = {
33951
+ __typename?: 'JiraSelectableValueEdge';
33952
+ cursor: Scalars['String']['output'];
33953
+ node?: Maybe<JiraSelectableValue>;
33954
+ };
33832
33955
  export declare type JiraSelectedOptionInput = {
33833
33956
  id?: InputMaybe<Scalars['ID']['input']>;
33834
33957
  optionId?: InputMaybe<Scalars['ID']['input']>;
@@ -34222,6 +34345,15 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
34222
34345
  type: Scalars['String']['output'];
34223
34346
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
34224
34347
  };
34348
+ export declare type JiraServiceManagementMultiCheckboxesPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
34349
+ __typename?: 'JiraServiceManagementMultiCheckboxesPreviewField';
34350
+ description?: Maybe<Scalars['String']['output']>;
34351
+ displayed?: Maybe<Scalars['Boolean']['output']>;
34352
+ label?: Maybe<Scalars['String']['output']>;
34353
+ options?: Maybe<Array<Maybe<JiraServiceManagementPreviewOption>>>;
34354
+ required?: Maybe<Scalars['Boolean']['output']>;
34355
+ type?: Maybe<Scalars['String']['output']>;
34356
+ };
34225
34357
  export declare type JiraServiceManagementMultiSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
34226
34358
  __typename?: 'JiraServiceManagementMultiSelectPreviewField';
34227
34359
  description?: Maybe<Scalars['String']['output']>;
@@ -34356,6 +34488,14 @@ export declare type JiraServiceManagementPeopleFieldUsersArgs = {
34356
34488
  searchBy?: InputMaybe<Scalars['String']['input']>;
34357
34489
  suggested?: InputMaybe<Scalars['Boolean']['input']>;
34358
34490
  };
34491
+ export declare type JiraServiceManagementPeoplePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
34492
+ __typename?: 'JiraServiceManagementPeoplePreviewField';
34493
+ description?: Maybe<Scalars['String']['output']>;
34494
+ displayed?: Maybe<Scalars['Boolean']['output']>;
34495
+ label?: Maybe<Scalars['String']['output']>;
34496
+ required?: Maybe<Scalars['Boolean']['output']>;
34497
+ type?: Maybe<Scalars['String']['output']>;
34498
+ };
34359
34499
  export declare enum JiraServiceManagementPractice {
34360
34500
  ChangeManagement = "CHANGE_MANAGEMENT",
34361
34501
  DeveloperEscalation = "DEVELOPER_ESCALATION",
@@ -34470,7 +34610,7 @@ export declare type JiraServiceManagementRequestTypePractice = {
34470
34610
  __typename?: 'JiraServiceManagementRequestTypePractice';
34471
34611
  key?: Maybe<JiraServiceManagementPractice>;
34472
34612
  };
34473
- export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
34613
+ export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiCheckboxesPreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementPeoplePreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
34474
34614
  export declare type JiraServiceManagementRequestTypeTemplate = {
34475
34615
  __typename?: 'JiraServiceManagementRequestTypeTemplate';
34476
34616
  description?: Maybe<Scalars['String']['output']>;
@@ -34836,7 +34976,7 @@ export declare type JiraSingleLineTextFieldPayload = Payload & {
34836
34976
  field?: Maybe<JiraSingleLineTextField>;
34837
34977
  success: Scalars['Boolean']['output'];
34838
34978
  };
34839
- export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
34979
+ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
34840
34980
  __typename?: 'JiraSingleSelectField';
34841
34981
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
34842
34982
  description?: Maybe<Scalars['String']['output']>;
@@ -34848,6 +34988,8 @@ export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfi
34848
34988
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
34849
34989
  name: Scalars['String']['output'];
34850
34990
  searchUrl?: Maybe<Scalars['String']['output']>;
34991
+ selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
34992
+ selectedValue?: Maybe<JiraSelectableValue>;
34851
34993
  type: Scalars['String']['output'];
34852
34994
  userFieldConfig?: Maybe<JiraUserFieldConfig>;
34853
34995
  };
@@ -34859,6 +35001,14 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
34859
35001
  last?: InputMaybe<Scalars['Int']['input']>;
34860
35002
  searchBy?: InputMaybe<Scalars['String']['input']>;
34861
35003
  };
35004
+ export declare type JiraSingleSelectFieldSelectableValueOptionsArgs = {
35005
+ after?: InputMaybe<Scalars['String']['input']>;
35006
+ before?: InputMaybe<Scalars['String']['input']>;
35007
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
35008
+ first?: InputMaybe<Scalars['Int']['input']>;
35009
+ last?: InputMaybe<Scalars['Int']['input']>;
35010
+ searchBy?: InputMaybe<Scalars['String']['input']>;
35011
+ };
34862
35012
  export declare type JiraSingleSelectFieldInput = {
34863
35013
  fieldId: Scalars['ID']['input'];
34864
35014
  option: JiraSelectedOptionInput;
@@ -36518,6 +36668,7 @@ export declare type JiraWorkLogEdge = {
36518
36668
  cursor: Scalars['String']['output'];
36519
36669
  node?: Maybe<JiraWorklog>;
36520
36670
  };
36671
+ export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
36521
36672
  export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
36522
36673
  __typename?: 'JiraWorkManagementAttachmentBackground';
36523
36674
  attachment?: Maybe<JiraAttachment>;
@@ -36532,6 +36683,13 @@ export declare enum JiraWorkManagementBackgroundType {
36532
36683
  Custom = "CUSTOM",
36533
36684
  Gradient = "GRADIENT"
36534
36685
  }
36686
+ export declare type JiraWorkManagementBackgroundUploadToken = {
36687
+ __typename?: 'JiraWorkManagementBackgroundUploadToken';
36688
+ targetCollection?: Maybe<Scalars['String']['output']>;
36689
+ token?: Maybe<Scalars['String']['output']>;
36690
+ tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
36691
+ };
36692
+ export declare type JiraWorkManagementBackgroundUploadTokenResult = JiraWorkManagementBackgroundUploadToken | QueryError;
36535
36693
  export declare type JiraWorkManagementChildSummary = {
36536
36694
  __typename?: 'JiraWorkManagementChildSummary';
36537
36695
  hasChildren?: Maybe<Scalars['Boolean']['output']>;
@@ -36546,6 +36704,17 @@ export declare type JiraWorkManagementCommentSummary = {
36546
36704
  __typename?: 'JiraWorkManagementCommentSummary';
36547
36705
  totalCount?: Maybe<Scalars['Long']['output']>;
36548
36706
  };
36707
+ export declare type JiraWorkManagementCreateCustomBackgroundInput = {
36708
+ altText: Scalars['String']['input'];
36709
+ entityId: Scalars['ID']['input'];
36710
+ mediaApiFileId: Scalars['String']['input'];
36711
+ };
36712
+ export declare type JiraWorkManagementCreateCustomBackgroundPayload = Payload & {
36713
+ __typename?: 'JiraWorkManagementCreateCustomBackgroundPayload';
36714
+ background?: Maybe<JiraWorkManagementMediaBackground>;
36715
+ errors?: Maybe<Array<MutationError>>;
36716
+ success: Scalars['Boolean']['output'];
36717
+ };
36549
36718
  export declare type JiraWorkManagementCreateFilterInput = {
36550
36719
  contextId: Scalars['ID']['input'];
36551
36720
  jql: Scalars['String']['input'];
@@ -36599,6 +36768,8 @@ export declare type JiraWorkManagementCustomBackground = {
36599
36768
  id?: Maybe<Scalars['ID']['output']>;
36600
36769
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
36601
36770
  mediaReadToken?: Maybe<Scalars['String']['output']>;
36771
+ sourceIdentifier?: Maybe<Scalars['String']['output']>;
36772
+ sourceType?: Maybe<Scalars['String']['output']>;
36602
36773
  };
36603
36774
  export declare type JiraWorkManagementCustomBackgroundMediaReadTokenArgs = {
36604
36775
  durationInSeconds: Scalars['Int']['input'];
@@ -36623,6 +36794,16 @@ export declare type JiraWorkManagementDeleteAttachmentPayload = Payload & {
36623
36794
  errors?: Maybe<Array<MutationError>>;
36624
36795
  success: Scalars['Boolean']['output'];
36625
36796
  };
36797
+ export declare type JiraWorkManagementDeleteCustomBackgroundInput = {
36798
+ cloudId: Scalars['ID']['input'];
36799
+ customBackgroundId: Scalars['ID']['input'];
36800
+ };
36801
+ export declare type JiraWorkManagementDeleteCustomBackgroundPayload = Payload & {
36802
+ __typename?: 'JiraWorkManagementDeleteCustomBackgroundPayload';
36803
+ customBackgroundId?: Maybe<Scalars['ID']['output']>;
36804
+ errors?: Maybe<Array<MutationError>>;
36805
+ success: Scalars['Boolean']['output'];
36806
+ };
36626
36807
  export declare type JiraWorkManagementDeleteOverviewInput = {
36627
36808
  id: Scalars['ID']['input'];
36628
36809
  };
@@ -36829,6 +37010,14 @@ export declare type JiraWorkManagementRankInput = {
36829
37010
  after?: InputMaybe<Scalars['ID']['input']>;
36830
37011
  before?: InputMaybe<Scalars['ID']['input']>;
36831
37012
  };
37013
+ export declare type JiraWorkManagementRemoveActiveBackgroundInput = {
37014
+ entityId: Scalars['ID']['input'];
37015
+ };
37016
+ export declare type JiraWorkManagementRemoveActiveBackgroundPayload = Payload & {
37017
+ __typename?: 'JiraWorkManagementRemoveActiveBackgroundPayload';
37018
+ errors?: Maybe<Array<MutationError>>;
37019
+ success: Scalars['Boolean']['output'];
37020
+ };
36832
37021
  export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
36833
37022
  __typename?: 'JiraWorkManagementSavedView';
36834
37023
  id: Scalars['ID']['output'];
@@ -36864,6 +37053,17 @@ export declare type JiraWorkManagementUpdateBackgroundInput = {
36864
37053
  backgroundValue: Scalars['String']['input'];
36865
37054
  entityId: Scalars['ID']['input'];
36866
37055
  };
37056
+ export declare type JiraWorkManagementUpdateCustomBackgroundInput = {
37057
+ altText: Scalars['String']['input'];
37058
+ cloudId: Scalars['ID']['input'];
37059
+ customBackgroundId: Scalars['ID']['input'];
37060
+ };
37061
+ export declare type JiraWorkManagementUpdateCustomBackgroundPayload = Payload & {
37062
+ __typename?: 'JiraWorkManagementUpdateCustomBackgroundPayload';
37063
+ background?: Maybe<JiraWorkManagementCustomBackground>;
37064
+ errors?: Maybe<Array<MutationError>>;
37065
+ success: Scalars['Boolean']['output'];
37066
+ };
36867
37067
  export declare type JiraWorkManagementUpdateFilterInput = {
36868
37068
  id: Scalars['ID']['input'];
36869
37069
  name: Scalars['String']['input'];
@@ -37405,37 +37605,25 @@ export declare type MarketplaceStoreAlgoliaQuerySort = {
37405
37605
  __typename?: 'MarketplaceStoreAlgoliaQuerySort';
37406
37606
  criteria?: Maybe<Scalars['String']['output']>;
37407
37607
  };
37408
- export declare type MarketplaceStoreCategoriesHeroSection = {
37409
- __typename?: 'MarketplaceStoreCategoriesHeroSection';
37608
+ export declare type MarketplaceStoreCategoryHeroSection = {
37609
+ __typename?: 'MarketplaceStoreCategoryHeroSection';
37410
37610
  backgroundColor: Scalars['String']['output'];
37411
37611
  description: Scalars['String']['output'];
37412
- image: MarketplaceStoreCategoriesHeroSectionImage;
37612
+ image: MarketplaceStoreCategoryHeroSectionImage;
37413
37613
  title: Scalars['String']['output'];
37414
37614
  };
37415
- export declare type MarketplaceStoreCategoriesHeroSectionImage = {
37416
- __typename?: 'MarketplaceStoreCategoriesHeroSectionImage';
37615
+ export declare type MarketplaceStoreCategoryHeroSectionImage = {
37616
+ __typename?: 'MarketplaceStoreCategoryHeroSectionImage';
37417
37617
  altText: Scalars['String']['output'];
37418
37618
  url: Scalars['String']['output'];
37419
37619
  };
37420
- export declare type MarketplaceStoreCategoriesResponse = {
37421
- __typename?: 'MarketplaceStoreCategoriesResponse';
37620
+ export declare type MarketplaceStoreCategoryResponse = {
37621
+ __typename?: 'MarketplaceStoreCategoryResponse';
37422
37622
  algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
37423
- heroSection: MarketplaceStoreCategoriesHeroSection;
37623
+ heroSection: MarketplaceStoreCategoryHeroSection;
37424
37624
  id: Scalars['ID']['output'];
37425
37625
  name: Scalars['String']['output'];
37426
37626
  slug: Scalars['String']['output'];
37427
- useCases?: Maybe<MarketplaceStoreCategoriesUseCases>;
37428
- };
37429
- export declare type MarketplaceStoreCategoriesUseCases = {
37430
- __typename?: 'MarketplaceStoreCategoriesUseCases';
37431
- heading: Scalars['String']['output'];
37432
- values: Array<MarketplaceStoreCategoriesUseCasesValues>;
37433
- };
37434
- export declare type MarketplaceStoreCategoriesUseCasesValues = {
37435
- __typename?: 'MarketplaceStoreCategoriesUseCasesValues';
37436
- description: Scalars['String']['output'];
37437
- title: Scalars['String']['output'];
37438
- titleColor: Scalars['String']['output'];
37439
37627
  };
37440
37628
  export declare type MarketplaceStoreCollectionHeroSection = {
37441
37629
  __typename?: 'MarketplaceStoreCollectionHeroSection';
@@ -37473,7 +37661,6 @@ export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHo
37473
37661
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
37474
37662
  description: Scalars['String']['output'];
37475
37663
  id: Scalars['ID']['output'];
37476
- tagline: Scalars['String']['output'];
37477
37664
  title: Scalars['String']['output'];
37478
37665
  };
37479
37666
  export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStoreHomePageSection & {
@@ -37482,8 +37669,6 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
37482
37669
  description: Scalars['String']['output'];
37483
37670
  highlightVariation: MarketplaceStoreHomePageHighlightedSectionVariation;
37484
37671
  id: Scalars['ID']['output'];
37485
- tagline: Scalars['String']['output'];
37486
- tilesVariation: MarketplaceStoreTilesVariation;
37487
37672
  title: Scalars['String']['output'];
37488
37673
  };
37489
37674
  export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
@@ -37494,8 +37679,6 @@ export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHom
37494
37679
  algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
37495
37680
  description: Scalars['String']['output'];
37496
37681
  id: Scalars['ID']['output'];
37497
- tagline: Scalars['String']['output'];
37498
- tilesVariation: MarketplaceStoreTilesVariation;
37499
37682
  title: Scalars['String']['output'];
37500
37683
  };
37501
37684
  export declare type MarketplaceStoreHomePageResponse = {
@@ -37505,7 +37688,6 @@ export declare type MarketplaceStoreHomePageResponse = {
37505
37688
  export declare type MarketplaceStoreHomePageSection = {
37506
37689
  description: Scalars['String']['output'];
37507
37690
  id: Scalars['ID']['output'];
37508
- tagline: Scalars['String']['output'];
37509
37691
  title: Scalars['String']['output'];
37510
37692
  };
37511
37693
  export declare type MarketplaceStoreInstallAppInput = {
@@ -37542,12 +37724,12 @@ export declare type MarketplaceStoreMutationApiInstallAppArgs = {
37542
37724
  };
37543
37725
  export declare type MarketplaceStoreQueryApi = {
37544
37726
  __typename?: 'MarketplaceStoreQueryApi';
37545
- categories: MarketplaceStoreCategoriesResponse;
37727
+ category: MarketplaceStoreCategoryResponse;
37546
37728
  collection: MarketplaceStoreCollectionResponse;
37547
37729
  homePage: MarketplaceStoreHomePageResponse;
37548
37730
  installAppStatus: MarketplaceStoreInstallAppResponse;
37549
37731
  };
37550
- export declare type MarketplaceStoreQueryApiCategoriesArgs = {
37732
+ export declare type MarketplaceStoreQueryApiCategoryArgs = {
37551
37733
  slug: Scalars['String']['input'];
37552
37734
  };
37553
37735
  export declare type MarketplaceStoreQueryApiCollectionArgs = {
@@ -37556,10 +37738,6 @@ export declare type MarketplaceStoreQueryApiCollectionArgs = {
37556
37738
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
37557
37739
  id: Scalars['ID']['input'];
37558
37740
  };
37559
- export declare enum MarketplaceStoreTilesVariation {
37560
- Large = "LARGE",
37561
- Small = "SMALL"
37562
- }
37563
37741
  export declare type MarketplaceSupportedAtlassianProduct = {
37564
37742
  __typename?: 'MarketplaceSupportedAtlassianProduct';
37565
37743
  hostingOptions: Array<AtlassianProductHostingType>;
@@ -37692,7 +37870,6 @@ export declare type Mutation = {
37692
37870
  createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
37693
37871
  createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
37694
37872
  createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
37695
- createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
37696
37873
  createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
37697
37874
  createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
37698
37875
  createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
@@ -37921,9 +38098,6 @@ export declare type MutationCreatePolarisIdeaTemplateArgs = {
37921
38098
  export declare type MutationCreatePolarisInsightArgs = {
37922
38099
  input: CreatePolarisInsightInput;
37923
38100
  };
37924
- export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
37925
- input?: InputMaybe<CreatePolarisInsightFromPlayContributionInput>;
37926
- };
37927
38101
  export declare type MutationCreatePolarisPlayArgs = {
37928
38102
  input: CreatePolarisPlayInput;
37929
38103
  };
@@ -40663,6 +40837,7 @@ export declare type QueryContentFacetArgs = {
40663
40837
  first?: Scalars['Int']['input'];
40664
40838
  forContentType: Scalars['String']['input'];
40665
40839
  forFields: Array<Scalars['String']['input']>;
40840
+ withLocales?: Array<Scalars['String']['input']>;
40666
40841
  };
40667
40842
  export declare type QueryCustomerServiceArgs = {
40668
40843
  cloudId: Scalars['ID']['input'];
@@ -42088,6 +42263,7 @@ export declare enum Scope {
42088
42263
  ProjectVersionWrite = "PROJECT_VERSION_WRITE",
42089
42264
  ProjectWrite = "PROJECT_WRITE",
42090
42265
  ReadAccount = "READ_ACCOUNT",
42266
+ ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
42091
42267
  ReadCompassComponent = "READ_COMPASS_COMPONENT",
42092
42268
  ReadCompassEvent = "READ_COMPASS_EVENT",
42093
42269
  ReadCompassMetric = "READ_COMPASS_METRIC",
@@ -46263,7 +46439,7 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
46263
46439
  input: TrelloRemoveMemberInput;
46264
46440
  };
46265
46441
  export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
46266
- input: TrelloRemoveMemberInput;
46442
+ input: TrelloRemoveMemberFromWorkspaceInput;
46267
46443
  };
46268
46444
  export declare type TrelloMutationApiUnarchiveCardArgs = {
46269
46445
  input: TrelloUnarchiveCardInput;