@forge/cli-shared 3.22.0-next.3 → 3.22.0-next.4

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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.22.0-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - b2198bc5: Updated the webtrigger CLI command to list site installations to choose from instead of requiring the explicit installation id
8
+ - Updated dependencies [949b52dd]
9
+ - @forge/manifest@5.2.1-next.2
10
+
3
11
  ## 3.22.0-next.3
4
12
 
5
13
  ### Minor Changes
@@ -695,6 +695,7 @@ export declare enum ApiGroup {
695
695
  export type App = {
696
696
  __typename?: 'App';
697
697
  avatarFileId?: Maybe<Scalars['String']['output']>;
698
+ avatarUrl?: Maybe<Scalars['String']['output']>;
698
699
  contactLink?: Maybe<Scalars['String']['output']>;
699
700
  createdBy?: Maybe<User>;
700
701
  deployments?: Maybe<AppDeploymentConnection>;
@@ -10356,6 +10357,7 @@ export type ForgeMetricsQuery = {
10356
10357
  apiRequestLatency: ForgeMetricsApiRequestLatencyResult;
10357
10358
  apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
10358
10359
  appId: Scalars['ID']['output'];
10360
+ appMetrics: ForgeMetricsOtlpResult;
10359
10361
  errors: ForgeMetricsErrorsResult;
10360
10362
  errorsValue: ForgeMetricsErrorsValueResult;
10361
10363
  exportMetrics: ForgeMetricsOtlpResult;
@@ -10376,6 +10378,9 @@ export type ForgeMetricsQueryApiRequestLatencyArgs = {
10376
10378
  export type ForgeMetricsQueryApiRequestLatencyValueArgs = {
10377
10379
  query: ForgeMetricsApiRequestQueryInput;
10378
10380
  };
10381
+ export type ForgeMetricsQueryAppMetricsArgs = {
10382
+ query: ForgeMetricsOtlpQueryInput;
10383
+ };
10379
10384
  export type ForgeMetricsQueryErrorsArgs = {
10380
10385
  query: ForgeMetricsQueryInput;
10381
10386
  };
@@ -19894,6 +19899,7 @@ export declare enum JiraCascadingSelectOptionType {
19894
19899
  }
19895
19900
  export type JiraCascadingSelectOptionsFilter = {
19896
19901
  optionType: JiraCascadingSelectOptionType;
19902
+ parentOptionId?: InputMaybe<Scalars['ID']['input']>;
19897
19903
  parentOptionName?: InputMaybe<Scalars['String']['input']>;
19898
19904
  };
19899
19905
  export type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
@@ -22425,6 +22431,7 @@ export declare enum JiraJqlAutocompleteType {
22425
22431
  Sprint = "SPRINT",
22426
22432
  Status = "STATUS",
22427
22433
  Statuscategory = "STATUSCATEGORY",
22434
+ TicketCategory = "TICKET_CATEGORY",
22428
22435
  User = "USER",
22429
22436
  Version = "VERSION"
22430
22437
  }
@@ -37306,6 +37313,7 @@ export type TrelloList = Node & {
37306
37313
  board?: Maybe<TrelloBoard>;
37307
37314
  cards?: Maybe<TrelloCardConnection>;
37308
37315
  closed: Scalars['Boolean']['output'];
37316
+ color?: Maybe<Scalars['String']['output']>;
37309
37317
  creationMethod: Scalars['String']['output'];
37310
37318
  id: Scalars['ID']['output'];
37311
37319
  limits?: Maybe<TrelloListLimits>;
@@ -37313,7 +37321,6 @@ export type TrelloList = Node & {
37313
37321
  objectId: Scalars['ID']['output'];
37314
37322
  position: Scalars['Float']['output'];
37315
37323
  softLimit?: Maybe<Scalars['Int']['output']>;
37316
- status?: Maybe<Scalars['String']['output']>;
37317
37324
  viewer?: Maybe<TrelloListViewer>;
37318
37325
  };
37319
37326
  export type TrelloListCardsArgs = {