@forge/cli-shared 8.8.0-next.4 → 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,23 @@
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
+
14
+ ## 8.8.0-next.5
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [2ac3cde]
19
+ - @forge/manifest@10.7.0-next.3
20
+
3
21
  ## 8.8.0-next.4
4
22
 
5
23
  ### Patch Changes
@@ -21885,6 +21885,7 @@ export declare type CplsContributor = {
21885
21885
  __typename?: 'CplsContributor';
21886
21886
  contributionAggregations: Array<CplsContributionAggregation>;
21887
21887
  contributorData?: Maybe<CplsContributorData>;
21888
+ contributorDataId?: Maybe<Scalars['ID']['output']>;
21888
21889
  contributorId: Scalars['ID']['output'];
21889
21890
  contributorWork: CplsContributorWorkConnection;
21890
21891
  id: Scalars['ID']['output'];
@@ -29659,6 +29660,8 @@ export declare type ExternalTest = Node & {
29659
29660
  export declare type ExternalTestExecution = Node & {
29660
29661
  __typename?: 'ExternalTestExecution';
29661
29662
  associatedWith?: Maybe<ExternalAssociationConnection>;
29663
+ container?: Maybe<ExternalEntity>;
29664
+ containerId?: Maybe<Scalars['ID']['output']>;
29662
29665
  createdAt?: Maybe<Scalars['String']['output']>;
29663
29666
  createdBy?: Maybe<ExternalUser>;
29664
29667
  displayName?: Maybe<Scalars['String']['output']>;
@@ -29688,6 +29691,8 @@ export declare type ExternalTestInfo = {
29688
29691
  export declare type ExternalTestPlan = Node & {
29689
29692
  __typename?: 'ExternalTestPlan';
29690
29693
  associatedWith?: Maybe<ExternalAssociationConnection>;
29694
+ container?: Maybe<ExternalEntity>;
29695
+ containerId?: Maybe<Scalars['ID']['output']>;
29691
29696
  createdAt?: Maybe<Scalars['String']['output']>;
29692
29697
  createdBy?: Maybe<ExternalUser>;
29693
29698
  displayName?: Maybe<Scalars['String']['output']>;
@@ -29708,6 +29713,8 @@ export declare type ExternalTestRun = Node & {
29708
29713
  __typename?: 'ExternalTestRun';
29709
29714
  assignee?: Maybe<ExternalUser>;
29710
29715
  associatedWith?: Maybe<ExternalAssociationConnection>;
29716
+ container?: Maybe<ExternalEntity>;
29717
+ containerId?: Maybe<Scalars['ID']['output']>;
29711
29718
  createdAt?: Maybe<Scalars['String']['output']>;
29712
29719
  createdBy?: Maybe<ExternalUser>;
29713
29720
  displayName?: Maybe<Scalars['String']['output']>;
@@ -62451,6 +62458,7 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
62451
62458
  errors?: Maybe<Array<MutationError>>;
62452
62459
  ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
62453
62460
  success: Scalars['Boolean']['output'];
62461
+ suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
62454
62462
  };
62455
62463
  export declare enum JiraApprovalDecision {
62456
62464
  Approved = "APPROVED",
@@ -65010,6 +65018,7 @@ export declare enum JiraColorSchemeThemeSetting {
65010
65018
  export declare type JiraComment = {
65011
65019
  author?: Maybe<User>;
65012
65020
  childComments?: Maybe<JiraCommentConnection>;
65021
+ commentAri?: Maybe<Scalars['ID']['output']>;
65013
65022
  commentId: Scalars['ID']['output'];
65014
65023
  created: Scalars['DateTime']['output'];
65015
65024
  isDeleted?: Maybe<Scalars['Boolean']['output']>;
@@ -66866,6 +66875,7 @@ export declare type JiraDuplicateJourneyConfigurationInput = {
66866
66875
  export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
66867
66876
  __typename?: 'JiraDuplicateWorkItemsSuggestion';
66868
66877
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
66878
+ appliedAction?: Maybe<JiraSuggestionAction>;
66869
66879
  entityId?: Maybe<Scalars['String']['output']>;
66870
66880
  id?: Maybe<Scalars['ID']['output']>;
66871
66881
  relatedEntityId?: Maybe<Scalars['String']['output']>;
@@ -71542,6 +71552,14 @@ export declare enum JiraJqlSyntaxError {
71542
71552
  UnfinishedString = "UNFINISHED_STRING",
71543
71553
  Unknown = "UNKNOWN"
71544
71554
  }
71555
+ export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
71556
+ __typename?: 'JiraJqlTownsquareProjectFieldValue';
71557
+ displayName: Scalars['String']['output'];
71558
+ encodedJqlTerm?: Maybe<Scalars['String']['output']>;
71559
+ isSelected?: Maybe<Scalars['Boolean']['output']>;
71560
+ jqlTerm: Scalars['String']['output'];
71561
+ project?: Maybe<JiraTownsquareProject>;
71562
+ };
71545
71563
  export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
71546
71564
  __typename?: 'JiraJqlUserFieldValue';
71547
71565
  displayName: Scalars['String']['output'];
@@ -74279,6 +74297,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
74279
74297
  __typename?: 'JiraPlatformComment';
74280
74298
  author?: Maybe<User>;
74281
74299
  childComments?: Maybe<JiraCommentConnection>;
74300
+ commentAri?: Maybe<Scalars['ID']['output']>;
74282
74301
  commentId: Scalars['ID']['output'];
74283
74302
  created: Scalars['DateTime']['output'];
74284
74303
  id: Scalars['ID']['output'];
@@ -78244,6 +78263,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
78244
78263
  author?: Maybe<User>;
78245
78264
  authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
78246
78265
  childComments?: Maybe<JiraCommentConnection>;
78266
+ commentAri?: Maybe<Scalars['ID']['output']>;
78247
78267
  commentId: Scalars['ID']['output'];
78248
78268
  created: Scalars['DateTime']['output'];
78249
78269
  eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
@@ -80101,6 +80121,7 @@ export declare type JiraSprintUpdateInput = {
80101
80121
  export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
80102
80122
  __typename?: 'JiraStaleWorkItemsSuggestion';
80103
80123
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
80124
+ appliedAction?: Maybe<JiraSuggestionAction>;
80104
80125
  entityId?: Maybe<Scalars['String']['output']>;
80105
80126
  id?: Maybe<Scalars['ID']['output']>;
80106
80127
  status?: Maybe<JiraSuggestionStatus>;
@@ -80479,6 +80500,7 @@ export declare type JiraSuggestedIssueInput = {
80479
80500
  };
80480
80501
  export declare type JiraSuggestion = {
80481
80502
  actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
80503
+ appliedAction?: Maybe<JiraSuggestionAction>;
80482
80504
  entityId?: Maybe<Scalars['String']['output']>;
80483
80505
  id?: Maybe<Scalars['ID']['output']>;
80484
80506
  status?: Maybe<JiraSuggestionStatus>;
@@ -88904,6 +88926,41 @@ export declare type MercuryCommentEdge = {
88904
88926
  cursor: Scalars['String']['output'];
88905
88927
  node?: Maybe<MercuryComment>;
88906
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
+ }
88907
88964
  export declare type MercuryCreateChangeProposalCommentInput = {
88908
88965
  cloudId?: InputMaybe<Scalars['ID']['input']>;
88909
88966
  content: Scalars['String']['input'];
@@ -88954,6 +89011,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
88954
89011
  errors?: Maybe<Array<MutationError>>;
88955
89012
  success: Scalars['Boolean']['output'];
88956
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
+ };
88957
89027
  export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
88958
89028
  __typename?: 'MercuryCreateFocusAreaChange';
88959
89029
  changeProposal?: Maybe<MercuryChangeProposal>;
@@ -89575,6 +89645,27 @@ export declare type MercuryFundingDeltaByStatus = {
89575
89645
  amountDelta?: Maybe<Scalars['BigDecimal']['output']>;
89576
89646
  status?: Maybe<MercuryChangeProposalStatus>;
89577
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
+ };
89578
89669
  export declare type MercuryGoalAggregatedStatusCount = {
89579
89670
  __typename?: 'MercuryGoalAggregatedStatusCount';
89580
89671
  krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
@@ -91937,6 +92028,7 @@ export declare type Mutation = {
91937
92028
  marketplaceConsole: MarketplaceConsoleMutationApi;
91938
92029
  marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
91939
92030
  mercury?: Maybe<MercuryMutationApi>;
92031
+ mercury_funds?: Maybe<MercuryFundsMutationApi>;
91940
92032
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
91941
92033
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
91942
92034
  migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
@@ -98160,6 +98252,7 @@ export declare type Query = {
98160
98252
  me: AuthenticationContext;
98161
98253
  mediaConfiguration?: Maybe<MediaConfiguration>;
98162
98254
  mercury?: Maybe<MercuryQueryApi>;
98255
+ mercury_funds?: Maybe<MercuryFundsQueryApi>;
98163
98256
  mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
98164
98257
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
98165
98258
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
@@ -98325,6 +98418,7 @@ export declare type Query = {
98325
98418
  stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
98326
98419
  stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
98327
98420
  stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
98421
+ stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
98328
98422
  stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
98329
98423
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
98330
98424
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
@@ -101508,6 +101602,11 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
101508
101602
  export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
101509
101603
  name: Scalars['String']['input'];
101510
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
+ };
101511
101610
  export declare type QueryStakeholderComms_GetIncidentArgs = {
101512
101611
  getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
101513
101612
  };
@@ -101948,6 +102047,7 @@ export declare enum RadarCustomFieldSyncStatus {
101948
102047
  }
101949
102048
  export declare type RadarDateFieldValue = {
101950
102049
  __typename?: 'RadarDateFieldValue';
102050
+ dateValue?: Maybe<Scalars['Date']['output']>;
101951
102051
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
101952
102052
  value?: Maybe<Scalars['DateTime']['output']>;
101953
102053
  };
@@ -125977,6 +126077,11 @@ export declare type StakeholderCommsGetIncidentInput = {
125977
126077
  incidentCode?: InputMaybe<Scalars['String']['input']>;
125978
126078
  incidentId?: InputMaybe<Scalars['String']['input']>;
125979
126079
  };
126080
+ export declare type StakeholderCommsGetStakeholderListResponse = {
126081
+ __typename?: 'StakeholderCommsGetStakeholderListResponse';
126082
+ aaidList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
126083
+ error?: Maybe<Scalars['String']['output']>;
126084
+ };
125980
126085
  export declare type StakeholderCommsGroups = {
125981
126086
  __typename?: 'StakeholderCommsGroups';
125982
126087
  avatar?: Maybe<Scalars['String']['output']>;
@@ -126517,6 +126622,10 @@ export declare type StakeholderCommsStakeholderResponse = {
126517
126622
  export declare enum StakeholderCommsStakeholderStatus {
126518
126623
  Active = "ACTIVE",
126519
126624
  Deleted = "DELETED",
126625
+ Invited = "INVITED",
126626
+ InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
126627
+ NotInvited = "NOT_INVITED",
126628
+ PendingIdentitySetup = "PENDING_IDENTITY_SETUP",
126520
126629
  Quarantined = "QUARANTINED"
126521
126630
  }
126522
126631
  export declare enum StakeholderCommsStakeholderType {