@forge/cli-shared 6.1.0 → 6.2.0-next.1

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
+ ## 6.2.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [fd07774]
8
+ - @forge/manifest@7.11.0-next.1
9
+
10
+ ## 6.2.0-next.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 3cf86f9: Bump sentry/node package to fix issues with forge command
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [3cf86f9]
19
+ - @forge/manifest@7.11.0-next.0
20
+
3
21
  ## 6.1.0
4
22
 
5
23
  ### Minor Changes
@@ -2405,6 +2405,15 @@ export declare type CcpBillingPeriodDetails = {
2405
2405
  billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
2406
2406
  nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
2407
2407
  };
2408
+ export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
2409
+ __typename?: 'CcpCancelEntitlementExperienceCapability';
2410
+ experienceUrl?: Maybe<Scalars['String']['output']>;
2411
+ isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
2412
+ reasonCode?: Maybe<CcpCancelEntitlementExperienceCapabilityReasonCode>;
2413
+ };
2414
+ export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
2415
+ EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
2416
+ }
2408
2417
  export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
2409
2418
  __typename?: 'CcpChangeOfferingExperienceCapability';
2410
2419
  experienceUrl?: Maybe<Scalars['String']['output']>;
@@ -2523,6 +2532,7 @@ export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
2523
2532
  };
2524
2533
  export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
2525
2534
  __typename?: 'CcpEntitlementExperienceCapabilities';
2535
+ cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
2526
2536
  changeOffering?: Maybe<CcpExperienceCapability>;
2527
2537
  changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
2528
2538
  manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
@@ -44075,8 +44085,15 @@ export declare type JiraIssueDevSummaryResult = {
44075
44085
  export declare type JiraIssueEdge = {
44076
44086
  __typename?: 'JiraIssueEdge';
44077
44087
  cursor: Scalars['String']['output'];
44088
+ fieldSets?: Maybe<JiraIssueFieldSetConnection>;
44078
44089
  node?: Maybe<JiraIssue>;
44079
44090
  };
44091
+ export declare type JiraIssueEdgeFieldSetsArgs = {
44092
+ after?: InputMaybe<Scalars['String']['input']>;
44093
+ before?: InputMaybe<Scalars['String']['input']>;
44094
+ first?: InputMaybe<Scalars['Int']['input']>;
44095
+ last?: InputMaybe<Scalars['Int']['input']>;
44096
+ };
44080
44097
  export declare type JiraIssueExportError = {
44081
44098
  __typename?: 'JiraIssueExportError';
44082
44099
  displayMessage?: Maybe<Scalars['String']['output']>;
@@ -44707,6 +44724,10 @@ export declare type JiraIssueSearchFieldSetsFilter = {
44707
44724
  fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
44708
44725
  searchString?: InputMaybe<Scalars['String']['input']>;
44709
44726
  };
44727
+ export declare type JiraIssueSearchFieldSetsInput = {
44728
+ fieldSetIds?: InputMaybe<Array<Scalars['String']['input']>>;
44729
+ viewInput?: InputMaybe<JiraIssueSearchViewInput>;
44730
+ };
44710
44731
  export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
44711
44732
  __typename?: 'JiraIssueSearchGroupByFieldMutationPayload';
44712
44733
  errors?: Maybe<Array<MutationError>>;
@@ -49112,6 +49133,7 @@ export declare type JiraQueryIssueSearchArgs = {
49112
49133
  after?: InputMaybe<Scalars['String']['input']>;
49113
49134
  before?: InputMaybe<Scalars['String']['input']>;
49114
49135
  cloudId: Scalars['ID']['input'];
49136
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
49115
49137
  first?: InputMaybe<Scalars['Int']['input']>;
49116
49138
  issueSearchInput: JiraIssueSearchInput;
49117
49139
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -49130,6 +49152,7 @@ export declare type JiraQueryIssueSearchStableArgs = {
49130
49152
  after?: InputMaybe<Scalars['String']['input']>;
49131
49153
  before?: InputMaybe<Scalars['String']['input']>;
49132
49154
  cloudId: Scalars['ID']['input'];
49155
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
49133
49156
  first?: InputMaybe<Scalars['Int']['input']>;
49134
49157
  issueSearchInput: JiraIssueSearchInput;
49135
49158
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -50647,7 +50670,8 @@ export declare type JiraServiceManagementCreateAndAssociateWorkflowFromTemplateP
50647
50670
  export declare type JiraServiceManagementCreateRequestTypeCategoryInput = {
50648
50671
  name: Scalars['String']['input'];
50649
50672
  owner?: InputMaybe<Scalars['String']['input']>;
50650
- projectId?: InputMaybe<Scalars['Long']['input']>;
50673
+ projectId?: InputMaybe<Scalars['ID']['input']>;
50674
+ requestTypes?: InputMaybe<Array<Scalars['ID']['input']>>;
50651
50675
  restriction?: InputMaybe<JiraServiceManagementRequestTypeCategoryRestriction>;
50652
50676
  status?: InputMaybe<JiraServiceManagementRequestTypeCategoryStatus>;
50653
50677
  };
@@ -51115,8 +51139,8 @@ export declare type JiraServiceManagementRequestTypeCategory = {
51115
51139
  id: Scalars['ID']['output'];
51116
51140
  name?: Maybe<Scalars['String']['output']>;
51117
51141
  owner?: Maybe<Scalars['String']['output']>;
51118
- projectId?: Maybe<Scalars['Long']['output']>;
51119
- requestTypes?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
51142
+ projectId?: Maybe<Scalars['ID']['output']>;
51143
+ requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
51120
51144
  restriction?: Maybe<JiraServiceManagementRequestTypeCategoryRestriction>;
51121
51145
  status?: Maybe<JiraServiceManagementRequestTypeCategoryStatus>;
51122
51146
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -54870,6 +54894,9 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
54870
54894
  errors?: Maybe<Array<MutationError>>;
54871
54895
  success: Scalars['Boolean']['output'];
54872
54896
  };
54897
+ export declare enum JsmChatWebConversationActions {
54898
+ CloseConversation = "CLOSE_CONVERSATION"
54899
+ }
54873
54900
  export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
54874
54901
  export declare enum JsmChatWebConversationMessageContentType {
54875
54902
  Adf = "ADF"
@@ -54898,6 +54925,7 @@ export declare type JsmChatWebSubscriptionEstablishedPayload = {
54898
54925
  };
54899
54926
  export declare type JsmChatWebSubscriptionResponse = {
54900
54927
  __typename?: 'JsmChatWebSubscriptionResponse';
54928
+ action?: Maybe<JsmChatWebConversationActions>;
54901
54929
  conversation?: Maybe<JsmChatMessageEdge>;
54902
54930
  result?: Maybe<JsmChatWebConversationUpdateSubscriptionPayload>;
54903
54931
  };
@@ -56288,6 +56316,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
56288
56316
  compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
56289
56317
  dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
56290
56318
  frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
56319
+ paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
56291
56320
  versionNumber?: InputMaybe<Scalars['String']['input']>;
56292
56321
  };
56293
56322
  export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
@@ -56954,6 +56983,7 @@ export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
56954
56983
  export declare type MarketplaceConsoleRemoteArtifactDetails = {
56955
56984
  __typename?: 'MarketplaceConsoleRemoteArtifactDetails';
56956
56985
  dataCenterStatus?: Maybe<Scalars['String']['output']>;
56986
+ licensingEnabled?: Maybe<Scalars['Boolean']['output']>;
56957
56987
  version?: Maybe<Scalars['String']['output']>;
56958
56988
  };
56959
56989
  export declare type MarketplaceConsoleRemoteArtifactLinks = {
@@ -63774,11 +63804,10 @@ export declare type QueryRadar_FieldValuesArgs = {
63774
63804
  after?: InputMaybe<Scalars['String']['input']>;
63775
63805
  before?: InputMaybe<Scalars['String']['input']>;
63776
63806
  cloudId: Scalars['ID']['input'];
63777
- entityType: RadarEntityType;
63778
- fieldId: Scalars['ID']['input'];
63779
63807
  first?: InputMaybe<Scalars['Int']['input']>;
63780
63808
  last?: InputMaybe<Scalars['Int']['input']>;
63781
63809
  rql?: InputMaybe<Scalars['String']['input']>;
63810
+ uniqueFieldId: Scalars['ID']['input'];
63782
63811
  };
63783
63812
  export declare type QueryRadar_PositionsArgs = {
63784
63813
  after?: InputMaybe<Scalars['String']['input']>;
@@ -63940,7 +63969,8 @@ export declare type RadarEntity = {
63940
63969
  type?: Maybe<RadarEntityType>;
63941
63970
  };
63942
63971
  export declare enum RadarEntityType {
63943
- Position = "POSITION"
63972
+ FocusArea = "focusArea",
63973
+ Position = "position"
63944
63974
  }
63945
63975
  export declare type RadarError = {
63946
63976
  __typename?: 'RadarError';
@@ -63964,6 +63994,7 @@ export declare type RadarFieldDefinition = Node & {
63964
63994
  filterOptions: RadarFilterOptions;
63965
63995
  id: Scalars['ID']['output'];
63966
63996
  isCustom: Scalars['Boolean']['output'];
63997
+ relativeId: Scalars['String']['output'];
63967
63998
  type: RadarFieldType;
63968
63999
  };
63969
64000
  export declare enum RadarFieldType {
@@ -64083,6 +64114,7 @@ export declare type RadarUrlFieldValue = {
64083
64114
  export declare type RadarWorkspace = {
64084
64115
  __typename?: 'RadarWorkspace';
64085
64116
  cloudId: Scalars['ID']['output'];
64117
+ focusAreaFields: Array<RadarFieldDefinition>;
64086
64118
  positionFields: Array<RadarFieldDefinition>;
64087
64119
  };
64088
64120
  export declare type RankColumnInput = {
@@ -65989,6 +66021,7 @@ export declare enum SearchSortOrder {
65989
66021
  Desc = "DESC"
65990
66022
  }
65991
66023
  export declare type SearchThirdPartyFilter = {
66024
+ containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
65992
66025
  integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
65993
66026
  range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
65994
66027
  subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -69625,6 +69658,23 @@ export declare type TrelloArchiveCardPayload = Payload & {
69625
69658
  errors?: Maybe<Array<MutationError>>;
69626
69659
  success: Scalars['Boolean']['output'];
69627
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
+ };
69628
69678
  export declare type TrelloAtlassianIntelligence = {
69629
69679
  __typename?: 'TrelloAtlassianIntelligence';
69630
69680
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -70499,6 +70549,7 @@ export declare type TrelloMutationApi = {
70499
70549
  __typename?: 'TrelloMutationApi';
70500
70550
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
70501
70551
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
70552
+ assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
70502
70553
  createCard?: Maybe<TrelloCreateCardPayload>;
70503
70554
  createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
70504
70555
  pinCard?: Maybe<TrelloPinCardPayload>;
@@ -70520,6 +70571,9 @@ export declare type TrelloMutationApiAddMemberToCardArgs = {
70520
70571
  export declare type TrelloMutationApiArchiveCardArgs = {
70521
70572
  input: TrelloArchiveCardInput;
70522
70573
  };
70574
+ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
70575
+ input: TrelloAssignCardToPlannerCalendarEventInput;
70576
+ };
70523
70577
  export declare type TrelloMutationApiCreateCardArgs = {
70524
70578
  input: TrelloCreateCardInput;
70525
70579
  };
@@ -70818,6 +70872,7 @@ export declare type TrelloQueryApi = {
70818
70872
  list?: Maybe<TrelloList>;
70819
70873
  member?: Maybe<TrelloMember>;
70820
70874
  plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
70875
+ plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
70821
70876
  providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
70822
70877
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
70823
70878
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
@@ -70865,6 +70920,13 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
70865
70920
  id: Scalars['ID']['input'];
70866
70921
  workspaceId: Scalars['ID']['input'];
70867
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
+ };
70868
70930
  export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
70869
70931
  after?: InputMaybe<Scalars['String']['input']>;
70870
70932
  first?: InputMaybe<Scalars['Int']['input']>;