@forge/cli-shared 6.6.1-next.21 → 6.6.1-next.22

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,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.1-next.22
4
+
5
+ ### Patch Changes
6
+
7
+ - 503e60e: Add publish config
8
+ - Updated dependencies [503e60e]
9
+ - @forge/manifest@8.7.0-next.11
10
+ - @forge/i18n@0.0.4-next.0
11
+ - @forge/util@1.4.8-next.1
12
+
3
13
  ## 6.6.1-next.21
4
14
 
5
15
  ### Patch Changes
@@ -1685,26 +1685,6 @@ export declare type AppPrincipal = {
1685
1685
  __typename?: 'AppPrincipal';
1686
1686
  id?: Maybe<Scalars['ID']['output']>;
1687
1687
  };
1688
- export declare type AppRollout = {
1689
- __typename?: 'AppRollout';
1690
- appId: Scalars['ID']['output'];
1691
- cancelledByAccountId?: Maybe<Scalars['String']['output']>;
1692
- completedAt?: Maybe<Scalars['DateTime']['output']>;
1693
- completedUpgradeCount: Scalars['Int']['output'];
1694
- createdAt: Scalars['DateTime']['output'];
1695
- createdByAccountId: Scalars['String']['output'];
1696
- failedUpgradeCount: Scalars['Int']['output'];
1697
- fromVersionId: Scalars['ID']['output'];
1698
- id: Scalars['ID']['output'];
1699
- pendingUpgradeCount: Scalars['Int']['output'];
1700
- status: AppRolloutStatus;
1701
- toVersionId: Scalars['ID']['output'];
1702
- };
1703
- export declare enum AppRolloutStatus {
1704
- Cancelled = "CANCELLED",
1705
- Complete = "COMPLETE",
1706
- Running = "RUNNING"
1707
- }
1708
1688
  export declare type AppSecurityPoliciesPermission = {
1709
1689
  __typename?: 'AppSecurityPoliciesPermission';
1710
1690
  policies?: Maybe<Array<Scalars['String']['output']>>;
@@ -1944,6 +1924,27 @@ export declare type AppVersionExtensions = {
1944
1924
  __typename?: 'AppVersionExtensions';
1945
1925
  nodes?: Maybe<Array<Maybe<AppVersionExtension>>>;
1946
1926
  };
1927
+ export declare type AppVersionRollout = {
1928
+ __typename?: 'AppVersionRollout';
1929
+ appEnvironmentId: Scalars['ID']['output'];
1930
+ appId: Scalars['ID']['output'];
1931
+ cancelledByAccountId?: Maybe<Scalars['String']['output']>;
1932
+ completedAt?: Maybe<Scalars['DateTime']['output']>;
1933
+ completedUpgradeCount: Scalars['Int']['output'];
1934
+ createdAt: Scalars['DateTime']['output'];
1935
+ createdByAccountId: Scalars['String']['output'];
1936
+ failedUpgradeCount: Scalars['Int']['output'];
1937
+ id: Scalars['ID']['output'];
1938
+ pendingUpgradeCount: Scalars['Int']['output'];
1939
+ sourceVersionId: Scalars['ID']['output'];
1940
+ status: AppVersionRolloutStatus;
1941
+ targetVersionId: Scalars['ID']['output'];
1942
+ };
1943
+ export declare enum AppVersionRolloutStatus {
1944
+ Cancelled = "CANCELLED",
1945
+ Complete = "COMPLETE",
1946
+ Running = "RUNNING"
1947
+ }
1947
1948
  export declare type ApplyCompassScorecardToComponentPayload = Payload & {
1948
1949
  __typename?: 'ApplyCompassScorecardToComponentPayload';
1949
1950
  componentDetails?: Maybe<CompassComponent>;
@@ -3068,11 +3069,11 @@ export declare type CqlDisplayableType = {
3068
3069
  label?: Maybe<Scalars['String']['output']>;
3069
3070
  type?: Maybe<Scalars['String']['output']>;
3070
3071
  };
3071
- export declare type CancelAppRolloutInput = {
3072
+ export declare type CancelAppVersionRolloutInput = {
3072
3073
  id: Scalars['ID']['input'];
3073
3074
  };
3074
- export declare type CancelAppRolloutPayload = Payload & {
3075
- __typename?: 'CancelAppRolloutPayload';
3075
+ export declare type CancelAppVersionRolloutPayload = Payload & {
3076
+ __typename?: 'CancelAppVersionRolloutPayload';
3076
3077
  errors?: Maybe<Array<MutationError>>;
3077
3078
  success: Scalars['Boolean']['output'];
3078
3079
  };
@@ -8844,11 +8845,13 @@ export declare type ConfluenceBlogPost = {
8844
8845
  blogPostId: Scalars['ID']['output'];
8845
8846
  body?: Maybe<ConfluenceBodies>;
8846
8847
  comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
8848
+ createdAt?: Maybe<Scalars['String']['output']>;
8847
8849
  id: Scalars['ID']['output'];
8848
8850
  labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
8849
8851
  latestVersion?: Maybe<ConfluenceBlogPostVersion>;
8850
8852
  links?: Maybe<ConfluenceBlogPostLinks>;
8851
8853
  metadata?: Maybe<ConfluenceContentMetadata>;
8854
+ nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
8852
8855
  owner?: Maybe<ConfluenceUserInfo>;
8853
8856
  properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
8854
8857
  space?: Maybe<ConfluenceSpace>;
@@ -9048,6 +9051,11 @@ export declare type ConfluenceContentMetadata = {
9048
9051
  titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
9049
9052
  titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
9050
9053
  };
9054
+ export declare type ConfluenceContentNativeProperties = {
9055
+ __typename?: 'ConfluenceContentNativeProperties';
9056
+ current?: Maybe<ConfluenceCurrentContentNativeProperties>;
9057
+ draft?: Maybe<ConfluenceDraftContentNativeProperties>;
9058
+ };
9051
9059
  export declare enum ConfluenceContentRepresentation {
9052
9060
  AtlasDocFormat = "ATLAS_DOC_FORMAT",
9053
9061
  Editor = "EDITOR",
@@ -9060,6 +9068,12 @@ export declare enum ConfluenceContentRepresentation {
9060
9068
  View = "VIEW",
9061
9069
  Wiki = "WIKI"
9062
9070
  }
9071
+ export declare type ConfluenceContentState = {
9072
+ __typename?: 'ConfluenceContentState';
9073
+ color?: Maybe<Scalars['String']['output']>;
9074
+ id?: Maybe<Scalars['ID']['output']>;
9075
+ name?: Maybe<Scalars['String']['output']>;
9076
+ };
9063
9077
  export declare type ConfluenceContentTitleEmoji = {
9064
9078
  __typename?: 'ConfluenceContentTitleEmoji';
9065
9079
  id?: Maybe<Scalars['String']['output']>;
@@ -9185,6 +9199,10 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
9185
9199
  space?: Maybe<ConfluenceSpace>;
9186
9200
  success: Scalars['Boolean']['output'];
9187
9201
  };
9202
+ export declare type ConfluenceCurrentContentNativeProperties = {
9203
+ __typename?: 'ConfluenceCurrentContentNativeProperties';
9204
+ contentState?: Maybe<ConfluenceContentState>;
9205
+ };
9188
9206
  export declare type ConfluenceDatabase = {
9189
9207
  __typename?: 'ConfluenceDatabase';
9190
9208
  allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
@@ -9300,6 +9318,10 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
9300
9318
  errors?: Maybe<Array<MutationError>>;
9301
9319
  success: Scalars['Boolean']['output'];
9302
9320
  };
9321
+ export declare type ConfluenceDraftContentNativeProperties = {
9322
+ __typename?: 'ConfluenceDraftContentNativeProperties';
9323
+ contentState?: Maybe<ConfluenceContentState>;
9324
+ };
9303
9325
  export declare enum ConfluenceEdition {
9304
9326
  Free = "FREE",
9305
9327
  Premium = "PREMIUM",
@@ -15249,12 +15271,14 @@ export declare type ConfluencePage = {
15249
15271
  body?: Maybe<ConfluenceBodies>;
15250
15272
  commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
15251
15273
  comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
15274
+ createdAt?: Maybe<Scalars['String']['output']>;
15252
15275
  id: Scalars['ID']['output'];
15253
15276
  labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
15254
15277
  latestVersion?: Maybe<ConfluencePageVersion>;
15255
15278
  likesSummary?: Maybe<ConfluenceLikesSummary>;
15256
15279
  links?: Maybe<ConfluencePageLinks>;
15257
15280
  metadata?: Maybe<ConfluenceContentMetadata>;
15281
+ nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
15258
15282
  owner?: Maybe<ConfluenceUserInfo>;
15259
15283
  pageId: Scalars['ID']['output'];
15260
15284
  properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
@@ -18703,17 +18727,6 @@ export declare type CreateAppResponse = Payload & {
18703
18727
  errors?: Maybe<Array<MutationError>>;
18704
18728
  success: Scalars['Boolean']['output'];
18705
18729
  };
18706
- export declare type CreateAppRolloutInput = {
18707
- appId: Scalars['ID']['input'];
18708
- fromVersionId: Scalars['ID']['input'];
18709
- toVersionId: Scalars['ID']['input'];
18710
- };
18711
- export declare type CreateAppRolloutPayload = Payload & {
18712
- __typename?: 'CreateAppRolloutPayload';
18713
- appRollout?: Maybe<AppRollout>;
18714
- errors?: Maybe<Array<MutationError>>;
18715
- success: Scalars['Boolean']['output'];
18716
- };
18717
18730
  export declare type CreateAppTunnelResponse = Payload & {
18718
18731
  __typename?: 'CreateAppTunnelResponse';
18719
18732
  errors?: Maybe<Array<MutationError>>;
@@ -18727,6 +18740,18 @@ export declare type CreateAppTunnelsInput = {
18727
18740
  force?: InputMaybe<Scalars['Boolean']['input']>;
18728
18741
  tunnelDefinitions: TunnelDefinitionsInput;
18729
18742
  };
18743
+ export declare type CreateAppVersionRolloutInput = {
18744
+ appEnvironmentId: Scalars['ID']['input'];
18745
+ appId: Scalars['ID']['input'];
18746
+ sourceVersionId: Scalars['ID']['input'];
18747
+ targetVersionId: Scalars['ID']['input'];
18748
+ };
18749
+ export declare type CreateAppVersionRolloutPayload = Payload & {
18750
+ __typename?: 'CreateAppVersionRolloutPayload';
18751
+ appVersionRollout?: Maybe<AppVersionRollout>;
18752
+ errors?: Maybe<Array<MutationError>>;
18753
+ success: Scalars['Boolean']['output'];
18754
+ };
18730
18755
  export declare type CreateCardsOutput = {
18731
18756
  __typename?: 'CreateCardsOutput';
18732
18757
  boardScope?: Maybe<BoardScope>;
@@ -23419,9 +23444,9 @@ export declare type EcosystemMutation = {
23419
23444
  __typename?: 'EcosystemMutation';
23420
23445
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
23421
23446
  addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
23422
- cancelAppRollout?: Maybe<CancelAppRolloutPayload>;
23447
+ cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
23423
23448
  createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
23424
- createAppRollout?: Maybe<CreateAppRolloutPayload>;
23449
+ createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
23425
23450
  deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
23426
23451
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
23427
23452
  forgeAlerts?: Maybe<ForgeAlertsMutation>;
@@ -23443,14 +23468,14 @@ export declare type EcosystemMutationAddAppContributorArgs = {
23443
23468
  export declare type EcosystemMutationAddMultipleAppContributorArgs = {
23444
23469
  input: AddMultipleAppContributorInput;
23445
23470
  };
23446
- export declare type EcosystemMutationCancelAppRolloutArgs = {
23447
- input: CancelAppRolloutInput;
23471
+ export declare type EcosystemMutationCancelAppVersionRolloutArgs = {
23472
+ input: CancelAppVersionRolloutInput;
23448
23473
  };
23449
23474
  export declare type EcosystemMutationCreateAppEnvironmentArgs = {
23450
23475
  input: CreateAppEnvironmentInput;
23451
23476
  };
23452
- export declare type EcosystemMutationCreateAppRolloutArgs = {
23453
- input: CreateAppRolloutInput;
23477
+ export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
23478
+ input: CreateAppVersionRolloutInput;
23454
23479
  };
23455
23480
  export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
23456
23481
  input: DeleteAppEnvironmentInput;
@@ -23515,7 +23540,7 @@ export declare type EcosystemQuery = {
23515
23540
  appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
23516
23541
  appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
23517
23542
  appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
23518
- appRollout?: Maybe<AppRollout>;
23543
+ appVersionRollout?: Maybe<AppVersionRollout>;
23519
23544
  appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
23520
23545
  checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
23521
23546
  dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
@@ -23553,7 +23578,7 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
23553
23578
  export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
23554
23579
  appIds: Array<Scalars['ID']['input']>;
23555
23580
  };
23556
- export declare type EcosystemQueryAppRolloutArgs = {
23581
+ export declare type EcosystemQueryAppVersionRolloutArgs = {
23557
23582
  id: Scalars['ID']['input'];
23558
23583
  };
23559
23584
  export declare type EcosystemQueryAppsInstalledInContextsArgs = {
@@ -61991,6 +62016,28 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
61991
62016
  helpCenterId: Scalars['ID']['input'];
61992
62017
  helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
61993
62018
  };
62019
+ export declare type JiraProjectsSidebarMenu = {
62020
+ __typename?: 'JiraProjectsSidebarMenu';
62021
+ current?: Maybe<JiraProject>;
62022
+ displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
62023
+ favouriteLimit?: Maybe<Scalars['Int']['output']>;
62024
+ favourites?: Maybe<JiraProjectConnection>;
62025
+ id: Scalars['ID']['output'];
62026
+ recentLimit?: Maybe<Scalars['Int']['output']>;
62027
+ recents?: Maybe<JiraProjectConnection>;
62028
+ };
62029
+ export declare type JiraProjectsSidebarMenuFavouritesArgs = {
62030
+ after?: InputMaybe<Scalars['String']['input']>;
62031
+ before?: InputMaybe<Scalars['String']['input']>;
62032
+ first?: InputMaybe<Scalars['Int']['input']>;
62033
+ last?: InputMaybe<Scalars['Int']['input']>;
62034
+ };
62035
+ export declare type JiraProjectsSidebarMenuRecentsArgs = {
62036
+ after?: InputMaybe<Scalars['String']['input']>;
62037
+ before?: InputMaybe<Scalars['String']['input']>;
62038
+ first?: InputMaybe<Scalars['Int']['input']>;
62039
+ last?: InputMaybe<Scalars['Int']['input']>;
62040
+ };
61994
62041
  export declare type JiraPublishBoardViewConfigInput = {
61995
62042
  settings?: InputMaybe<JiraBoardViewSettings>;
61996
62043
  viewId: Scalars['ID']['input'];
@@ -65419,6 +65466,11 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
65419
65466
  typeKey?: Maybe<JiraNavigationItemTypeKey>;
65420
65467
  url?: Maybe<Scalars['String']['output']>;
65421
65468
  };
65469
+ export declare enum JiraSidebarMenuDisplayMode {
65470
+ MostRecentOnly = "MOST_RECENT_ONLY",
65471
+ Starred = "STARRED",
65472
+ StarredAndRecent = "STARRED_AND_RECENT"
65473
+ }
65422
65474
  export declare type JiraSimilarIssues = {
65423
65475
  __typename?: 'JiraSimilarIssues';
65424
65476
  featureEnabled: Scalars['Boolean']['output'];
@@ -66800,6 +66852,12 @@ export declare type JiraUpdateShortcutInput = {
66800
66852
  shortcutData: JiraShortcutDataInput;
66801
66853
  shortcutId: Scalars['ID']['input'];
66802
66854
  };
66855
+ export declare type JiraUpdateSidebarMenuDisplaySettingInput = {
66856
+ cloudId: Scalars['ID']['input'];
66857
+ displayMode?: InputMaybe<JiraSidebarMenuDisplayMode>;
66858
+ favouriteLimit?: InputMaybe<Scalars['Int']['input']>;
66859
+ recentLimit?: InputMaybe<Scalars['Int']['input']>;
66860
+ };
66803
66861
  export declare type JiraUpdateSingleGroupPickerFieldInput = {
66804
66862
  id: Scalars['ID']['input'];
66805
66863
  operation: JiraSingleGroupPickerFieldOperationInput;
@@ -72570,7 +72628,7 @@ export declare type MercuryChangeProposal = Node & {
72570
72628
  id: Scalars['ID']['output'];
72571
72629
  name: Scalars['String']['output'];
72572
72630
  status?: Maybe<MercuryChangeProposalStatus>;
72573
- statusTransitions?: Maybe<Array<Maybe<MercuryChangeProposalStatusTransition>>>;
72631
+ statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
72574
72632
  strategicEvent?: Maybe<MercuryStrategicEvent>;
72575
72633
  };
72576
72634
  export declare type MercuryChangeProposalConnection = {
@@ -72604,6 +72662,10 @@ export declare type MercuryChangeProposalStatusTransition = {
72604
72662
  id: Scalars['ID']['output'];
72605
72663
  to: MercuryChangeProposalStatus;
72606
72664
  };
72665
+ export declare type MercuryChangeProposalStatusTransitions = {
72666
+ __typename?: 'MercuryChangeProposalStatusTransitions';
72667
+ available: Array<MercuryChangeProposalStatusTransition>;
72668
+ };
72607
72669
  export declare type MercuryComment = Node & {
72608
72670
  __typename?: 'MercuryComment';
72609
72671
  ari: Scalars['String']['output'];
@@ -73729,7 +73791,7 @@ export declare type MercuryStrategicEvent = Node & {
73729
73791
  id: Scalars['ID']['output'];
73730
73792
  name: Scalars['String']['output'];
73731
73793
  status?: Maybe<MercuryStrategicEventStatus>;
73732
- statusTransitions?: Maybe<Array<Maybe<MercuryStrategicEventStatusTransition>>>;
73794
+ statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
73733
73795
  targetDate?: Maybe<Scalars['String']['output']>;
73734
73796
  };
73735
73797
  export declare type MercuryStrategicEventConnection = {
@@ -73765,6 +73827,10 @@ export declare type MercuryStrategicEventStatusTransition = {
73765
73827
  id: Scalars['ID']['output'];
73766
73828
  to: MercuryStrategicEventStatus;
73767
73829
  };
73830
+ export declare type MercuryStrategicEventStatusTransitions = {
73831
+ __typename?: 'MercuryStrategicEventStatusTransitions';
73832
+ available: Array<MercuryStrategicEventStatusTransition>;
73833
+ };
73768
73834
  export declare type MercuryStrategicEventsMutationApi = {
73769
73835
  __typename?: 'MercuryStrategicEventsMutationApi';
73770
73836
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
@@ -74592,6 +74658,7 @@ export declare type Mutation = {
74592
74658
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
74593
74659
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
74594
74660
  jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
74661
+ jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
74595
74662
  jsmChat?: Maybe<JsmChatMutation>;
74596
74663
  jsw?: Maybe<JswMutation>;
74597
74664
  knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
@@ -75884,6 +75951,9 @@ export declare type MutationJira_SetViewGroupByArgs = {
75884
75951
  export declare type MutationJira_UpdateProjectBackgroundArgs = {
75885
75952
  input: JiraUpdateBackgroundInput;
75886
75953
  };
75954
+ export declare type MutationJira_UpdateProjectsSidebarMenuArgs = {
75955
+ input: JiraUpdateSidebarMenuDisplaySettingInput;
75956
+ };
75887
75957
  export declare type MutationKnowledgeBaseArgs = {
75888
75958
  cloudId: Scalars['ID']['input'];
75889
75959
  };
@@ -79501,6 +79571,7 @@ export declare type Query = {
79501
79571
  jira_boardView?: Maybe<JiraBoardView>;
79502
79572
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
79503
79573
  jira_projectByIdOrKey?: Maybe<JiraProject>;
79574
+ jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
79504
79575
  jsmChat?: Maybe<JsmChatQuery>;
79505
79576
  jsw?: Maybe<JswQuery>;
79506
79577
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
@@ -81637,6 +81708,10 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
81637
81708
  cloudId: Scalars['ID']['input'];
81638
81709
  idOrKey: Scalars['String']['input'];
81639
81710
  };
81711
+ export declare type QueryJira_ProjectsSidebarMenuArgs = {
81712
+ cloudId: Scalars['ID']['input'];
81713
+ currentURL?: InputMaybe<Scalars['URL']['input']>;
81714
+ };
81640
81715
  export declare type QueryKnowledgeBaseArgs = {
81641
81716
  cloudId: Scalars['ID']['input'];
81642
81717
  };