@forge/cli-shared 6.10.0-next.1 → 6.10.0-next.3

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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.10.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - aecaae3: Adding skeleton for build command
8
+
9
+ ## 6.10.0-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [615d023]
14
+ - @forge/manifest@9.2.0-next.1
15
+
3
16
  ## 6.10.0-next.1
4
17
 
5
18
  ### 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'];
@@ -1159,6 +1165,7 @@ export declare enum ApiGroup {
1159
1165
  ConfluenceUser = "CONFLUENCE_USER",
1160
1166
  ConfluenceV2 = "CONFLUENCE_V2",
1161
1167
  ContentPlatformApi = "CONTENT_PLATFORM_API",
1168
+ CsmAi = "CSM_AI",
1162
1169
  CustomerService = "CUSTOMER_SERVICE",
1163
1170
  DevopsAriGraph = "DEVOPS_ARI_GRAPH",
1164
1171
  DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
@@ -19694,6 +19701,7 @@ export declare type CreateAppDeploymentResponse = Payload & {
19694
19701
  };
19695
19702
  export declare type CreateAppDeploymentUrlInput = {
19696
19703
  appId: Scalars['ID']['input'];
19704
+ buildTag?: InputMaybe<Scalars['String']['input']>;
19697
19705
  };
19698
19706
  export declare type CreateAppDeploymentUrlResponse = Payload & {
19699
19707
  __typename?: 'CreateAppDeploymentUrlResponse';
@@ -20094,7 +20102,8 @@ export declare type CreateFaviconFilesPayload = Payload & {
20094
20102
  };
20095
20103
  export declare type CreateHostedResourceUploadUrlInput = {
20096
20104
  appId: Scalars['ID']['input'];
20097
- environmentKey: Scalars['String']['input'];
20105
+ buildTag?: InputMaybe<Scalars['String']['input']>;
20106
+ environmentKey?: InputMaybe<Scalars['String']['input']>;
20098
20107
  resourceKeys: Array<Scalars['String']['input']>;
20099
20108
  };
20100
20109
  export declare type CreateHostedResourceUploadUrlPayload = Payload & {
@@ -45034,7 +45043,7 @@ export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseEdge
45034
45043
  lastUpdated: Scalars['DateTime']['output'];
45035
45044
  node?: Maybe<GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion>;
45036
45045
  };
45037
- export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink;
45046
+ export declare type GraphStoreSimplifiedGraphEntityReplicates3pEntityInverseUnion = DevOpsDocument | ExternalDocument | ExternalRemoteLink | ExternalVideo;
45038
45047
  export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
45039
45048
  __typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
45040
45049
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
@@ -57729,6 +57738,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
57729
57738
  errors?: Maybe<Array<MutationError>>;
57730
57739
  success: Scalars['Boolean']['output'];
57731
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
+ };
57732
57752
  export declare type JiraCreateJourneyConfigurationInput = {
57733
57753
  createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
57734
57754
  name: Scalars['String']['input'];
@@ -79860,6 +79880,7 @@ export declare type Mutation = {
79860
79880
  jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
79861
79881
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
79862
79882
  jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
79883
+ jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
79863
79884
  jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
79864
79885
  jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
79865
79886
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
@@ -81204,6 +81225,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
81204
81225
  export declare type MutationJira_CreateCustomBackgroundArgs = {
81205
81226
  input: JiraCreateCustomBackgroundInput;
81206
81227
  };
81228
+ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
81229
+ cloudId: Scalars['ID']['input'];
81230
+ input: JiraCreateGlobalCustomFieldInput;
81231
+ };
81207
81232
  export declare type MutationJira_DeleteCustomBackgroundArgs = {
81208
81233
  input: JiraProjectDeleteCustomBackgroundInput;
81209
81234
  };
@@ -84436,6 +84461,7 @@ export declare type Query = {
84436
84461
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
84437
84462
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
84438
84463
  agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
84464
+ aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
84439
84465
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
84440
84466
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
84441
84467
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
@@ -84711,7 +84737,6 @@ export declare type Query = {
84711
84737
  confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
84712
84738
  confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
84713
84739
  confluence_contents?: Maybe<Array<Maybe<Content>>>;
84714
- confluence_contentsForSimpleIds?: Maybe<Array<Maybe<Content>>>;
84715
84740
  confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
84716
84741
  confluence_empty?: Maybe<Scalars['String']['output']>;
84717
84742
  confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
@@ -85173,6 +85198,9 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
85173
85198
  cloudId: Scalars['String']['input'];
85174
85199
  input: AgentStudioSuggestConversationStartersInput;
85175
85200
  };
85201
+ export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
85202
+ projectAri: Scalars['ID']['input'];
85203
+ };
85176
85204
  export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
85177
85205
  projectAri: Scalars['ID']['input'];
85178
85206
  };
@@ -86361,10 +86389,6 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
86361
86389
  export declare type QueryConfluence_ContentsArgs = {
86362
86390
  ids: Array<InputMaybe<Scalars['ID']['input']>>;
86363
86391
  };
86364
- export declare type QueryConfluence_ContentsForSimpleIdsArgs = {
86365
- cloudId: Scalars['ID']['input'];
86366
- ids: Array<InputMaybe<Scalars['ID']['input']>>;
86367
- };
86368
86392
  export declare type QueryConfluence_DeletedUserAccountIdsArgs = {
86369
86393
  cloudId: Scalars['ID']['input'];
86370
86394
  spaceKey: Scalars['String']['input'];