@forge/cli-shared 3.10.0 → 3.10.1-next.0
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
|
@@ -9277,6 +9277,10 @@ export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9277
9277
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9278
9278
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9279
9279
|
};
|
|
9280
|
+
export declare type JiraCcMessage = {
|
|
9281
|
+
role: Scalars['String'];
|
|
9282
|
+
content: Scalars['String'];
|
|
9283
|
+
};
|
|
9280
9284
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9281
9285
|
__typename?: 'JiraCMDBField';
|
|
9282
9286
|
id: Scalars['ID'];
|
|
@@ -11446,6 +11450,10 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
11446
11450
|
Absolute = "ABSOLUTE",
|
|
11447
11451
|
Relative = "RELATIVE"
|
|
11448
11452
|
}
|
|
11453
|
+
export declare enum JiraIteration {
|
|
11454
|
+
Iteration_1 = "ITERATION_1",
|
|
11455
|
+
Iteration_2 = "ITERATION_2"
|
|
11456
|
+
}
|
|
11449
11457
|
export declare enum JiraJqlBuilderSearchMode {
|
|
11450
11458
|
Basic = "BASIC",
|
|
11451
11459
|
Advanced = "ADVANCED"
|
|
@@ -11456,6 +11464,12 @@ export declare type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
|
11456
11464
|
errors?: Maybe<Array<MutationError>>;
|
|
11457
11465
|
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
11458
11466
|
};
|
|
11467
|
+
export declare type JiraJqlFromNaturalLanguage = {
|
|
11468
|
+
__typename?: 'JiraJQLFromNaturalLanguage';
|
|
11469
|
+
generatedJQL?: Maybe<Scalars['String']>;
|
|
11470
|
+
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
11471
|
+
};
|
|
11472
|
+
export declare type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
11459
11473
|
export declare enum JiraJqlAutocompleteType {
|
|
11460
11474
|
None = "NONE",
|
|
11461
11475
|
Component = "COMPONENT",
|
|
@@ -11632,8 +11646,8 @@ export declare type JiraJqlFunction = {
|
|
|
11632
11646
|
};
|
|
11633
11647
|
export declare type JiraJqlFunctionProcessingStatus = {
|
|
11634
11648
|
__typename?: 'JiraJqlFunctionProcessingStatus';
|
|
11635
|
-
status
|
|
11636
|
-
function
|
|
11649
|
+
status: JiraJqlFunctionStatus;
|
|
11650
|
+
function: Scalars['String'];
|
|
11637
11651
|
app?: Maybe<Scalars['String']>;
|
|
11638
11652
|
};
|
|
11639
11653
|
export declare enum JiraJqlFunctionStatus {
|
|
@@ -12366,6 +12380,11 @@ export declare type JiraMutationUpdateProjectShortcutArgs = {
|
|
|
12366
12380
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
12367
12381
|
input: JiraDeleteShortcutInput;
|
|
12368
12382
|
};
|
|
12383
|
+
export declare type JiraNaturalLanguageToJqlInput = {
|
|
12384
|
+
naturalLanguageInput: Scalars['String'];
|
|
12385
|
+
iteration?: Maybe<JiraIteration>;
|
|
12386
|
+
initMessages?: Maybe<Array<JiraCcMessage>>;
|
|
12387
|
+
};
|
|
12369
12388
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12370
12389
|
__typename?: 'JiraNumberField';
|
|
12371
12390
|
id: Scalars['ID'];
|
|
@@ -13386,6 +13405,7 @@ export declare type JiraQuery = {
|
|
|
13386
13405
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13387
13406
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13388
13407
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13408
|
+
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
13389
13409
|
permission?: Maybe<JiraPermission>;
|
|
13390
13410
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
13391
13411
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -13551,6 +13571,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13551
13571
|
cloudId: Scalars['ID'];
|
|
13552
13572
|
jql: Scalars['String'];
|
|
13553
13573
|
};
|
|
13574
|
+
export declare type JiraQueryNaturalLanguageToJqlArgs = {
|
|
13575
|
+
cloudId: Scalars['ID'];
|
|
13576
|
+
input: JiraNaturalLanguageToJqlInput;
|
|
13577
|
+
};
|
|
13554
13578
|
export declare type JiraQueryPermissionArgs = {
|
|
13555
13579
|
cloudId: Scalars['ID'];
|
|
13556
13580
|
type: JiraPermissionType;
|
|
@@ -15572,6 +15596,7 @@ export declare type JiraVersion = Node & {
|
|
|
15572
15596
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15573
15597
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
15574
15598
|
contributors?: Maybe<JiraVersionContributorConnection>;
|
|
15599
|
+
driver?: Maybe<User>;
|
|
15575
15600
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15576
15601
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15577
15602
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -20859,6 +20884,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
20859
20884
|
export declare enum SearchResultType {
|
|
20860
20885
|
Page = "page",
|
|
20861
20886
|
Blogpost = "blogpost",
|
|
20887
|
+
Whiteboard = "whiteboard",
|
|
20862
20888
|
Space = "space",
|
|
20863
20889
|
Attachment = "attachment",
|
|
20864
20890
|
Comment = "comment",
|
|
@@ -23578,6 +23604,7 @@ export declare type VirtualAgentChannelConfig = {
|
|
|
23578
23604
|
triage?: Maybe<VirtualAgentSlackChannel>;
|
|
23579
23605
|
test?: Maybe<VirtualAgentSlackChannel>;
|
|
23580
23606
|
production?: Maybe<Array<Maybe<VirtualAgentSlackChannel>>>;
|
|
23607
|
+
jsmChatContext?: Maybe<VirtualAgentJsmChatContext>;
|
|
23581
23608
|
};
|
|
23582
23609
|
export declare type VirtualAgentConfiguration = Node & {
|
|
23583
23610
|
__typename?: 'VirtualAgentConfiguration';
|
|
@@ -23754,6 +23781,12 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
23754
23781
|
resolutionRate?: Maybe<Scalars['Float']>;
|
|
23755
23782
|
averageCsat?: Maybe<Scalars['Float']>;
|
|
23756
23783
|
};
|
|
23784
|
+
export declare type VirtualAgentJsmChatContext = {
|
|
23785
|
+
__typename?: 'VirtualAgentJSMChatContext';
|
|
23786
|
+
connectivityState: Scalars['String'];
|
|
23787
|
+
slackSetupLink?: Maybe<Scalars['String']>;
|
|
23788
|
+
errorMessage?: Maybe<Scalars['String']>;
|
|
23789
|
+
};
|
|
23757
23790
|
export declare type VirtualAgentMutationApi = {
|
|
23758
23791
|
__typename?: 'VirtualAgentMutationApi';
|
|
23759
23792
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|