@forge/cli-shared 3.23.3-next.5 → 3.23.3-next.6

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,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.3-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 6ab8727: Bumping dependencies via Renovate:
8
+
9
+ - @graphql-codegen/add
10
+ - @graphql-codegen/cli
11
+ - @graphql-codegen/typescript
12
+ - @graphql-codegen/typescript-operations
13
+
3
14
  ## 3.23.3-next.5
4
15
 
5
16
  ### Patch Changes
@@ -26445,6 +26445,7 @@ export declare enum JiraConfigStateConfigurationStatus {
26445
26445
  Configured = "CONFIGURED",
26446
26446
  NotConfigured = "NOT_CONFIGURED",
26447
26447
  NotSet = "NOT_SET",
26448
+ PartiallyConfigured = "PARTIALLY_CONFIGURED",
26448
26449
  ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED",
26449
26450
  ProviderActionNotConfigured = "PROVIDER_ACTION_NOT_CONFIGURED"
26450
26451
  }
@@ -28565,6 +28566,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
28565
28566
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
28566
28567
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
28567
28568
  JiraDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
28569
+ JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
28568
28570
  JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
28569
28571
  JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
28570
28572
  JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
@@ -42987,10 +42989,14 @@ export declare type TestingActivityItem = Node & {
42987
42989
  export declare type TestingSubscription = {
42988
42990
  __typename?: 'TestingSubscription';
42989
42991
  onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
42992
+ onTestingActivityItemUpdateEnrichJira?: Maybe<TestingActivityItem>;
42990
42993
  };
42991
42994
  export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
42992
42995
  issueId: Scalars['ID']['input'];
42993
42996
  };
42997
+ export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
42998
+ issueId: Scalars['ID']['input'];
42999
+ };
42994
43000
  export declare type ThirdPartyDetails = {
42995
43001
  __typename?: 'ThirdPartyDetails';
42996
43002
  link: Scalars['String']['output'];