@forge/cli-shared 3.25.1-next.0 → 3.25.1-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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.25.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 23a32d6: Fix Docker error reporting when ngrok not configured
8
+
3
9
  ## 3.25.1-next.0
4
10
 
5
11
  ### Patch Changes
@@ -27251,6 +27251,7 @@ export declare type JiraAttachment = {
27251
27251
  fileName?: Maybe<Scalars['String']['output']>;
27252
27252
  fileSize?: Maybe<Scalars['Long']['output']>;
27253
27253
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
27254
+ issue?: Maybe<JiraIssue>;
27254
27255
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
27255
27256
  mediaReadToken?: Maybe<Scalars['String']['output']>;
27256
27257
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -32761,6 +32762,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
32761
32762
  fileSize?: Maybe<Scalars['Long']['output']>;
32762
32763
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
32763
32764
  id: Scalars['ID']['output'];
32765
+ issue?: Maybe<JiraIssue>;
32764
32766
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
32765
32767
  mediaReadToken?: Maybe<Scalars['String']['output']>;
32766
32768
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -35020,6 +35022,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
35020
35022
  fileSize?: Maybe<Scalars['Long']['output']>;
35021
35023
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
35022
35024
  id: Scalars['ID']['output'];
35025
+ issue?: Maybe<JiraIssue>;
35023
35026
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
35024
35027
  mediaReadToken?: Maybe<Scalars['String']['output']>;
35025
35028
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -36427,6 +36430,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
36427
36430
  id: Scalars['ID']['output'];
36428
36431
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
36429
36432
  name: Scalars['String']['output'];
36433
+ nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
36430
36434
  searchUrl?: Maybe<Scalars['String']['output']>;
36431
36435
  selectedTeam?: Maybe<JiraTeamView>;
36432
36436
  teams?: Maybe<JiraTeamViewConnection>;
@@ -43912,6 +43916,7 @@ export declare type ShepherdActor = {
43912
43916
  aaid: Scalars['ID']['output'];
43913
43917
  createdOn?: Maybe<Scalars['DateTime']['output']>;
43914
43918
  mfaEnabled?: Maybe<Scalars['Boolean']['output']>;
43919
+ orgId?: Maybe<Scalars['ID']['output']>;
43915
43920
  orgInfo?: Maybe<ShepherdActorOrgInfo>;
43916
43921
  productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
43917
43922
  sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
@@ -44145,6 +44150,12 @@ export declare type ShepherdAuditLogContext = {
44145
44150
  attributes: Array<ShepherdAuditLogAttribute>;
44146
44151
  id: Scalars['String']['output'];
44147
44152
  };
44153
+ export declare type ShepherdBitbucketWorkspace = {
44154
+ __typename?: 'ShepherdBitbucketWorkspace';
44155
+ ari: Scalars['ID']['output'];
44156
+ slug?: Maybe<Scalars['String']['output']>;
44157
+ url?: Maybe<Scalars['String']['output']>;
44158
+ };
44148
44159
  export declare type ShepherdCategorizedAlertMetadata = {
44149
44160
  __typename?: 'ShepherdCategorizedAlertMetadata';
44150
44161
  category: Scalars['String']['output'];
@@ -44773,6 +44784,7 @@ export declare enum ShepherdWebhookType {
44773
44784
  }
44774
44785
  export declare type ShepherdWorkspace = {
44775
44786
  __typename?: 'ShepherdWorkspace';
44787
+ bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
44776
44788
  cloudId: Scalars['ID']['output'];
44777
44789
  cloudName?: Maybe<Scalars['String']['output']>;
44778
44790
  currentUser?: Maybe<ShepherdCurrentUser>;
@@ -48386,6 +48398,7 @@ export declare type VirtualAgentConfiguration = Node & {
48386
48398
  id: Scalars['ID']['output'];
48387
48399
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
48388
48400
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
48401
+ isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
48389
48402
  properties?: Maybe<VirtualAgentProperties>;
48390
48403
  respondToQueries: Scalars['Boolean']['output'];
48391
48404
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
@@ -48801,6 +48814,7 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
48801
48814
  success: Scalars['Boolean']['output'];
48802
48815
  };
48803
48816
  export declare type VirtualAgentUpdateConfigurationInput = {
48817
+ isEnabledOnJsmPortal?: InputMaybe<Scalars['Boolean']['input']>;
48804
48818
  properties?: InputMaybe<VirtualAgentPropertiesInput>;
48805
48819
  respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
48806
48820
  };