@forge/cli-shared 6.7.0-next.11 → 6.7.0-next.11-experimental-ebf5733

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,28 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.7.0-next.11-experimental-ebf5733
4
+
5
+ ### Minor Changes
6
+
7
+ - 9471e5d: Package Node runtime in a central location and remove 'bundled'
8
+
9
+ ### Patch Changes
10
+
11
+ - 70cd30c: Updated RoA web trigger module warning to be more generic
12
+ - 4879128: Revert Changes: Added config file utility method to only read appId and refactored commands to perform validation after command configuration
13
+ - cf5bc5c: Improve XPA error messages
14
+ - 272d770: Remove LaunchDarkly integration completely
15
+ - 78a006f: Fixed handling of product and site params without any value
16
+ - 30f197e: Refactoring to enable alternate bundler support
17
+ - Updated dependencies [2712852]
18
+ - Updated dependencies [009ab70]
19
+ - Updated dependencies [4c15b3a]
20
+ - Updated dependencies [359756b]
21
+ - Updated dependencies [34db0f6]
22
+ - Updated dependencies [01ca857]
23
+ - Updated dependencies [70badb7]
24
+ - @forge/manifest@8.8.0-next.5-experimental-ebf5733
25
+
3
26
  ## 6.7.0-next.11
4
27
 
5
28
  ### Patch Changes
@@ -23662,6 +23662,7 @@ export declare type EcosystemMarketplaceAppVersion = {
23662
23662
  buildNumber: Scalars['Float']['output'];
23663
23663
  deployment?: Maybe<EcosystemMarketplaceAppDeployment>;
23664
23664
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
23665
+ endUserLicenseAgreementUrl?: Maybe<Scalars['String']['output']>;
23665
23666
  isSupported?: Maybe<Scalars['Boolean']['output']>;
23666
23667
  paymentModel?: Maybe<EcosystemMarketplacePaymentModel>;
23667
23668
  version: Scalars['String']['output'];
@@ -32149,6 +32150,7 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
32149
32150
  export declare type GraphStoreIssueHasAutodevJobArgs = {
32150
32151
  after?: InputMaybe<Scalars['String']['input']>;
32151
32152
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32153
+ filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
32152
32154
  first?: InputMaybe<Scalars['Int']['input']>;
32153
32155
  id: Scalars['ID']['input'];
32154
32156
  sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
@@ -32156,6 +32158,7 @@ export declare type GraphStoreIssueHasAutodevJobArgs = {
32156
32158
  export declare type GraphStoreIssueHasAutodevJobInverseArgs = {
32157
32159
  after?: InputMaybe<Scalars['String']['input']>;
32158
32160
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32161
+ filter?: InputMaybe<GraphStoreIssueHasAutodevJobFilterInput>;
32159
32162
  first?: InputMaybe<Scalars['Int']['input']>;
32160
32163
  id: Scalars['ID']['input'];
32161
32164
  sort?: InputMaybe<GraphStoreIssueHasAutodevJobSortInput>;
@@ -32744,6 +32747,7 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
32744
32747
  export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
32745
32748
  after?: InputMaybe<Scalars['String']['input']>;
32746
32749
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32750
+ filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
32747
32751
  first?: InputMaybe<Scalars['Int']['input']>;
32748
32752
  id: Scalars['ID']['input'];
32749
32753
  sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
@@ -32751,6 +32755,7 @@ export declare type GraphStoreProjectAssociatedAutodevJobArgs = {
32751
32755
  export declare type GraphStoreProjectAssociatedAutodevJobInverseArgs = {
32752
32756
  after?: InputMaybe<Scalars['String']['input']>;
32753
32757
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
32758
+ filter?: InputMaybe<GraphStoreProjectAssociatedAutodevJobFilterInput>;
32754
32759
  first?: InputMaybe<Scalars['Int']['input']>;
32755
32760
  id: Scalars['ID']['input'];
32756
32761
  sort?: InputMaybe<GraphStoreProjectAssociatedAutodevJobSortInput>;
@@ -40712,8 +40717,43 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
40712
40717
  export declare type GraphStoreIssueHasAssigneeSortInput = {
40713
40718
  lastModified?: InputMaybe<GraphStoreSortInput>;
40714
40719
  };
40720
+ export declare enum GraphStoreIssueHasAutodevJobAutodevJobStatus {
40721
+ Cancelled = "CANCELLED",
40722
+ Completed = "COMPLETED",
40723
+ Failed = "FAILED",
40724
+ InProgress = "IN_PROGRESS",
40725
+ Pending = "PENDING",
40726
+ Unknown = "UNKNOWN"
40727
+ }
40728
+ export declare type GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput = {
40729
+ is?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
40730
+ isNot?: InputMaybe<Array<GraphStoreIssueHasAutodevJobAutodevJobStatus>>;
40731
+ };
40732
+ export declare type GraphStoreIssueHasAutodevJobConditionalFilterInput = {
40733
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
40734
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
40735
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
40736
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
40737
+ to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
40738
+ to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
40739
+ to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
40740
+ to_status?: InputMaybe<GraphStoreIssueHasAutodevJobAutodevJobStatusFilterInput>;
40741
+ to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
40742
+ };
40743
+ export declare type GraphStoreIssueHasAutodevJobFilterInput = {
40744
+ and?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
40745
+ or?: InputMaybe<Array<InputMaybe<GraphStoreIssueHasAutodevJobConditionalFilterInput>>>;
40746
+ };
40715
40747
  export declare type GraphStoreIssueHasAutodevJobSortInput = {
40748
+ createdAt?: InputMaybe<GraphStoreSortInput>;
40749
+ fromAti?: InputMaybe<GraphStoreSortInput>;
40716
40750
  lastModified?: InputMaybe<GraphStoreSortInput>;
40751
+ toAti?: InputMaybe<GraphStoreSortInput>;
40752
+ to_agentAri?: InputMaybe<GraphStoreSortInput>;
40753
+ to_createdAt?: InputMaybe<GraphStoreSortInput>;
40754
+ to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
40755
+ to_status?: InputMaybe<GraphStoreSortInput>;
40756
+ to_updatedAt?: InputMaybe<GraphStoreSortInput>;
40717
40757
  };
40718
40758
  export declare type GraphStoreIssueMentionedInConversationSortInput = {
40719
40759
  lastModified?: InputMaybe<GraphStoreSortInput>;
@@ -41142,8 +41182,43 @@ export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
41142
41182
  export declare type GraphStorePrInRepoSortInput = {
41143
41183
  lastModified?: InputMaybe<GraphStoreSortInput>;
41144
41184
  };
41185
+ export declare enum GraphStoreProjectAssociatedAutodevJobAutodevJobStatus {
41186
+ Cancelled = "CANCELLED",
41187
+ Completed = "COMPLETED",
41188
+ Failed = "FAILED",
41189
+ InProgress = "IN_PROGRESS",
41190
+ Pending = "PENDING",
41191
+ Unknown = "UNKNOWN"
41192
+ }
41193
+ export declare type GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput = {
41194
+ is?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
41195
+ isNot?: InputMaybe<Array<GraphStoreProjectAssociatedAutodevJobAutodevJobStatus>>;
41196
+ };
41197
+ export declare type GraphStoreProjectAssociatedAutodevJobConditionalFilterInput = {
41198
+ createdAt?: InputMaybe<GraphStoreDateFilterInput>;
41199
+ fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
41200
+ lastModified?: InputMaybe<GraphStoreDateFilterInput>;
41201
+ toAti?: InputMaybe<GraphStoreAtiFilterInput>;
41202
+ to_agentAri?: InputMaybe<GraphStoreAriFilterInput>;
41203
+ to_createdAt?: InputMaybe<GraphStoreLongFilterInput>;
41204
+ to_jobOwnerAri?: InputMaybe<GraphStoreAriFilterInput>;
41205
+ to_status?: InputMaybe<GraphStoreProjectAssociatedAutodevJobAutodevJobStatusFilterInput>;
41206
+ to_updatedAt?: InputMaybe<GraphStoreLongFilterInput>;
41207
+ };
41208
+ export declare type GraphStoreProjectAssociatedAutodevJobFilterInput = {
41209
+ and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
41210
+ or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedAutodevJobConditionalFilterInput>>>;
41211
+ };
41145
41212
  export declare type GraphStoreProjectAssociatedAutodevJobSortInput = {
41213
+ createdAt?: InputMaybe<GraphStoreSortInput>;
41214
+ fromAti?: InputMaybe<GraphStoreSortInput>;
41146
41215
  lastModified?: InputMaybe<GraphStoreSortInput>;
41216
+ toAti?: InputMaybe<GraphStoreSortInput>;
41217
+ to_agentAri?: InputMaybe<GraphStoreSortInput>;
41218
+ to_createdAt?: InputMaybe<GraphStoreSortInput>;
41219
+ to_jobOwnerAri?: InputMaybe<GraphStoreSortInput>;
41220
+ to_status?: InputMaybe<GraphStoreSortInput>;
41221
+ to_updatedAt?: InputMaybe<GraphStoreSortInput>;
41147
41222
  };
41148
41223
  export declare type GraphStoreProjectAssociatedBranchSortInput = {
41149
41224
  createdAt?: InputMaybe<GraphStoreSortInput>;
@@ -43391,10 +43466,12 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
43391
43466
  };
43392
43467
  export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
43393
43468
  export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
43394
- export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & {
43469
+ export declare type GraphStoreSimplifiedIssueHasAutodevJobConnection = HasPageInfo & HasTotal & {
43395
43470
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobConnection';
43396
43471
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobEdge>>>;
43472
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
43397
43473
  pageInfo: PageInfo;
43474
+ totalCount?: Maybe<Scalars['Int']['output']>;
43398
43475
  };
43399
43476
  export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
43400
43477
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobEdge';
@@ -43404,10 +43481,12 @@ export declare type GraphStoreSimplifiedIssueHasAutodevJobEdge = {
43404
43481
  lastUpdated: Scalars['DateTime']['output'];
43405
43482
  node?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobUnion>;
43406
43483
  };
43407
- export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & {
43484
+ export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseConnection = HasPageInfo & HasTotal & {
43408
43485
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseConnection';
43409
43486
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseEdge>>>;
43487
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
43410
43488
  pageInfo: PageInfo;
43489
+ totalCount?: Maybe<Scalars['Int']['output']>;
43411
43490
  };
43412
43491
  export declare type GraphStoreSimplifiedIssueHasAutodevJobInverseEdge = {
43413
43492
  __typename?: 'GraphStoreSimplifiedIssueHasAutodevJobInverseEdge';
@@ -44237,10 +44316,12 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
44237
44316
  };
44238
44317
  export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
44239
44318
  export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
44240
- export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & {
44319
+ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobConnection = HasPageInfo & HasTotal & {
44241
44320
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobConnection';
44242
44321
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobEdge>>>;
44322
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
44243
44323
  pageInfo: PageInfo;
44324
+ totalCount?: Maybe<Scalars['Int']['output']>;
44244
44325
  };
44245
44326
  export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
44246
44327
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobEdge';
@@ -44250,10 +44331,12 @@ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobEdge = {
44250
44331
  lastUpdated: Scalars['DateTime']['output'];
44251
44332
  node?: Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobUnion>;
44252
44333
  };
44253
- export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & {
44334
+ export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection = HasPageInfo & HasTotal & {
44254
44335
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseConnection';
44255
44336
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge>>>;
44337
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
44256
44338
  pageInfo: PageInfo;
44339
+ totalCount?: Maybe<Scalars['Int']['output']>;
44257
44340
  };
44258
44341
  export declare type GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge = {
44259
44342
  __typename?: 'GraphStoreSimplifiedProjectAssociatedAutodevJobInverseEdge';
@@ -51145,6 +51228,7 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
51145
51228
  }
51146
51229
  export declare enum HelpObjectStoreArticleSourceSystem {
51147
51230
  Confluence = "CONFLUENCE",
51231
+ CrossSiteConfluence = "CROSS_SITE_CONFLUENCE",
51148
51232
  External = "EXTERNAL",
51149
51233
  GoogleDrive = "GOOGLE_DRIVE",
51150
51234
  Sharepoint = "SHAREPOINT"
@@ -70753,8 +70837,10 @@ export declare type KnowledgeDiscoverySearchUser = {
70753
70837
  __typename?: 'KnowledgeDiscoverySearchUser';
70754
70838
  avatarUrl?: Maybe<Scalars['String']['output']>;
70755
70839
  id: Scalars['String']['output'];
70840
+ locale?: Maybe<Scalars['String']['output']>;
70756
70841
  name: Scalars['String']['output'];
70757
70842
  title?: Maybe<Scalars['String']['output']>;
70843
+ zoneInfo?: Maybe<Scalars['String']['output']>;
70758
70844
  };
70759
70845
  export declare type KnowledgeDiscoverySmartAnswersRoute = {
70760
70846
  __typename?: 'KnowledgeDiscoverySmartAnswersRoute';
@@ -87699,6 +87785,7 @@ export declare enum ShepherdRemediationActionType {
87699
87785
  DeleteDataRemediation = "DELETE_DATA_REMEDIATION",
87700
87786
  DeleteFilesRemediation = "DELETE_FILES_REMEDIATION",
87701
87787
  EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
87788
+ EmailWithAutomationRemediation = "EMAIL_WITH_AUTOMATION_REMEDIATION",
87702
87789
  ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
87703
87790
  ExcludeUserRemediation = "EXCLUDE_USER_REMEDIATION",
87704
87791
  ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
@@ -91761,6 +91848,7 @@ export declare type TrelloAttachment = Node & {
91761
91848
  edgeColor?: Maybe<Scalars['String']['output']>;
91762
91849
  fileName?: Maybe<Scalars['String']['output']>;
91763
91850
  id: Scalars['ID']['output'];
91851
+ isMalicious?: Maybe<Scalars['Boolean']['output']>;
91764
91852
  isUpload?: Maybe<Scalars['Boolean']['output']>;
91765
91853
  mimeType?: Maybe<Scalars['String']['output']>;
91766
91854
  name?: Maybe<Scalars['String']['output']>;
@@ -92312,6 +92400,7 @@ export declare type TrelloCardUpdated = {
92312
92400
  isTemplate?: Maybe<Scalars['Boolean']['output']>;
92313
92401
  labels?: Maybe<TrelloLabelUpdatedConnection>;
92314
92402
  lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
92403
+ limits?: Maybe<TrelloCardLimits>;
92315
92404
  location?: Maybe<TrelloCardLocation>;
92316
92405
  members?: Maybe<TrelloMemberUpdatedConnection>;
92317
92406
  mirrorSource?: Maybe<TrelloCard>;