@forge/cli-shared 3.11.0-next.1 → 3.11.0-next.3

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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6e015d7]
8
+ - @forge/manifest@4.10.0-next.1
9
+
10
+ ## 3.11.0-next.2
11
+
12
+ ### Patch Changes
13
+
14
+ - 04a9b36: Node Runtime tunnel now reports an error if --debug is enabled
15
+
3
16
  ## 3.11.0-next.1
4
17
 
5
18
  ### Minor Changes
@@ -5860,6 +5860,7 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
5860
5860
  __typename?: 'CustomerServiceIndividualUpdateAttributeValuePayload';
5861
5861
  success: Scalars['Boolean'];
5862
5862
  errors?: Maybe<Array<MutationError>>;
5863
+ attribute?: Maybe<CustomerServiceAttributeValue>;
5863
5864
  };
5864
5865
  export declare type CustomerServiceMutationApi = {
5865
5866
  __typename?: 'CustomerServiceMutationApi';
@@ -5951,6 +5952,7 @@ export declare type CustomerServiceOrganizationUpdateAttributeValuePayload = Pay
5951
5952
  __typename?: 'CustomerServiceOrganizationUpdateAttributeValuePayload';
5952
5953
  success: Scalars['Boolean'];
5953
5954
  errors?: Maybe<Array<MutationError>>;
5955
+ attribute?: Maybe<CustomerServiceAttributeValue>;
5954
5956
  };
5955
5957
  export declare type CustomerServiceOrganizationUpdateInput = {
5956
5958
  id: Scalars['ID'];
@@ -16740,7 +16742,6 @@ export declare type Mutation = {
16740
16742
  userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
16741
16743
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
16742
16744
  deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
16743
- createThirdPartyContainer?: Maybe<ThirdPartyCreateContainerPayload>;
16744
16745
  watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
16745
16746
  unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
16746
16747
  compass?: Maybe<CompassCatalogMutationApi>;
@@ -17098,9 +17099,6 @@ export declare type MutationCreateWebTriggerUrlArgs = {
17098
17099
  export declare type MutationDeleteWebTriggerUrlArgs = {
17099
17100
  id: Scalars['ID'];
17100
17101
  };
17101
- export declare type MutationCreateThirdPartyContainerArgs = {
17102
- input: ThirdPartyCreateContainerInput;
17103
- };
17104
17102
  export declare type MutationWatchMarketplaceAppArgs = {
17105
17103
  id: Scalars['ID'];
17106
17104
  };
@@ -20790,6 +20788,10 @@ export declare type SearchFilterInput = {
20790
20788
  confluenceFilters?: Maybe<SearchConfluenceFilter>;
20791
20789
  jiraFilters?: Maybe<SearchJiraFilter>;
20792
20790
  };
20791
+ export declare enum SearchIssueStatusCategory {
20792
+ Open = "OPEN",
20793
+ Done = "DONE"
20794
+ }
20793
20795
  export declare type SearchItemConnection = {
20794
20796
  __typename?: 'SearchItemConnection';
20795
20797
  edges: Array<SearchResultItemEdge>;
@@ -20800,6 +20802,13 @@ export declare type SearchItemConnection = {
20800
20802
  export declare type SearchJiraFilter = {
20801
20803
  boardFilter?: Maybe<SearchBoardFilter>;
20802
20804
  projectFilter?: Maybe<SearchJiraProjectFilter>;
20805
+ issueFilter?: Maybe<SearchJiraIssueFilter>;
20806
+ };
20807
+ export declare type SearchJiraIssueFilter = {
20808
+ assigneeARIs?: Maybe<Array<Scalars['ID']>>;
20809
+ reporterARIs?: Maybe<Array<Scalars['ID']>>;
20810
+ projectARIs?: Maybe<Array<Scalars['ID']>>;
20811
+ statusCategories?: Maybe<Array<SearchIssueStatusCategory>>;
20803
20812
  };
20804
20813
  export declare type SearchJiraProjectFilter = {
20805
20814
  projectType?: Maybe<SearchProjectType>;
@@ -20876,6 +20885,16 @@ export declare type SearchResultJiraBoardUserContainer = {
20876
20885
  userAccountId: Scalars['String'];
20877
20886
  userName: Scalars['String'];
20878
20887
  };
20888
+ export declare type SearchResultJiraIssue = SearchResult & {
20889
+ __typename?: 'SearchResultJiraIssue';
20890
+ id: Scalars['ID'];
20891
+ title: Scalars['String'];
20892
+ url: Scalars['URL'];
20893
+ iconUrl?: Maybe<Scalars['URL']>;
20894
+ type: SearchResultType;
20895
+ description: Scalars['String'];
20896
+ issue?: Maybe<JiraIssue>;
20897
+ };
20879
20898
  export declare type SearchResultJiraProject = SearchResult & {
20880
20899
  __typename?: 'SearchResultJiraProject';
20881
20900
  id: Scalars['ID'];
@@ -22494,19 +22513,6 @@ export declare type TestingActivityItem = Node & {
22494
22513
  __typename?: 'TestingActivityItem';
22495
22514
  id: Scalars['ID'];
22496
22515
  };
22497
- export declare type ThirdPartyCreateContainerInput = {
22498
- cloudId: Scalars['ID'];
22499
- providerId?: Maybe<Scalars['ID']>;
22500
- workspaceId?: Maybe<Scalars['ID']>;
22501
- name: Scalars['String'];
22502
- type?: Maybe<Scalars['String']>;
22503
- };
22504
- export declare type ThirdPartyCreateContainerPayload = Payload & {
22505
- __typename?: 'ThirdPartyCreateContainerPayload';
22506
- success: Scalars['Boolean'];
22507
- errors?: Maybe<Array<MutationError>>;
22508
- createdContainer?: Maybe<ThirdPartyEntity>;
22509
- };
22510
22516
  export declare type ThirdPartyDetails = {
22511
22517
  __typename?: 'ThirdPartyDetails';
22512
22518
  name: Scalars['String'];
@@ -22514,7 +22520,6 @@ export declare type ThirdPartyDetails = {
22514
22520
  purpose: Scalars['String'];
22515
22521
  thirdPartyCountries: Array<Maybe<Scalars['String']>>;
22516
22522
  };
22517
- export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
22518
22523
  export declare type ThirdPartyInformation = {
22519
22524
  __typename?: 'ThirdPartyInformation';
22520
22525
  isEndUserDataShared: Scalars['Boolean'];