@forge/cli-shared 7.0.0-next.9 → 7.0.0-next.9-experimental-76b1041

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,33 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 7.0.0-next.9-experimental-76b1041
4
+
5
+ ### Major Changes
6
+
7
+ - 27f557d: Improve forge tunnel debugFunctionHandlers error handling
8
+ - 3b2ffa9: updated the type of appVersion
9
+ - 3b2ffa9: update appVersion type in logs command
10
+
11
+ ### Minor Changes
12
+
13
+ - 30d2f61: Add forge container tunnel MVP
14
+
15
+ ### Patch Changes
16
+
17
+ - a23892e: Update the variable name
18
+ - b011fe9: Add Forge container docker registry authentication
19
+ - 3af315d: Use .cjs extension for the single wrapper
20
+ - 7c02425: Unhide forge build commands
21
+ - 1f8d16f: Update node dev types
22
+ - Updated dependencies [35165ba]
23
+ - Updated dependencies [fe7e7e9]
24
+ - Updated dependencies [01be5cc]
25
+ - Updated dependencies [39b0e6c]
26
+ - Updated dependencies [1f8d16f]
27
+ - Updated dependencies [8f741c6]
28
+ - Updated dependencies [b25d06e]
29
+ - @forge/manifest@9.4.0-next.5-experimental-76b1041
30
+
3
31
  ## 7.0.0-next.9
4
32
 
5
33
  ### Patch Changes
@@ -30,7 +30,7 @@ class TemplateServiceDownloader {
30
30
  throw new NoTemplateError(template);
31
31
  }
32
32
  await new Promise((resolve) => {
33
- fileStream.on('finish', resolve);
33
+ fileStream.on('finish', () => resolve());
34
34
  response.body.pipe(fileStream);
35
35
  });
36
36
  }
@@ -3900,8 +3900,13 @@ export declare type CcpEntitlementTemplate = {
3900
3900
  data?: Maybe<Scalars['String']['output']>;
3901
3901
  key?: Maybe<Scalars['ID']['output']>;
3902
3902
  provisionedBy?: Maybe<Scalars['String']['output']>;
3903
+ userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
3903
3904
  version?: Maybe<Scalars['Int']['output']>;
3904
3905
  };
3906
+ export declare type CcpEntitlementTemplateUserUsageInclusions = {
3907
+ __typename?: 'CcpEntitlementTemplateUserUsageInclusions';
3908
+ references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
3909
+ };
3905
3910
  export declare type CcpEntitlementUsage = {
3906
3911
  __typename?: 'CcpEntitlementUsage';
3907
3912
  offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
@@ -3979,6 +3984,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
3979
3984
  derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
3980
3985
  derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
3981
3986
  effectiveUncollectibleAction?: Maybe<CcpEffectiveUncollectibleAction>;
3987
+ entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
3982
3988
  entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
3983
3989
  expiryDate?: Maybe<Scalars['Float']['output']>;
3984
3990
  hostingType?: Maybe<CcpOfferingHostingType>;
@@ -7136,6 +7142,17 @@ export declare enum CompassCriteriaCollectionComparatorOptions {
7136
7142
  IsPresent = "IS_PRESENT",
7137
7143
  NoneOf = "NONE_OF"
7138
7144
  }
7145
+ export declare type CompassCriteriaGraduatedSeries = {
7146
+ __typename?: 'CompassCriteriaGraduatedSeries';
7147
+ comparator?: Maybe<Scalars['String']['output']>;
7148
+ comparatorValue?: Maybe<Scalars['Float']['output']>;
7149
+ fractionalWeight?: Maybe<Scalars['Int']['output']>;
7150
+ };
7151
+ export declare type CompassCriteriaGraduatedSeriesInput = {
7152
+ comparator: CompassCriteriaNumberComparatorOptions;
7153
+ comparatorValue: Scalars['Float']['input'];
7154
+ fractionalWeight: Scalars['Int']['input'];
7155
+ };
7139
7156
  export declare enum CompassCriteriaMembershipComparatorOptions {
7140
7157
  In = "IN",
7141
7158
  IsPresent = "IS_PRESENT",
@@ -20498,6 +20515,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
20498
20515
  comparator: CompassCriteriaNumberComparatorOptions;
20499
20516
  comparatorValue?: InputMaybe<Scalars['Float']['input']>;
20500
20517
  description?: InputMaybe<Scalars['String']['input']>;
20518
+ graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
20501
20519
  metricDefinitionId: Scalars['ID']['input'];
20502
20520
  name?: InputMaybe<Scalars['String']['input']>;
20503
20521
  scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
@@ -60839,6 +60857,22 @@ export declare enum JiraFieldOptionIdsFilterOperation {
60839
60857
  Allow = "ALLOW",
60840
60858
  Exclude = "EXCLUDE"
60841
60859
  }
60860
+ export declare type JiraFieldSearcherTemplate = {
60861
+ __typename?: 'JiraFieldSearcherTemplate';
60862
+ displayName: Scalars['String']['output'];
60863
+ searcherKey?: Maybe<Scalars['String']['output']>;
60864
+ };
60865
+ export declare type JiraFieldSearcherTemplateConnection = {
60866
+ __typename?: 'JiraFieldSearcherTemplateConnection';
60867
+ edges?: Maybe<Array<Maybe<JiraFieldSearcherTemplateEdge>>>;
60868
+ pageInfo: PageInfo;
60869
+ totalCount?: Maybe<Scalars['Int']['output']>;
60870
+ };
60871
+ export declare type JiraFieldSearcherTemplateEdge = {
60872
+ __typename?: 'JiraFieldSearcherTemplateEdge';
60873
+ cursor: Scalars['String']['output'];
60874
+ node?: Maybe<JiraFieldSearcherTemplate>;
60875
+ };
60842
60876
  export declare type JiraFieldSetPreferences = {
60843
60877
  __typename?: 'JiraFieldSetPreferences';
60844
60878
  width?: Maybe<Scalars['Int']['output']>;
@@ -62475,6 +62509,8 @@ export declare type JiraIssueFieldConfig = Node & {
62475
62509
  lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
62476
62510
  name: Scalars['String']['output'];
62477
62511
  plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
62512
+ searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
62513
+ searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
62478
62514
  trashedByUser?: Maybe<User>;
62479
62515
  trashedTimestamp?: Maybe<Scalars['Long']['output']>;
62480
62516
  type: JiraConfigFieldType;
@@ -62538,6 +62574,12 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
62538
62574
  export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
62539
62575
  limit: Scalars['Int']['input'];
62540
62576
  };
62577
+ export declare type JiraIssueFieldConfigSearcherTemplateOptionsArgs = {
62578
+ after?: InputMaybe<Scalars['String']['input']>;
62579
+ before?: InputMaybe<Scalars['String']['input']>;
62580
+ first?: InputMaybe<Scalars['Int']['input']>;
62581
+ last?: InputMaybe<Scalars['Int']['input']>;
62582
+ };
62541
62583
  export declare type JiraIssueFieldConfiguration = {
62542
62584
  fieldConfig?: Maybe<JiraFieldConfig>;
62543
62585
  };
@@ -63364,6 +63406,7 @@ export declare type JiraIssueStreamHubEventPayloadProject = {
63364
63406
  export declare type JiraIssueTransitionComment = {
63365
63407
  __typename?: 'JiraIssueTransitionComment';
63366
63408
  adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
63409
+ defaultCommentType?: Maybe<JiraIssueTransitionCommentType>;
63367
63410
  enableCannedResponses?: Maybe<Scalars['Boolean']['output']>;
63368
63411
  enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
63369
63412
  mediaContext?: Maybe<JiraMediaContext>;
@@ -89749,7 +89792,7 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
89749
89792
  statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
89750
89793
  };
89751
89794
  export declare type QueryDevai_RovoDevAgentsUserArgs = {
89752
- atlassianAccountId: Scalars['ID']['input'];
89795
+ atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
89753
89796
  cloudId: Scalars['ID']['input'];
89754
89797
  };
89755
89798
  export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
@@ -103426,6 +103469,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
103426
103469
  comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
103427
103470
  comparatorValue?: InputMaybe<Scalars['Float']['input']>;
103428
103471
  description?: InputMaybe<Scalars['String']['input']>;
103472
+ graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
103429
103473
  id: Scalars['ID']['input'];
103430
103474
  metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
103431
103475
  name?: InputMaybe<Scalars['String']['input']>;