@forge/cli-shared 8.8.0-next.5 → 8.8.0-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.0-next.6
4
+
5
+ ### Minor Changes
6
+
7
+ - 4947176: Adding self managed tunnel support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [ec8000d]
12
+ - @forge/manifest@10.7.0-next.4
13
+
3
14
  ## 8.8.0-next.5
4
15
 
5
16
  ### Patch Changes
@@ -65018,6 +65018,7 @@ export declare enum JiraColorSchemeThemeSetting {
65018
65018
  export declare type JiraComment = {
65019
65019
  author?: Maybe<User>;
65020
65020
  childComments?: Maybe<JiraCommentConnection>;
65021
+ commentAri?: Maybe<Scalars['ID']['output']>;
65021
65022
  commentId: Scalars['ID']['output'];
65022
65023
  created: Scalars['DateTime']['output'];
65023
65024
  isDeleted?: Maybe<Scalars['Boolean']['output']>;
@@ -74296,6 +74297,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
74296
74297
  __typename?: 'JiraPlatformComment';
74297
74298
  author?: Maybe<User>;
74298
74299
  childComments?: Maybe<JiraCommentConnection>;
74300
+ commentAri?: Maybe<Scalars['ID']['output']>;
74299
74301
  commentId: Scalars['ID']['output'];
74300
74302
  created: Scalars['DateTime']['output'];
74301
74303
  id: Scalars['ID']['output'];
@@ -78261,6 +78263,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
78261
78263
  author?: Maybe<User>;
78262
78264
  authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
78263
78265
  childComments?: Maybe<JiraCommentConnection>;
78266
+ commentAri?: Maybe<Scalars['ID']['output']>;
78264
78267
  commentId: Scalars['ID']['output'];
78265
78268
  created: Scalars['DateTime']['output'];
78266
78269
  eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
@@ -88923,6 +88926,41 @@ export declare type MercuryCommentEdge = {
88923
88926
  cursor: Scalars['String']['output'];
88924
88927
  node?: Maybe<MercuryComment>;
88925
88928
  };
88929
+ export declare type MercuryCostSubtype = Node & {
88930
+ __typename?: 'MercuryCostSubtype';
88931
+ costType: MercuryCostType;
88932
+ createdBy?: Maybe<User>;
88933
+ createdDate?: Maybe<Scalars['String']['output']>;
88934
+ description?: Maybe<Scalars['String']['output']>;
88935
+ id: Scalars['ID']['output'];
88936
+ key: Scalars['String']['output'];
88937
+ name: Scalars['String']['output'];
88938
+ updatedBy?: Maybe<User>;
88939
+ updatedDate?: Maybe<Scalars['String']['output']>;
88940
+ };
88941
+ export declare type MercuryCostSubtypeConnection = {
88942
+ __typename?: 'MercuryCostSubtypeConnection';
88943
+ edges?: Maybe<Array<MercuryCostSubtypeEdge>>;
88944
+ pageInfo: PageInfo;
88945
+ totalCount?: Maybe<Scalars['Int']['output']>;
88946
+ };
88947
+ export declare type MercuryCostSubtypeEdge = {
88948
+ __typename?: 'MercuryCostSubtypeEdge';
88949
+ cursor: Scalars['String']['output'];
88950
+ node?: Maybe<MercuryCostSubtype>;
88951
+ };
88952
+ export declare type MercuryCostSubtypeSort = {
88953
+ field: MercuryCostSubtypeSortField;
88954
+ order: SortOrder;
88955
+ };
88956
+ export declare enum MercuryCostSubtypeSortField {
88957
+ Key = "KEY",
88958
+ Name = "NAME"
88959
+ }
88960
+ export declare enum MercuryCostType {
88961
+ Labor = "LABOR",
88962
+ NonLabor = "NON_LABOR"
88963
+ }
88926
88964
  export declare type MercuryCreateChangeProposalCommentInput = {
88927
88965
  cloudId?: InputMaybe<Scalars['ID']['input']>;
88928
88966
  content: Scalars['String']['input'];
@@ -88973,6 +89011,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
88973
89011
  errors?: Maybe<Array<MutationError>>;
88974
89012
  success: Scalars['Boolean']['output'];
88975
89013
  };
89014
+ export declare type MercuryCreateCostSubtypeInput = {
89015
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
89016
+ costType: MercuryCostType;
89017
+ description: Scalars['String']['input'];
89018
+ key: Scalars['String']['input'];
89019
+ name: Scalars['String']['input'];
89020
+ };
89021
+ export declare type MercuryCreateCostSubtypePayload = Payload & {
89022
+ __typename?: 'MercuryCreateCostSubtypePayload';
89023
+ createdCostSubtype?: Maybe<MercuryCostSubtype>;
89024
+ errors?: Maybe<Array<MutationError>>;
89025
+ success: Scalars['Boolean']['output'];
89026
+ };
88976
89027
  export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
88977
89028
  __typename?: 'MercuryCreateFocusAreaChange';
88978
89029
  changeProposal?: Maybe<MercuryChangeProposal>;
@@ -89594,6 +89645,27 @@ export declare type MercuryFundingDeltaByStatus = {
89594
89645
  amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
89595
89646
  status?: Maybe<MercuryChangeProposalStatus>;
89596
89647
  };
89648
+ export declare type MercuryFundsMutationApi = {
89649
+ __typename?: 'MercuryFundsMutationApi';
89650
+ createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
89651
+ };
89652
+ export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
89653
+ input: MercuryCreateCostSubtypeInput;
89654
+ };
89655
+ export declare type MercuryFundsQueryApi = {
89656
+ __typename?: 'MercuryFundsQueryApi';
89657
+ costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
89658
+ costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
89659
+ };
89660
+ export declare type MercuryFundsQueryApiCostSubtypesArgs = {
89661
+ ids: Array<Scalars['ID']['input']>;
89662
+ };
89663
+ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
89664
+ after?: InputMaybe<Scalars['String']['input']>;
89665
+ cloudId: Scalars['ID']['input'];
89666
+ first?: InputMaybe<Scalars['Int']['input']>;
89667
+ sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
89668
+ };
89597
89669
  export declare type MercuryGoalAggregatedStatusCount = {
89598
89670
  __typename?: 'MercuryGoalAggregatedStatusCount';
89599
89671
  krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
@@ -91956,6 +92028,7 @@ export declare type Mutation = {
91956
92028
  marketplaceConsole: MarketplaceConsoleMutationApi;
91957
92029
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
91958
92030
  mercury?: Maybe<MercuryMutationApi>;
92031
+ mercury_funds?: Maybe<MercuryFundsMutationApi>;
91959
92032
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
91960
92033
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
91961
92034
  migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
@@ -98179,6 +98252,7 @@ export declare type Query = {
98179
98252
  me: AuthenticationContext;
98180
98253
  mediaConfiguration?: Maybe<MediaConfiguration>;
98181
98254
  mercury?: Maybe<MercuryQueryApi>;
98255
+ mercury_funds?: Maybe<MercuryFundsQueryApi>;
98182
98256
  mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
98183
98257
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
98184
98258
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
@@ -98344,6 +98418,7 @@ export declare type Query = {
98344
98418
  stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
98345
98419
  stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
98346
98420
  stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
98421
+ stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
98347
98422
  stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
98348
98423
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
98349
98424
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
@@ -101527,6 +101602,11 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
101527
101602
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
101528
101603
  name: Scalars['String']['input'];
101529
101604
  };
101605
+ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
101606
+ externalUserContextToken?: InputMaybe<Scalars['String']['input']>;
101607
+ groupIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
101608
+ teamIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
101609
+ };
101530
101610
  export declare type QueryStakeholderComms_GetIncidentArgs = {
101531
101611
  getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
101532
101612
  };
@@ -125997,6 +126077,11 @@ export declare type StakeholderCommsGetIncidentInput = {
125997
126077
  incidentCode?: InputMaybe<Scalars['String']['input']>;
125998
126078
  incidentId?: InputMaybe<Scalars['String']['input']>;
125999
126079
  };
126080
+ export declare type StakeholderCommsGetStakeholderListResponse = {
126081
+ __typename?: 'StakeholderCommsGetStakeholderListResponse';
126082
+ aaidList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
126083
+ error?: Maybe<Scalars['String']['output']>;
126084
+ };
126000
126085
  export declare type StakeholderCommsGroups = {
126001
126086
  __typename?: 'StakeholderCommsGroups';
126002
126087
  avatar?: Maybe<Scalars['String']['output']>;