@forge/cli-shared 3.16.0-next.22 → 3.16.0-next.23

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.16.0-next.23
4
+
5
+ ### Patch Changes
6
+
7
+ - 7d59b43b: Bumping dependencies via Renovate:
8
+
9
+ - conf
10
+
3
11
  ## 3.16.0-next.22
4
12
 
5
13
  ### Patch Changes
@@ -11663,6 +11663,34 @@ export type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
11663
11663
  success: Scalars['Boolean'];
11664
11664
  errors?: Maybe<Array<MutationError>>;
11665
11665
  };
11666
+ export type JiraEntityProperty = {
11667
+ id: Scalars['ID'];
11668
+ propertyKey?: Maybe<Scalars['String']>;
11669
+ };
11670
+ export type JiraEntityPropertyBoolean = JiraEntityProperty & Node & {
11671
+ __typename?: 'JiraEntityPropertyBoolean';
11672
+ id: Scalars['ID'];
11673
+ propertyKey?: Maybe<Scalars['String']>;
11674
+ booleanValue?: Maybe<Scalars['Boolean']>;
11675
+ };
11676
+ export type JiraEntityPropertyInt = JiraEntityProperty & Node & {
11677
+ __typename?: 'JiraEntityPropertyInt';
11678
+ id: Scalars['ID'];
11679
+ propertyKey?: Maybe<Scalars['String']>;
11680
+ intValue?: Maybe<Scalars['Int']>;
11681
+ };
11682
+ export type JiraEntityPropertyJson = JiraEntityProperty & Node & {
11683
+ __typename?: 'JiraEntityPropertyJSON';
11684
+ id: Scalars['ID'];
11685
+ propertyKey?: Maybe<Scalars['String']>;
11686
+ jsonValue?: Maybe<Scalars['JSON']>;
11687
+ };
11688
+ export type JiraEntityPropertyString = JiraEntityProperty & Node & {
11689
+ __typename?: 'JiraEntityPropertyString';
11690
+ id: Scalars['ID'];
11691
+ propertyKey?: Maybe<Scalars['String']>;
11692
+ stringValue?: Maybe<Scalars['String']>;
11693
+ };
11666
11694
  export type JiraEpic = {
11667
11695
  __typename?: 'JiraEpic';
11668
11696
  id: Scalars['ID'];
@@ -15247,6 +15275,10 @@ export type JiraQuery = {
15247
15275
  userPreferences?: Maybe<JiraUserPreferences>;
15248
15276
  jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
15249
15277
  timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
15278
+ stringUserProperty?: Maybe<JiraEntityPropertyString>;
15279
+ booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
15280
+ integerUserProperty?: Maybe<JiraEntityPropertyInt>;
15281
+ jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
15250
15282
  filter?: Maybe<JiraFilter>;
15251
15283
  favouriteFilters?: Maybe<JiraFilterConnection>;
15252
15284
  systemFilters?: Maybe<JiraSystemFilterConnection>;
@@ -15462,6 +15494,26 @@ export type JiraQueryJsmProjectTeamTypeArgs = {
15462
15494
  export type JiraQueryTimeTrackingSettingsArgs = {
15463
15495
  cloudId: Scalars['ID'];
15464
15496
  };
15497
+ export type JiraQueryStringUserPropertyArgs = {
15498
+ cloudId: Scalars['ID'];
15499
+ accountId?: Maybe<Scalars['ID']>;
15500
+ propertyKey: Scalars['String'];
15501
+ };
15502
+ export type JiraQueryBooleanUserPropertyArgs = {
15503
+ cloudId: Scalars['ID'];
15504
+ accountId?: Maybe<Scalars['ID']>;
15505
+ propertyKey: Scalars['String'];
15506
+ };
15507
+ export type JiraQueryIntegerUserPropertyArgs = {
15508
+ cloudId: Scalars['ID'];
15509
+ accountId?: Maybe<Scalars['ID']>;
15510
+ propertyKey: Scalars['String'];
15511
+ };
15512
+ export type JiraQueryJsonUserPropertyArgs = {
15513
+ cloudId: Scalars['ID'];
15514
+ accountId?: Maybe<Scalars['ID']>;
15515
+ propertyKey: Scalars['String'];
15516
+ };
15465
15517
  export type JiraQueryFilterArgs = {
15466
15518
  id: Scalars['ID'];
15467
15519
  };