@forge/cli-shared 6.10.0-next.2 → 6.10.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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.10.0-next.4
4
+
5
+ ### Minor Changes
6
+
7
+ - 3e82523: Added CLI warnings
8
+
9
+ ## 6.10.0-next.3
10
+
11
+ ### Patch Changes
12
+
13
+ - aecaae3: Adding skeleton for build command
14
+
3
15
  ## 6.10.0-next.2
4
16
 
5
17
  ### Patch Changes
@@ -995,6 +995,12 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
995
995
  errors?: Maybe<Array<MutationError>>;
996
996
  success: Scalars['Boolean']['output'];
997
997
  };
998
+ export declare type AiCoreApiVsaQuestions = {
999
+ __typename?: 'AiCoreApiVSAQuestions';
1000
+ projectAri: Scalars['ID']['output'];
1001
+ questions: Array<Maybe<Scalars['String']['output']>>;
1002
+ };
1003
+ export declare type AiCoreApiVsaQuestionsResult = AiCoreApiVsaQuestions | QueryError;
998
1004
  export declare type AiCoreApiVsaReporting = {
999
1005
  __typename?: 'AiCoreApiVSAReporting';
1000
1006
  projectAri: Scalars['ID']['output'];
@@ -45037,7 +45043,7 @@ export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge
45037
45043
  lastUpdated: Scalars['DateTime']['output'];
45038
45044
  node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
45039
45045
  };
45040
- export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
45046
+ export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink | ExternalVideo;
45041
45047
  export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
45042
45048
  __typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
45043
45049
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
@@ -57732,6 +57738,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
57732
57738
  errors?: Maybe<Array<MutationError>>;
57733
57739
  success: Scalars['Boolean']['output'];
57734
57740
  };
57741
+ export declare type JiraCreateGlobalCustomFieldInput = {
57742
+ description?: InputMaybe<Scalars['String']['input']>;
57743
+ name: Scalars['String']['input'];
57744
+ type: JiraConfigFieldType;
57745
+ };
57746
+ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
57747
+ __typename?: 'JiraCreateGlobalCustomFieldPayload';
57748
+ errors?: Maybe<Array<MutationError>>;
57749
+ field?: Maybe<JiraIssueFieldConfig>;
57750
+ success: Scalars['Boolean']['output'];
57751
+ };
57735
57752
  export declare type JiraCreateJourneyConfigurationInput = {
57736
57753
  createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
57737
57754
  name: Scalars['String']['input'];
@@ -79863,6 +79880,7 @@ export declare type Mutation = {
79863
79880
  jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
79864
79881
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
79865
79882
  jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
79883
+ jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
79866
79884
  jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
79867
79885
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
79868
79886
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
@@ -81207,6 +81225,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
81207
81225
  export declare type MutationJira_CreateCustomBackgroundArgs = {
81208
81226
  input: JiraCreateCustomBackgroundInput;
81209
81227
  };
81228
+ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
81229
+ cloudId: Scalars['ID']['input'];
81230
+ input: JiraCreateGlobalCustomFieldInput;
81231
+ };
81210
81232
  export declare type MutationJira_DeleteCustomBackgroundArgs = {
81211
81233
  input: JiraProjectDeleteCustomBackgroundInput;
81212
81234
  };
@@ -84439,6 +84461,7 @@ export declare type Query = {
84439
84461
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
84440
84462
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
84441
84463
  agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
84464
+ aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
84442
84465
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
84443
84466
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
84444
84467
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
@@ -84714,7 +84737,6 @@ export declare type Query = {
84714
84737
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
84715
84738
  confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
84716
84739
  confluence_contents?: Maybe<Array<Maybe<Content>>>;
84717
- confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
84718
84740
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
84719
84741
  confluence_empty?: Maybe<Scalars['String']['output']>;
84720
84742
  confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
@@ -85176,6 +85198,9 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
85176
85198
  cloudId: Scalars['String']['input'];
85177
85199
  input: AgentStudioSuggestConversationStartersInput;
85178
85200
  };
85201
+ export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
85202
+ projectAri: Scalars['ID']['input'];
85203
+ };
85179
85204
  export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
85180
85205
  projectAri: Scalars['ID']['input'];
85181
85206
  };
@@ -86364,10 +86389,6 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
86364
86389
  export declare type QueryConfluence_ContentsArgs = {
86365
86390
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
86366
86391
  };
86367
- export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
86368
- cloudId: Scalars['ID']['input'];
86369
- ids: Array<InputMaybe<Scalars['ID']['input']>>;
86370
- };
86371
86392
  export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
86372
86393
  cloudId: Scalars['ID']['input'];
86373
86394
  spaceKey: Scalars['String']['input'];