@forge/cli-shared 8.17.0-next.1 → 8.17.0-next.2
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
|
@@ -4423,6 +4423,7 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
4423
4423
|
Generating = "GENERATING",
|
|
4424
4424
|
PartialComplete = "PARTIAL_COMPLETE",
|
|
4425
4425
|
Pending = "PENDING",
|
|
4426
|
+
Postprocessing = "POSTPROCESSING",
|
|
4426
4427
|
Processing = "PROCESSING"
|
|
4427
4428
|
}
|
|
4428
4429
|
export declare type AgentStudioKnowledgeSource = {
|
|
@@ -107317,6 +107318,19 @@ export declare enum JiraFlagOperations {
|
|
|
107317
107318
|
Add = "ADD",
|
|
107318
107319
|
Remove = "REMOVE"
|
|
107319
107320
|
}
|
|
107321
|
+
export declare type JiraFlatOption = JiraOption | JiraParentOption;
|
|
107322
|
+
export declare type JiraFlatOptionConnection = {
|
|
107323
|
+
__typename?: 'JiraFlatOptionConnection';
|
|
107324
|
+
edges?: Maybe<Array<Maybe<JiraFlatOptionEdge>>>;
|
|
107325
|
+
errors?: Maybe<Array<QueryError>>;
|
|
107326
|
+
pageInfo: PageInfo;
|
|
107327
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107328
|
+
};
|
|
107329
|
+
export declare type JiraFlatOptionEdge = {
|
|
107330
|
+
__typename?: 'JiraFlatOptionEdge';
|
|
107331
|
+
cursor: Scalars['String']['output'];
|
|
107332
|
+
node?: Maybe<JiraFlatOption>;
|
|
107333
|
+
};
|
|
107320
107334
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
107321
107335
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
107322
107336
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -109490,6 +109504,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
109490
109504
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
109491
109505
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
109492
109506
|
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
109507
|
+
defaultFlatFieldOptions?: Maybe<JiraFlatOptionConnection>;
|
|
109493
109508
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
109494
109509
|
description?: Maybe<Scalars['String']['output']>;
|
|
109495
109510
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
@@ -109602,6 +109617,12 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
|
109602
109617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109603
109618
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109604
109619
|
};
|
|
109620
|
+
export declare type JiraIssueFieldConfigDefaultFlatFieldOptionsArgs = {
|
|
109621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
109622
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
109623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109624
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109625
|
+
};
|
|
109605
109626
|
export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
109606
109627
|
schemeId: Scalars['ID']['input'];
|
|
109607
109628
|
};
|
|
@@ -114379,6 +114400,7 @@ export declare type JiraOption = JiraSelectableValue & Node & {
|
|
|
114379
114400
|
id: Scalars['ID']['output'];
|
|
114380
114401
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
114381
114402
|
optionId: Scalars['String']['output'];
|
|
114403
|
+
parentOption?: Maybe<JiraParentOption>;
|
|
114382
114404
|
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
114383
114405
|
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
114384
114406
|
selectableLabel?: Maybe<Scalars['String']['output']>;
|