@forge/cli-shared 3.16.0-next.14 → 3.16.0-next.16
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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.16.0-next.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 07d9b39: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- launchdarkly-node-client-sdk
|
|
10
|
+
|
|
11
|
+
## 3.16.0-next.15
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [8e172afc]
|
|
16
|
+
- @forge/manifest@4.16.1-next.6
|
|
17
|
+
|
|
3
18
|
## 3.16.0-next.14
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -9565,6 +9565,7 @@ export declare type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node
|
|
|
9565
9565
|
export declare type HelpLayoutImageAtomicElementConfig = {
|
|
9566
9566
|
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
9567
9567
|
altText?: Maybe<Scalars['String']>;
|
|
9568
|
+
fileId?: Maybe<Scalars['String']>;
|
|
9568
9569
|
};
|
|
9569
9570
|
export declare type HelpLayoutImageAtomicElementData = {
|
|
9570
9571
|
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
@@ -10575,6 +10576,11 @@ export declare type JiraBulkEditFieldsEdge = {
|
|
|
10575
10576
|
node?: Maybe<JiraBulkEditField>;
|
|
10576
10577
|
cursor: Scalars['String'];
|
|
10577
10578
|
};
|
|
10579
|
+
export declare type JiraBulkEditInput = {
|
|
10580
|
+
selectedActions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
10581
|
+
selectedIssueIds: Array<Scalars['ID']>;
|
|
10582
|
+
editedFieldsInput: JiraIssueFieldsInput;
|
|
10583
|
+
};
|
|
10578
10584
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
10579
10585
|
Add = "ADD",
|
|
10580
10586
|
Remove = "REMOVE",
|
|
@@ -10593,6 +10599,12 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10593
10599
|
last?: Maybe<Scalars['Int']>;
|
|
10594
10600
|
before?: Maybe<Scalars['String']>;
|
|
10595
10601
|
};
|
|
10602
|
+
export declare type JiraBulkOperationInput = {
|
|
10603
|
+
bulkEditInput?: Maybe<JiraBulkEditInput>;
|
|
10604
|
+
};
|
|
10605
|
+
export declare enum JiraBulkOperationType {
|
|
10606
|
+
BulkEdit = "BULK_EDIT"
|
|
10607
|
+
}
|
|
10596
10608
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10597
10609
|
__typename?: 'JiraCMDBField';
|
|
10598
10610
|
id: Scalars['ID'];
|
|
@@ -12326,6 +12338,11 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
12326
12338
|
node?: Maybe<JiraIssueFieldSet>;
|
|
12327
12339
|
cursor: Scalars['String'];
|
|
12328
12340
|
};
|
|
12341
|
+
export declare type JiraIssueFieldsInput = {
|
|
12342
|
+
priority?: Maybe<JiraPriorityInput>;
|
|
12343
|
+
singleSelectUserPickerFields?: Maybe<Array<JiraSingleSelectUserPickerFieldInput>>;
|
|
12344
|
+
labelsFields?: Maybe<Array<JiraLabelsFieldInput>>;
|
|
12345
|
+
};
|
|
12329
12346
|
export declare type JiraIssueHierarchyConfigData = {
|
|
12330
12347
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
12331
12348
|
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -13408,6 +13425,11 @@ export declare type JiraLabelsFieldLabelsArgs = {
|
|
|
13408
13425
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
13409
13426
|
sessionId?: Maybe<Scalars['ID']>;
|
|
13410
13427
|
};
|
|
13428
|
+
export declare type JiraLabelsFieldInput = {
|
|
13429
|
+
fieldId: Scalars['ID'];
|
|
13430
|
+
labels?: Maybe<Array<JiraLabelsInput>>;
|
|
13431
|
+
bulkEditMultiSelectFieldOption?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
13432
|
+
};
|
|
13411
13433
|
export declare type JiraLabelsFieldOperationInput = {
|
|
13412
13434
|
operation: JiraMultiValueFieldOperations;
|
|
13413
13435
|
labels: Array<Scalars['String']>;
|
|
@@ -13418,6 +13440,9 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
13418
13440
|
errors?: Maybe<Array<MutationError>>;
|
|
13419
13441
|
field?: Maybe<JiraLabelsField>;
|
|
13420
13442
|
};
|
|
13443
|
+
export declare type JiraLabelsInput = {
|
|
13444
|
+
name: Scalars['String'];
|
|
13445
|
+
};
|
|
13421
13446
|
export declare type JiraLinkIssueToVersionRelatedWorkInput = {
|
|
13422
13447
|
issueId?: Maybe<Scalars['ID']>;
|
|
13423
13448
|
relatedWorkType: JiraVersionRelatedWorkType;
|
|
@@ -13670,6 +13695,7 @@ export declare type JiraMutation = {
|
|
|
13670
13695
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
13671
13696
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
13672
13697
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
13698
|
+
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
13673
13699
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
13674
13700
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13675
13701
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -13878,6 +13904,10 @@ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
13878
13904
|
export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
13879
13905
|
input: JiraVersionUpdateApproverStatusInput;
|
|
13880
13906
|
};
|
|
13907
|
+
export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
13908
|
+
cloudId: Scalars['ID'];
|
|
13909
|
+
input: JiraSubmitBulkOperationInput;
|
|
13910
|
+
};
|
|
13881
13911
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
13882
13912
|
input: JiraCreateShortcutInput;
|
|
13883
13913
|
};
|
|
@@ -14439,6 +14469,9 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
14439
14469
|
errors?: Maybe<Array<MutationError>>;
|
|
14440
14470
|
field?: Maybe<JiraPriorityField>;
|
|
14441
14471
|
};
|
|
14472
|
+
export declare type JiraPriorityInput = {
|
|
14473
|
+
priorityId: Scalars['ID'];
|
|
14474
|
+
};
|
|
14442
14475
|
export declare type JiraProformaForms = {
|
|
14443
14476
|
__typename?: 'JiraProformaForms';
|
|
14444
14477
|
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
@@ -16709,6 +16742,10 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
16709
16742
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
16710
16743
|
sessionId?: Maybe<Scalars['ID']>;
|
|
16711
16744
|
};
|
|
16745
|
+
export declare type JiraSingleSelectUserPickerFieldInput = {
|
|
16746
|
+
fieldId: Scalars['ID'];
|
|
16747
|
+
user: JiraUserInput;
|
|
16748
|
+
};
|
|
16712
16749
|
export declare type JiraSingleSelectUserPickerFieldOperationInput = {
|
|
16713
16750
|
operation: JiraSingleValueFieldOperations;
|
|
16714
16751
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -16895,6 +16932,22 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
|
16895
16932
|
errors?: Maybe<Array<MutationError>>;
|
|
16896
16933
|
field?: Maybe<JiraNumberField>;
|
|
16897
16934
|
};
|
|
16935
|
+
export declare type JiraSubmitBulkOperationInput = {
|
|
16936
|
+
bulkOperationType: JiraBulkOperationType;
|
|
16937
|
+
bulkOperationInput: JiraBulkOperationInput;
|
|
16938
|
+
};
|
|
16939
|
+
export declare type JiraSubmitBulkOperationPayload = Payload & {
|
|
16940
|
+
__typename?: 'JiraSubmitBulkOperationPayload';
|
|
16941
|
+
success: Scalars['Boolean'];
|
|
16942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16943
|
+
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
16944
|
+
};
|
|
16945
|
+
export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
16946
|
+
__typename?: 'JiraSubmitBulkOperationProgress';
|
|
16947
|
+
id: Scalars['ID'];
|
|
16948
|
+
taskId: Scalars['String'];
|
|
16949
|
+
submittedTime: Scalars['DateTime'];
|
|
16950
|
+
};
|
|
16898
16951
|
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
16899
16952
|
__typename?: 'JiraSubtasksField';
|
|
16900
16953
|
id: Scalars['ID'];
|
|
@@ -17391,6 +17444,9 @@ export declare type JiraUserGroup = {
|
|
|
17391
17444
|
accountId?: Maybe<Scalars['String']>;
|
|
17392
17445
|
displayName?: Maybe<Scalars['String']>;
|
|
17393
17446
|
};
|
|
17447
|
+
export declare type JiraUserInput = {
|
|
17448
|
+
accountId: Scalars['ID'];
|
|
17449
|
+
};
|
|
17394
17450
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
17395
17451
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
17396
17452
|
};
|
|
@@ -21641,6 +21697,7 @@ export declare type QueryIsSainSearchEnabledArgs = {
|
|
|
21641
21697
|
export declare type QueryNlpSearchArgs = {
|
|
21642
21698
|
query?: Maybe<Scalars['String']>;
|
|
21643
21699
|
locations: Array<Scalars['String']>;
|
|
21700
|
+
locale?: Maybe<Scalars['String']>;
|
|
21644
21701
|
};
|
|
21645
21702
|
export declare type QueryNlpFollowUpArgs = {
|
|
21646
21703
|
query?: Maybe<Scalars['String']>;
|
|
@@ -21726,6 +21783,8 @@ export declare enum RateLimitingCurrency {
|
|
|
21726
21783
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
21727
21784
|
PolarisIdeaTemplatesQueryCurrency = "POLARIS_IDEA_TEMPLATES_QUERY_CURRENCY",
|
|
21728
21785
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
21786
|
+
ShepherdReadAlertCurrency = "SHEPHERD_READ_ALERT_CURRENCY",
|
|
21787
|
+
ShepherdDefaultCurrency = "SHEPHERD_DEFAULT_CURRENCY",
|
|
21729
21788
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
21730
21789
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
21731
21790
|
ExportMetricsCurrency = "EXPORT_METRICS_CURRENCY",
|
|
@@ -23355,6 +23414,8 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
23355
23414
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
23356
23415
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
23357
23416
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
23417
|
+
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
23418
|
+
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
23358
23419
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
23359
23420
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
23360
23421
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|