@forge/cli-shared 3.5.1-next.6 → 3.5.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,26 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8ac7fd3: Rename tunnel and runtime packages
8
+ - 38e4ae4: Added sentry to the CLI for error capture and analytics
9
+ - Updated dependencies [30a32d0]
10
+ - Updated dependencies [734a5de]
11
+ - Updated dependencies [40b251c]
12
+ - Updated dependencies [2c490ad]
13
+ - Updated dependencies [4471be8]
14
+ - Updated dependencies [e975f19]
15
+ - @forge/manifest@4.6.0
16
+
17
+ ## 3.5.1-next.7
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [2c490ad]
22
+ - @forge/manifest@4.6.0-next.5
23
+
3
24
  ## 3.5.1-next.6
4
25
 
5
26
  ### Patch Changes
@@ -15982,7 +15982,6 @@ export declare type MutationCreateReleaseNoteArgs = {
15982
15982
  productIds?: Maybe<Array<Scalars['String']>>;
15983
15983
  description: Scalars['JSON'];
15984
15984
  changeCategory?: Maybe<Scalars['String']>;
15985
- benefitsList?: Maybe<Scalars['JSON']>;
15986
15985
  featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
15987
15986
  };
15988
15987
  export declare type MutationPublishReleaseNoteArgs = {
@@ -18676,6 +18675,7 @@ export declare type RankingDiffPayload = {
18676
18675
  };
18677
18676
  export declare enum RateLimitingCurrency {
18678
18677
  TestingService = "TESTING_SERVICE",
18678
+ TrelloCurrency = "TRELLO_CURRENCY",
18679
18679
  DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
18680
18680
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
18681
18681
  TeamsCurrency = "TEAMS_CURRENCY",
@@ -20953,6 +20953,10 @@ export declare type SupportRequestAddCommentInput = {
20953
20953
  message: Scalars['String'];
20954
20954
  issueKey: Scalars['String'];
20955
20955
  };
20956
+ export declare type SupportRequestAdditionalTicketData = {
20957
+ parentIssueIdOrKey?: Maybe<Scalars['String']>;
20958
+ operationType?: Maybe<Scalars['String']>;
20959
+ };
20956
20960
  export declare type SupportRequestCatalogMutationApi = {
20957
20961
  __typename?: 'SupportRequestCatalogMutationApi';
20958
20962
  addComment?: Maybe<SupportRequestComment>;
@@ -20964,6 +20968,7 @@ export declare type SupportRequestCatalogMutationApi = {
20964
20968
  addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
20965
20969
  createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
20966
20970
  updateSupportRequest?: Maybe<SupportRequest>;
20971
+ createTicket?: Maybe<SupportRequestCreateTicketResponse>;
20967
20972
  supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
20968
20973
  };
20969
20974
  export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
@@ -20996,6 +21001,12 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
20996
21001
  export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
20997
21002
  input: SupportRequestUpdateInput;
20998
21003
  };
21004
+ export declare type SupportRequestCatalogMutationApiCreateTicketArgs = {
21005
+ summary: Scalars['String'];
21006
+ description: Scalars['String'];
21007
+ fields?: Maybe<Array<Maybe<SupportRequestTicketFields>>>;
21008
+ additionalData?: Maybe<SupportRequestAdditionalTicketData>;
21009
+ };
20999
21010
  export declare type SupportRequestCatalogQueryApi = {
21000
21011
  __typename?: 'SupportRequestCatalogQueryApi';
21001
21012
  me?: Maybe<SupportRequestPage>;
@@ -21044,6 +21055,12 @@ export declare type SupportRequestContextSetNotificationInput = {
21044
21055
  requestKey: Scalars['String'];
21045
21056
  status: Scalars['Boolean'];
21046
21057
  };
21058
+ export declare type SupportRequestCreateTicketResponse = {
21059
+ __typename?: 'SupportRequestCreateTicketResponse';
21060
+ ticketKey?: Maybe<Scalars['String']>;
21061
+ success?: Maybe<Scalars['Boolean']>;
21062
+ message?: Maybe<Scalars['String']>;
21063
+ };
21047
21064
  export declare type SupportRequestDisplayableDateTime = {
21048
21065
  __typename?: 'SupportRequestDisplayableDateTime';
21049
21066
  dateTime: Scalars['String'];
@@ -21196,6 +21213,11 @@ export declare type SupportRequestTicket = {
21196
21213
  statusName?: Maybe<Scalars['String']>;
21197
21214
  categoryKey?: Maybe<Scalars['String']>;
21198
21215
  };
21216
+ export declare type SupportRequestTicketFields = {
21217
+ fieldId: Scalars['Long'];
21218
+ fieldValue: Scalars['String'];
21219
+ dataType: SupportRequestFieldDataType;
21220
+ };
21199
21221
  export declare type SupportRequestTransition = {
21200
21222
  __typename?: 'SupportRequestTransition';
21201
21223
  id: Scalars['String'];