@forge/cli-shared 6.4.0-next.4 → 6.4.0-next.5
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 +6 -0
- package/out/graphql/graphql-types.d.ts +44 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +26 -20
- package/out/shared/error-handling.d.ts +0 -2
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +0 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -135,6 +135,7 @@ export declare type ActionsAction = {
|
|
|
135
135
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
136
136
|
auth: Array<ActionsAuthType>;
|
|
137
137
|
description?: Maybe<ActionsDescription>;
|
|
138
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
138
139
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
139
140
|
icon?: Maybe<Scalars['String']['output']>;
|
|
140
141
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -168,6 +169,7 @@ export declare type ActionsActionType = {
|
|
|
168
169
|
contextEntityType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
169
170
|
description?: Maybe<ActionsDescription>;
|
|
170
171
|
displayName: Scalars['String']['output'];
|
|
172
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
171
173
|
entityProperty?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
172
174
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
173
175
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -221,6 +223,9 @@ export declare enum ActionsAuthType {
|
|
|
221
223
|
ThreeLegged = "THREE_LEGGED",
|
|
222
224
|
TwoLegged = "TWO_LEGGED"
|
|
223
225
|
}
|
|
226
|
+
export declare enum ActionsCapabilityType {
|
|
227
|
+
Automation = "AUTOMATION"
|
|
228
|
+
}
|
|
224
229
|
export declare type ActionsDescription = {
|
|
225
230
|
__typename?: 'ActionsDescription';
|
|
226
231
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -38025,6 +38030,7 @@ export declare type HelpCenter = Node & {
|
|
|
38025
38030
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
38026
38031
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
38027
38032
|
name?: Maybe<HelpCenterName>;
|
|
38033
|
+
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
38028
38034
|
portals?: Maybe<HelpCenterPortals>;
|
|
38029
38035
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
38030
38036
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
@@ -38090,6 +38096,7 @@ export declare type HelpCenterBranding = {
|
|
|
38090
38096
|
__typename?: 'HelpCenterBranding';
|
|
38091
38097
|
banner?: Maybe<HelpCenterBanner>;
|
|
38092
38098
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
38099
|
+
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
38093
38100
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
38094
38101
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
38095
38102
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -46269,6 +46276,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
46269
46276
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
46270
46277
|
status?: Maybe<JiraJourneyStatus>;
|
|
46271
46278
|
trigger?: Maybe<JiraJourneyTrigger>;
|
|
46279
|
+
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
46272
46280
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
46273
46281
|
updatedBy?: Maybe<User>;
|
|
46274
46282
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -46295,6 +46303,13 @@ export declare type JiraJourneyParentIssueInput = {
|
|
|
46295
46303
|
type: JiraJourneyParentIssueType;
|
|
46296
46304
|
value: Scalars['String']['input'];
|
|
46297
46305
|
};
|
|
46306
|
+
export declare type JiraJourneyParentIssueTriggerConfiguration = {
|
|
46307
|
+
__typename?: 'JiraJourneyParentIssueTriggerConfiguration';
|
|
46308
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46309
|
+
};
|
|
46310
|
+
export declare type JiraJourneyParentIssueTriggerConfigurationInput = {
|
|
46311
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46312
|
+
};
|
|
46298
46313
|
export declare enum JiraJourneyParentIssueType {
|
|
46299
46314
|
Request = "REQUEST"
|
|
46300
46315
|
}
|
|
@@ -46309,12 +46324,27 @@ export declare type JiraJourneyTrigger = {
|
|
|
46309
46324
|
__typename?: 'JiraJourneyTrigger';
|
|
46310
46325
|
type: JiraJourneyTriggerType;
|
|
46311
46326
|
};
|
|
46327
|
+
export declare type JiraJourneyTriggerConfiguration = JiraJourneyParentIssueTriggerConfiguration | JiraJourneyWorkdayIntegrationTriggerConfiguration;
|
|
46328
|
+
export declare type JiraJourneyTriggerConfigurationInput = {
|
|
46329
|
+
parentIssueTriggerConfiguration?: InputMaybe<JiraJourneyParentIssueTriggerConfigurationInput>;
|
|
46330
|
+
workdayIntegrationTriggerConfiguration?: InputMaybe<JiraJourneyWorkdayIntegrationTriggerConfigurationInput>;
|
|
46331
|
+
};
|
|
46312
46332
|
export declare type JiraJourneyTriggerInput = {
|
|
46313
46333
|
type: JiraJourneyTriggerType;
|
|
46314
46334
|
};
|
|
46315
46335
|
export declare enum JiraJourneyTriggerType {
|
|
46316
|
-
ParentIssueCreated = "PARENT_ISSUE_CREATED"
|
|
46336
|
+
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
46337
|
+
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
46317
46338
|
}
|
|
46339
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
46340
|
+
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
46341
|
+
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
46342
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46343
|
+
};
|
|
46344
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
46345
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
46346
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46347
|
+
};
|
|
46318
46348
|
export declare enum JiraJqlAutocompleteType {
|
|
46319
46349
|
Basic = "BASIC",
|
|
46320
46350
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -47475,6 +47505,7 @@ export declare type JiraMutation = {
|
|
|
47475
47505
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
47476
47506
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47477
47507
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47508
|
+
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47478
47509
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
47479
47510
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
47480
47511
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -47916,6 +47947,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
47916
47947
|
cloudId: Scalars['ID']['input'];
|
|
47917
47948
|
input: JiraUpdateJourneyConfigurationInput;
|
|
47918
47949
|
};
|
|
47950
|
+
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
47951
|
+
cloudId: Scalars['ID']['input'];
|
|
47952
|
+
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
47953
|
+
};
|
|
47919
47954
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
47920
47955
|
input: JiraVersionUpdateMutationInput;
|
|
47921
47956
|
};
|
|
@@ -49048,6 +49083,7 @@ export declare type JiraProject = Node & {
|
|
|
49048
49083
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49049
49084
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49050
49085
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
49086
|
+
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49051
49087
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
49052
49088
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
49053
49089
|
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
@@ -53011,6 +53047,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
53011
53047
|
export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
53012
53048
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53013
53049
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
53050
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
53014
53051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53015
53052
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53016
53053
|
};
|
|
@@ -53948,6 +53985,11 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
53948
53985
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
53949
53986
|
success: Scalars['Boolean']['output'];
|
|
53950
53987
|
};
|
|
53988
|
+
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
53989
|
+
id: Scalars['ID']['input'];
|
|
53990
|
+
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
53991
|
+
version: Scalars['Long']['input'];
|
|
53992
|
+
};
|
|
53951
53993
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
53952
53994
|
id: Scalars['ID']['input'];
|
|
53953
53995
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -55967,6 +56009,7 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
55967
56009
|
};
|
|
55968
56010
|
export declare enum JsmChatWebConversationActions {
|
|
55969
56011
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
56012
|
+
DisableInput = "DISABLE_INPUT",
|
|
55970
56013
|
RedirectToSearch = "REDIRECT_TO_SEARCH"
|
|
55971
56014
|
}
|
|
55972
56015
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|