@forge/cli-shared 6.2.0-next.0 → 6.2.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,24 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3cf86f9: Bump sentry/node package to fix issues with forge command
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3cf86f9]
12
+ - Updated dependencies [fd07774]
13
+ - @forge/manifest@7.11.0
14
+
15
+ ## 6.2.0-next.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [fd07774]
20
+ - @forge/manifest@7.11.0-next.1
21
+
3
22
  ## 6.2.0-next.0
4
23
 
5
24
  ### Minor Changes
@@ -63804,11 +63804,10 @@ export declare type QueryRadar_FieldValuesArgs = {
63804
63804
  after?: InputMaybe<Scalars['String']['input']>;
63805
63805
  before?: InputMaybe<Scalars['String']['input']>;
63806
63806
  cloudId: Scalars['ID']['input'];
63807
- entityType: RadarEntityType;
63808
- fieldId: Scalars['ID']['input'];
63809
63807
  first?: InputMaybe<Scalars['Int']['input']>;
63810
63808
  last?: InputMaybe<Scalars['Int']['input']>;
63811
63809
  rql?: InputMaybe<Scalars['String']['input']>;
63810
+ uniqueFieldId: Scalars['ID']['input'];
63812
63811
  };
63813
63812
  export declare type QueryRadar_PositionsArgs = {
63814
63813
  after?: InputMaybe<Scalars['String']['input']>;
@@ -63970,7 +63969,8 @@ export declare type RadarEntity = {
63970
63969
  type?: Maybe<RadarEntityType>;
63971
63970
  };
63972
63971
  export declare enum RadarEntityType {
63973
- Position = "POSITION"
63972
+ FocusArea = "focusArea",
63973
+ Position = "position"
63974
63974
  }
63975
63975
  export declare type RadarError = {
63976
63976
  __typename?: 'RadarError';
@@ -63994,6 +63994,7 @@ export declare type RadarFieldDefinition = Node & {
63994
63994
  filterOptions: RadarFilterOptions;
63995
63995
  id: Scalars['ID']['output'];
63996
63996
  isCustom: Scalars['Boolean']['output'];
63997
+ relativeId: Scalars['String']['output'];
63997
63998
  type: RadarFieldType;
63998
63999
  };
63999
64000
  export declare enum RadarFieldType {
@@ -64113,6 +64114,7 @@ export declare type RadarUrlFieldValue = {
64113
64114
  export declare type RadarWorkspace = {
64114
64115
  __typename?: 'RadarWorkspace';
64115
64116
  cloudId: Scalars['ID']['output'];
64117
+ focusAreaFields: Array<RadarFieldDefinition>;
64116
64118
  positionFields: Array<RadarFieldDefinition>;
64117
64119
  };
64118
64120
  export declare type RankColumnInput = {
@@ -66019,6 +66021,7 @@ export declare enum SearchSortOrder {
66019
66021
  Desc = "DESC"
66020
66022
  }
66021
66023
  export declare type SearchThirdPartyFilter = {
66024
+ containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
66022
66025
  integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
66023
66026
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
66024
66027
  subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -69655,6 +69658,23 @@ export declare type TrelloArchiveCardPayload = Payload & {
69655
69658
  errors?: Maybe<Array<MutationError>>;
69656
69659
  success: Scalars['Boolean']['output'];
69657
69660
  };
69661
+ export declare type TrelloAssignCardToPlannerCalendarEventInput = {
69662
+ cardId: Scalars['ID']['input'];
69663
+ position?: InputMaybe<Scalars['Float']['input']>;
69664
+ providerCalendarId: Scalars['ID']['input'];
69665
+ providerEventId: Scalars['ID']['input'];
69666
+ workspaceId: Scalars['ID']['input'];
69667
+ };
69668
+ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
69669
+ __typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
69670
+ errors?: Maybe<Array<MutationError>>;
69671
+ eventCard?: Maybe<TrelloPlannerCalendarEventCardConnection>;
69672
+ success: Scalars['Boolean']['output'];
69673
+ };
69674
+ export declare type TrelloAssignCardToPlannerCalendarEventPayloadEventCardArgs = {
69675
+ after?: InputMaybe<Scalars['String']['input']>;
69676
+ first?: InputMaybe<Scalars['Int']['input']>;
69677
+ };
69658
69678
  export declare type TrelloAtlassianIntelligence = {
69659
69679
  __typename?: 'TrelloAtlassianIntelligence';
69660
69680
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -70529,6 +70549,7 @@ export declare type TrelloMutationApi = {
70529
70549
  __typename?: 'TrelloMutationApi';
70530
70550
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
70531
70551
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
70552
+ assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
70532
70553
  createCard?: Maybe<TrelloCreateCardPayload>;
70533
70554
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
70534
70555
  pinCard?: Maybe<TrelloPinCardPayload>;
@@ -70550,6 +70571,9 @@ export declare type TrelloMutationApiAddMemberToCardArgs = {
70550
70571
  export declare type TrelloMutationApiArchiveCardArgs = {
70551
70572
  input: TrelloArchiveCardInput;
70552
70573
  };
70574
+ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
70575
+ input: TrelloAssignCardToPlannerCalendarEventInput;
70576
+ };
70553
70577
  export declare type TrelloMutationApiCreateCardArgs = {
70554
70578
  input: TrelloCreateCardInput;
70555
70579
  };
@@ -70848,6 +70872,7 @@ export declare type TrelloQueryApi = {
70848
70872
  list?: Maybe<TrelloList>;
70849
70873
  member?: Maybe<TrelloMember>;
70850
70874
  plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
70875
+ plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
70851
70876
  providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
70852
70877
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
70853
70878
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
@@ -70895,6 +70920,13 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
70895
70920
  id: Scalars['ID']['input'];
70896
70921
  workspaceId: Scalars['ID']['input'];
70897
70922
  };
70923
+ export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
70924
+ accountId: Scalars['ID']['input'];
70925
+ after?: InputMaybe<Scalars['String']['input']>;
70926
+ filter?: InputMaybe<TrelloPlannerCalendarEventsFilter>;
70927
+ first?: InputMaybe<Scalars['Int']['input']>;
70928
+ plannerCalendarId: Scalars['ID']['input'];
70929
+ };
70898
70930
  export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
70899
70931
  after?: InputMaybe<Scalars['String']['input']>;
70900
70932
  first?: InputMaybe<Scalars['Int']['input']>;