@forge/cli-shared 3.4.0-next.3 → 3.4.0

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,25 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cfded19: Added "forge contributors remove" command
8
+ - e37918e: Implement support for client-side UI Kit tunneling
9
+ - ac570166: Added "forge contributors add" command line
10
+
11
+ ### Patch Changes
12
+
13
+ - 814c1f1: Add 'contributors list' command to forge-cli for MUAO EAP Participants
14
+ - Updated dependencies [269a493]
15
+ - @forge/manifest@4.5.2
16
+
17
+ ## 3.4.0-next.4
18
+
19
+ ### Minor Changes
20
+
21
+ - cfded19: Added "forge contributors remove" command
22
+
3
23
  ## 3.4.0-next.3
4
24
 
5
25
  ### Patch Changes
@@ -29,6 +29,7 @@ export declare type Scalars = {
29
29
  SoftwareBoardFeatureKey: any;
30
30
  SoftwareBoardPermission: any;
31
31
  SprintScopeChangeEventType: any;
32
+ TrelloShortLink: any;
32
33
  URL: any;
33
34
  };
34
35
  export declare enum AccountStatus {
@@ -226,10 +227,7 @@ export declare type ActivityFilterArgs = {
226
227
  products?: Maybe<Array<Scalars['String']>>;
227
228
  eventTypes?: Maybe<Array<Scalars['String']>>;
228
229
  objectTypes?: Maybe<Array<Scalars['String']>>;
229
- transitions?: Maybe<Array<TransitionFilter>>;
230
230
  containerIds?: Maybe<Array<Scalars['ID']>>;
231
- earliestStart?: Maybe<Scalars['DateTime']>;
232
- latestStart?: Maybe<Scalars['DateTime']>;
233
231
  };
234
232
  export declare type ActivityItemEdge = {
235
233
  __typename?: 'ActivityItemEdge';
@@ -8135,7 +8133,7 @@ export declare type JiraAddIssuesToFixVersionPayload = Payload & {
8135
8133
  export declare type JiraAddRelatedWorkToVersionInput = {
8136
8134
  versionId: Scalars['ID'];
8137
8135
  relatedWorkId: Scalars['ID'];
8138
- url: Scalars['URL'];
8136
+ url?: Maybe<Scalars['URL']>;
8139
8137
  title?: Maybe<Scalars['String']>;
8140
8138
  category: Scalars['String'];
8141
8139
  };
@@ -10971,6 +10969,7 @@ export declare type JiraMutation = {
10971
10969
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
10972
10970
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
10973
10971
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
10972
+ updateVersionRelatedWorkGenericLink?: Maybe<JiraUpdateVersionRelatedWorkGenericLinkPayload>;
10974
10973
  assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
10975
10974
  linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
10976
10975
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
@@ -11011,6 +11010,9 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
11011
11010
  export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
11012
11011
  input: JiraRemoveRelatedWorkFromVersionInput;
11013
11012
  };
11013
+ export declare type JiraMutationUpdateVersionRelatedWorkGenericLinkArgs = {
11014
+ input: JiraUpdateVersionRelatedWorkGenericLinkInput;
11015
+ };
11014
11016
  export declare type JiraMutationAssignRelatedWorkToUserArgs = {
11015
11017
  input: JiraAssignRelatedWorkInput;
11016
11018
  };
@@ -13704,6 +13706,19 @@ export declare type JiraUpdateVersionPayload = Payload & {
13704
13706
  errors?: Maybe<Array<MutationError>>;
13705
13707
  version?: Maybe<JiraVersion>;
13706
13708
  };
13709
+ export declare type JiraUpdateVersionRelatedWorkGenericLinkInput = {
13710
+ versionId: Scalars['ID'];
13711
+ relatedWorkId: Scalars['ID'];
13712
+ url?: Maybe<Scalars['URL']>;
13713
+ title?: Maybe<Scalars['String']>;
13714
+ category: Scalars['String'];
13715
+ };
13716
+ export declare type JiraUpdateVersionRelatedWorkGenericLinkPayload = Payload & {
13717
+ __typename?: 'JiraUpdateVersionRelatedWorkGenericLinkPayload';
13718
+ success: Scalars['Boolean'];
13719
+ errors?: Maybe<Array<MutationError>>;
13720
+ relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
13721
+ };
13707
13722
  export declare type JiraUpdateVersionReleaseDateInput = {
13708
13723
  id: Scalars['ID'];
13709
13724
  releaseDate?: Maybe<Scalars['DateTime']>;
@@ -13792,6 +13807,7 @@ export declare type JiraVersion = Node & {
13792
13807
  nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
13793
13808
  releaseNotes?: Maybe<JiraAdf>;
13794
13809
  devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
13810
+ canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
13795
13811
  releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
13796
13812
  availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
13797
13813
  relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
@@ -14926,6 +14942,8 @@ export declare type MercuryQueryApi = {
14926
14942
  initiative?: Maybe<MercuryInitiative>;
14927
14943
  initiatives?: Maybe<MercuryInitiativeConnection>;
14928
14944
  teamAllocation?: Maybe<MercuryTeamAllocation>;
14945
+ teamAllocationsByOrgLevel?: Maybe<MercuryTeamAllocationConnection>;
14946
+ teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
14929
14947
  intervals?: Maybe<MercuryIntervalConnection>;
14930
14948
  interval?: Maybe<MercuryInterval>;
14931
14949
  orgLevel?: Maybe<MercuryOrgLevel>;
@@ -14968,6 +14986,17 @@ export declare type MercuryQueryApiTeamAllocationArgs = {
14968
14986
  teamId: Scalars['ID'];
14969
14987
  intervalId?: Maybe<Scalars['ID']>;
14970
14988
  };
14989
+ export declare type MercuryQueryApiTeamAllocationsByOrgLevelArgs = {
14990
+ orgLevelId: Scalars['ID'];
14991
+ intervalId: Scalars['ID'];
14992
+ first?: Maybe<Scalars['Int']>;
14993
+ after?: Maybe<Scalars['String']>;
14994
+ };
14995
+ export declare type MercuryQueryApiTeamAllocationsByOrgLevelForActiveIntervalArgs = {
14996
+ orgLevelId: Scalars['ID'];
14997
+ first?: Maybe<Scalars['Int']>;
14998
+ after?: Maybe<Scalars['String']>;
14999
+ };
14971
15000
  export declare type MercuryQueryApiIntervalsArgs = {
14972
15001
  first?: Maybe<Scalars['Int']>;
14973
15002
  after?: Maybe<Scalars['String']>;
@@ -15039,6 +15068,12 @@ export declare type MercuryTeamAllocation = {
15039
15068
  status: MercuryTeamAllocationStatus;
15040
15069
  nextPossibleStatuses: Array<MercuryTeamAllocationStatus>;
15041
15070
  };
15071
+ export declare type MercuryTeamAllocationConnection = {
15072
+ __typename?: 'MercuryTeamAllocationConnection';
15073
+ edges?: Maybe<Array<Maybe<MercuryTeamAllocationEdge>>>;
15074
+ nodes?: Maybe<Array<Maybe<MercuryTeamAllocation>>>;
15075
+ pageInfo: PageInfo;
15076
+ };
15042
15077
  export declare type MercuryTeamAllocationDeletePayload = Payload & {
15043
15078
  __typename?: 'MercuryTeamAllocationDeletePayload';
15044
15079
  deletedTeamAllocationId?: Maybe<Scalars['ID']>;
@@ -15047,6 +15082,11 @@ export declare type MercuryTeamAllocationDeletePayload = Payload & {
15047
15082
  statusCode: Scalars['Int'];
15048
15083
  message: Scalars['String'];
15049
15084
  };
15085
+ export declare type MercuryTeamAllocationEdge = {
15086
+ __typename?: 'MercuryTeamAllocationEdge';
15087
+ cursor: Scalars['String'];
15088
+ node?: Maybe<MercuryTeamAllocation>;
15089
+ };
15050
15090
  export declare type MercuryTeamAllocationEntry = {
15051
15091
  __typename?: 'MercuryTeamAllocationEntry';
15052
15092
  initiativeId: Scalars['String'];
@@ -17082,6 +17122,7 @@ export declare type PolarisView = {
17082
17122
  __typename?: 'PolarisView';
17083
17123
  id: Scalars['ID'];
17084
17124
  xid?: Maybe<Scalars['Int']>;
17125
+ uuid: Scalars['ID'];
17085
17126
  name: Scalars['String'];
17086
17127
  emoji?: Maybe<Scalars['String']>;
17087
17128
  description?: Maybe<Scalars['JSON']>;
@@ -19302,6 +19343,7 @@ export declare type ShepherdResourceActivity = {
19302
19343
  actor: ShepherdUser;
19303
19344
  id?: Maybe<Scalars['String']>;
19304
19345
  resourceAri: Scalars['String'];
19346
+ resourceUrl?: Maybe<Scalars['String']>;
19305
19347
  time: Scalars['DateTime'];
19306
19348
  };
19307
19349
  export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
@@ -20681,12 +20723,50 @@ export declare type TransitionFilter = {
20681
20723
  from: Scalars['String'];
20682
20724
  to: Scalars['String'];
20683
20725
  };
20726
+ export declare type TrelloBoard = {
20727
+ __typename?: 'TrelloBoard';
20728
+ closed: Scalars['Boolean'];
20729
+ id: Scalars['ID'];
20730
+ lastActivityAt?: Maybe<Scalars['DateTime']>;
20731
+ name: Scalars['String'];
20732
+ prefs: TrelloBoardPrefs;
20733
+ shortLink: Scalars['TrelloShortLink'];
20734
+ viewer?: Maybe<TrelloBoardViewer>;
20735
+ workspace?: Maybe<TrelloWorkspaceInfo>;
20736
+ };
20737
+ export declare type TrelloBoardBackground = {
20738
+ __typename?: 'TrelloBoardBackground';
20739
+ color?: Maybe<Scalars['String']>;
20740
+ image?: Maybe<Scalars['String']>;
20741
+ imageScaled?: Maybe<Array<TrelloScaleProps>>;
20742
+ tile: Scalars['Boolean'];
20743
+ };
20744
+ export declare type TrelloBoardPrefs = {
20745
+ __typename?: 'TrelloBoardPrefs';
20746
+ background: TrelloBoardBackground;
20747
+ isTemplate: Scalars['Boolean'];
20748
+ };
20749
+ export declare type TrelloBoardViewer = {
20750
+ __typename?: 'TrelloBoardViewer';
20751
+ lastSeenAt?: Maybe<Scalars['DateTime']>;
20752
+ starred: Scalars['Boolean'];
20753
+ };
20684
20754
  export declare type TrelloQueryApi = {
20685
20755
  __typename?: 'TrelloQueryApi';
20756
+ board?: Maybe<TrelloBoard>;
20686
20757
  echo: Scalars['String'];
20687
20758
  templateCategories: Array<TrelloTemplateGalleryCategory>;
20688
20759
  templateLanguages: Array<TrelloTemplateGalleryLanguage>;
20689
20760
  };
20761
+ export declare type TrelloQueryApiBoardArgs = {
20762
+ id: Scalars['ID'];
20763
+ };
20764
+ export declare type TrelloScaleProps = {
20765
+ __typename?: 'TrelloScaleProps';
20766
+ height: Scalars['Int'];
20767
+ url: Scalars['String'];
20768
+ width: Scalars['Int'];
20769
+ };
20690
20770
  export declare type TrelloTemplateGalleryCategory = {
20691
20771
  __typename?: 'TrelloTemplateGalleryCategory';
20692
20772
  key: Scalars['String'];
@@ -20699,6 +20779,11 @@ export declare type TrelloTemplateGalleryLanguage = {
20699
20779
  locale: Scalars['String'];
20700
20780
  localizedDescription: Scalars['String'];
20701
20781
  };
20782
+ export declare type TrelloWorkspaceInfo = {
20783
+ __typename?: 'TrelloWorkspaceInfo';
20784
+ displayName: Scalars['String'];
20785
+ id: Scalars['ID'];
20786
+ };
20702
20787
  export declare type TunnelDefinitionsInput = {
20703
20788
  faasTunnelUrl?: Maybe<Scalars['URL']>;
20704
20789
  customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;