@forge/cli-shared 3.15.1-next.1 → 3.15.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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.15.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ddfa205: Bumping dependencies via Renovate:
8
+
9
+ - @types/fs-extra
10
+
11
+ - 4b13747: Bumping dependencies via Renovate:
12
+
13
+ - @sentry/node
14
+
3
15
  ## 3.15.1-next.1
4
16
 
5
17
  ### Patch Changes
@@ -8272,6 +8272,7 @@ export declare type Extension = {
8272
8272
  type: Scalars['String'];
8273
8273
  key: Scalars['String'];
8274
8274
  appOwner?: Maybe<User>;
8275
+ name?: Maybe<Scalars['String']>;
8275
8276
  appVersion?: Maybe<Scalars['String']>;
8276
8277
  properties: Scalars['JSON'];
8277
8278
  oauthClientId: Scalars['ID'];
@@ -21537,6 +21538,10 @@ export declare type RankingDiffPayload = {
21537
21538
  export declare enum RateLimitingCurrency {
21538
21539
  TestingService = "TESTING_SERVICE",
21539
21540
  TrelloCurrency = "TRELLO_CURRENCY",
21541
+ DevopsToolRelationshipsReadCurrency = "DEVOPS_TOOL_RELATIONSHIPS_READ_CURRENCY",
21542
+ DevopsToolRelationshipsWriteCurrency = "DEVOPS_TOOL_RELATIONSHIPS_WRITE_CURRENCY",
21543
+ CannedResponseQueryCurrency = "CANNED_RESPONSE_QUERY_CURRENCY",
21544
+ CannedResponseMutationCurrency = "CANNED_RESPONSE_MUTATION_CURRENCY",
21540
21545
  DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
21541
21546
  DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
21542
21547
  NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
@@ -25528,8 +25533,13 @@ export declare type TrelloChecklistEdge = {
25528
25533
  cursor: Scalars['String'];
25529
25534
  node: TrelloChecklist;
25530
25535
  };
25536
+ export declare type TrelloCustomField = {
25537
+ __typename?: 'TrelloCustomField';
25538
+ objectId: Scalars['ID'];
25539
+ };
25531
25540
  export declare type TrelloCustomFieldItem = {
25532
25541
  __typename?: 'TrelloCustomFieldItem';
25542
+ customField?: Maybe<TrelloCustomField>;
25533
25543
  model?: Maybe<TrelloCard>;
25534
25544
  objectId: Scalars['ID'];
25535
25545
  value?: Maybe<TrelloCustomFieldItemValueInfo>;