@forge/cli-shared 8.5.1-next.0 → 8.5.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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - e0b9806: Remove spike code
8
+
3
9
  ## 8.5.1-next.0
4
10
 
5
11
  ### Patch Changes
@@ -9056,6 +9056,19 @@ export declare enum CompassCampaignQuerySortOrder {
9056
9056
  Desc = "DESC"
9057
9057
  }
9058
9058
  export declare type CompassCampaignResult = CompassCampaign | QueryError;
9059
+ export declare type CompassCatalogBootstrap = {
9060
+ __typename?: 'CompassCatalogBootstrap';
9061
+ id: Scalars['ID']['output'];
9062
+ source: Scalars['String']['output'];
9063
+ status: CompassCatalogBootstrapStatus;
9064
+ };
9065
+ export declare type CompassCatalogBootstrapResult = CompassCatalogBootstrap | QueryError;
9066
+ export declare enum CompassCatalogBootstrapStatus {
9067
+ Complete = "COMPLETE",
9068
+ Error = "ERROR",
9069
+ Pending = "PENDING",
9070
+ Unknown = "UNKNOWN"
9071
+ }
9059
9072
  export declare type CompassCatalogMutationApi = {
9060
9073
  __typename?: 'CompassCatalogMutationApi';
9061
9074
  acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
@@ -9447,6 +9460,7 @@ export declare type CompassCatalogQueryApi = {
9447
9460
  attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
9448
9461
  campaign?: Maybe<CompassCampaignResult>;
9449
9462
  campaigns?: Maybe<CompassCampaignConnection>;
9463
+ catalogBootstrap?: Maybe<CompassCatalogBootstrapResult>;
9450
9464
  component?: Maybe<CompassComponentResult>;
9451
9465
  componentByExternalAlias?: Maybe<CompassComponentResult>;
9452
9466
  componentByReference?: Maybe<CompassComponentResult>;
@@ -9509,6 +9523,9 @@ export declare type CompassCatalogQueryApiCampaignsArgs = {
9509
9523
  first?: InputMaybe<Scalars['Int']['input']>;
9510
9524
  query?: InputMaybe<CompassCampaignQuery>;
9511
9525
  };
9526
+ export declare type CompassCatalogQueryApiCatalogBootstrapArgs = {
9527
+ cloudId: Scalars['ID']['input'];
9528
+ };
9512
9529
  export declare type CompassCatalogQueryApiComponentArgs = {
9513
9530
  id: Scalars['ID']['input'];
9514
9531
  };
@@ -61839,6 +61856,14 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
61839
61856
  first?: InputMaybe<Scalars['Int']['input']>;
61840
61857
  last?: InputMaybe<Scalars['Int']['input']>;
61841
61858
  };
61859
+ export declare type JiraCmdbFieldInput = {
61860
+ bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
61861
+ cmdbObjects: Array<JiraCmdbInput>;
61862
+ fieldId: Scalars['ID']['input'];
61863
+ };
61864
+ export declare type JiraCmdbInput = {
61865
+ cmdbObjectGlobalId: Scalars['ID']['input'];
61866
+ };
61842
61867
  export declare type JiraCalendar = {
61843
61868
  __typename?: 'JiraCalendar';
61844
61869
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
@@ -66958,6 +66983,7 @@ export declare type JiraIssueFieldsInput = {
66958
66983
  atlassianTeamFields?: InputMaybe<Array<JiraAtlassianTeamFieldInput>>;
66959
66984
  cascadingSelectFields?: InputMaybe<Array<JiraCascadingSelectFieldInput>>;
66960
66985
  clearableNumberFields?: InputMaybe<Array<JiraClearableNumberFieldInput>>;
66986
+ cmdbFields?: InputMaybe<Array<JiraCmdbFieldInput>>;
66961
66987
  colorFields?: InputMaybe<Array<JiraColorFieldInput>>;
66962
66988
  datePickerFields?: InputMaybe<Array<JiraDateFieldInput>>;
66963
66989
  dateTimePickerFields?: InputMaybe<Array<JiraDateTimeFieldInput>>;
@@ -82023,6 +82049,7 @@ export declare type KnowledgeDiscoveryZeroQuery = {
82023
82049
  };
82024
82050
  export declare enum KnowledgeDiscoveryZeroQueryType {
82025
82051
  JiraNlq = "JIRA_NLQ",
82052
+ JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
82026
82053
  RelatedQuestion = "RELATED_QUESTION",
82027
82054
  WhoIs = "WHO_IS"
82028
82055
  }