@forge/cli-shared 2.2.0-next.22 → 2.2.0

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,47 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b63af27: Refactor templates code to be more generic in order to ease implementing other templating methods
8
+
9
+ ### Patch Changes
10
+
11
+ - 1dba082: Handle the manifest case of remotes found in the egress permissions section when installing an app
12
+ - Updated dependencies [bd6e025]
13
+ - Updated dependencies [1c196ff]
14
+ - Updated dependencies [271b98a]
15
+ - Updated dependencies [4cfa56d]
16
+ - Updated dependencies [22a488e]
17
+ - Updated dependencies [218fe20]
18
+ - Updated dependencies [2bca1c0]
19
+ - Updated dependencies [689c09b]
20
+ - Updated dependencies [b97660c]
21
+ - Updated dependencies [7c0d2ee]
22
+ - Updated dependencies [1dba082]
23
+ - Updated dependencies [d3afe01]
24
+ - Updated dependencies [dfe9dd8]
25
+ - Updated dependencies [91ea057]
26
+ - Updated dependencies [3010f0e]
27
+ - Updated dependencies [2b7c32b]
28
+ - Updated dependencies [e7ee3a7]
29
+ - Updated dependencies [92d081d]
30
+ - Updated dependencies [d3c8c8d]
31
+ - Updated dependencies [fca240d]
32
+ - Updated dependencies [36c7c8f]
33
+ - Updated dependencies [d2f6992]
34
+ - Updated dependencies [d18c9f1]
35
+ - Updated dependencies [1dba082]
36
+ - Updated dependencies [fa963b1]
37
+ - Updated dependencies [0a7725f]
38
+ - Updated dependencies [1dba082]
39
+ - Updated dependencies [e4a14c7]
40
+ - Updated dependencies [2bb89c5]
41
+ - Updated dependencies [5875eb3]
42
+ - Updated dependencies [0a39c43]
43
+ - @forge/manifest@3.0.0
44
+
3
45
  ## 2.2.0-next.22
4
46
 
5
47
  ### Patch Changes
@@ -4876,9 +4876,12 @@ export declare enum EventKnownAvIs {
4876
4876
  AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
4877
4877
  }
4878
4878
  export declare enum EventMatchingStrategies {
4879
+ JiraByCloud = "JIRA_BY_CLOUD",
4879
4880
  JiraByProject = "JIRA_BY_PROJECT",
4880
4881
  JiraByIssue = "JIRA_BY_ISSUE",
4881
- BitbucketByRepo = "BITBUCKET_BY_REPO"
4882
+ BitbucketByRepo = "BITBUCKET_BY_REPO",
4883
+ ByAccount = "BY_ACCOUNT",
4884
+ JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
4882
4885
  }
4883
4886
  export declare type EventSource = {
4884
4887
  __typename?: 'EventSource';
@@ -4951,6 +4954,7 @@ export declare type ForgeMetricsData = {
4951
4954
  name: Scalars['String'];
4952
4955
  type: ForgeMetricsDataType;
4953
4956
  series?: Maybe<Array<ForgeMetricsSeries>>;
4957
+ resolution: ForgeMetricsResolution;
4954
4958
  };
4955
4959
  export declare enum ForgeMetricsDataType {
4956
4960
  DateTime = "DATE_TIME",
@@ -4962,6 +4966,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
4962
4966
  name: Scalars['String'];
4963
4967
  type: ForgeMetricsDataType;
4964
4968
  series: Array<ForgeMetricsErrorsSeries>;
4969
+ resolution: ForgeMetricsResolution;
4965
4970
  };
4966
4971
  export declare type ForgeMetricsErrorsDataPoint = {
4967
4972
  __typename?: 'ForgeMetricsErrorsDataPoint';
@@ -4988,6 +4993,7 @@ export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
4988
4993
  name: Scalars['String'];
4989
4994
  type: ForgeMetricsDataType;
4990
4995
  series: Array<ForgeMetricsInvocationSeries>;
4996
+ resolution: ForgeMetricsResolution;
4991
4997
  };
4992
4998
  export declare type ForgeMetricsInvocationDataPoint = {
4993
4999
  __typename?: 'ForgeMetricsInvocationDataPoint';
@@ -5033,6 +5039,15 @@ export declare type ForgeMetricsQueryInput = {
5033
5039
  filters: ForgeMetricsQueryFilters;
5034
5040
  groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
5035
5041
  };
5042
+ export declare type ForgeMetricsResolution = {
5043
+ __typename?: 'ForgeMetricsResolution';
5044
+ size: Scalars['Int'];
5045
+ units: ForgeMetricsResolutionUnit;
5046
+ };
5047
+ export declare enum ForgeMetricsResolutionUnit {
5048
+ Hours = "HOURS",
5049
+ Minutes = "MINUTES"
5050
+ }
5036
5051
  export declare type ForgeMetricsSeries = {
5037
5052
  groups: Array<ForgeMetricsLabelGroup>;
5038
5053
  };
@@ -5041,6 +5056,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
5041
5056
  name: Scalars['String'];
5042
5057
  type: ForgeMetricsDataType;
5043
5058
  series: Array<ForgeMetricsSuccessRateSeries>;
5059
+ resolution: ForgeMetricsResolution;
5044
5060
  };
5045
5061
  export declare type ForgeMetricsSuccessRateDataPoint = {
5046
5062
  __typename?: 'ForgeMetricsSuccessRateDataPoint';
@@ -5058,6 +5074,7 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
5058
5074
  name: Scalars['String'];
5059
5075
  type: ForgeMetricsDataType;
5060
5076
  series: Array<ForgeMetricsSuccessRateSeries>;
5077
+ resolution: ForgeMetricsResolution;
5061
5078
  };
5062
5079
  export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
5063
5080
  export declare type FunctionDescription = {
@@ -5195,6 +5212,11 @@ export declare type InvokePolarisObjectPayload = Payload & {
5195
5212
  errors?: Maybe<Array<MutationError>>;
5196
5213
  response?: Maybe<ResolvedPolarisObject>;
5197
5214
  };
5215
+ export declare type IssueAndProject = {
5216
+ __typename?: 'IssueAndProject';
5217
+ issueId: Scalars['ID'];
5218
+ projectId: Scalars['ID'];
5219
+ };
5198
5220
  export declare type IssueDevOpsBranchDetails = {
5199
5221
  __typename?: 'IssueDevOpsBranchDetails';
5200
5222
  name: Scalars['String'];
@@ -10896,6 +10918,7 @@ export declare type NewCardParent = {
10896
10918
  export declare type Node = {
10897
10919
  id: Scalars['ID'];
10898
10920
  };
10921
+ export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
10899
10922
  export declare type OpsgenieAlertCountByPriority = {
10900
10923
  __typename?: 'OpsgenieAlertCountByPriority';
10901
10924
  priority?: Maybe<Scalars['String']>;
@@ -13351,6 +13374,16 @@ export declare type Storage = {
13351
13374
  hosted?: Maybe<HostedStorage>;
13352
13375
  remotes?: Maybe<Array<Remote>>;
13353
13376
  };
13377
+ export declare type Subscription = {
13378
+ __typename?: 'Subscription';
13379
+ onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
13380
+ };
13381
+ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
13382
+ cloudId: Scalars['ID'];
13383
+ accountId: Scalars['ID'];
13384
+ projectType?: JiraProjectType;
13385
+ filter: JiraProjectFilterInput;
13386
+ };
13354
13387
  export declare type SupportRequest = SupportRequestCommonRequest & {
13355
13388
  __typename?: 'SupportRequest';
13356
13389
  id: Scalars['ID'];