@forge/cli-shared 3.16.0-next.13 → 3.16.0-next.15
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 +15 -0
- package/out/graphql/graphql-types.d.ts +75 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +9 -5
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +20 -21
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.16.0-next.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8e172afc]
|
|
8
|
+
- @forge/manifest@4.16.1-next.6
|
|
9
|
+
|
|
10
|
+
## 3.16.0-next.14
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- d6ed0db: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- graphql-request
|
|
17
|
+
|
|
3
18
|
## 3.16.0-next.13
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -8183,6 +8183,7 @@ export declare type EcosystemQuery = {
|
|
|
8183
8183
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
8184
8184
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
8185
8185
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
8186
|
+
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
8186
8187
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
8187
8188
|
};
|
|
8188
8189
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -8227,6 +8228,9 @@ export declare type EcosystemQueryForgeMetricsArgs = {
|
|
|
8227
8228
|
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
8228
8229
|
appId: Scalars['ID'];
|
|
8229
8230
|
};
|
|
8231
|
+
export declare type EcosystemQueryForgeContributorsArgs = {
|
|
8232
|
+
appAri: Scalars['ID'];
|
|
8233
|
+
};
|
|
8230
8234
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
8231
8235
|
appId: Scalars['ID'];
|
|
8232
8236
|
};
|
|
@@ -8567,6 +8571,21 @@ export declare type ForgeAuditLogsConnection = {
|
|
|
8567
8571
|
nodes: Array<ForgeAuditLog>;
|
|
8568
8572
|
pageInfo: PageInfo;
|
|
8569
8573
|
};
|
|
8574
|
+
export declare type ForgeAuditLogsContributorActivity = {
|
|
8575
|
+
__typename?: 'ForgeAuditLogsContributorActivity';
|
|
8576
|
+
accountId: Scalars['String'];
|
|
8577
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
8578
|
+
email?: Maybe<Scalars['String']>;
|
|
8579
|
+
isOwner?: Maybe<Scalars['Boolean']>;
|
|
8580
|
+
publicName: Scalars['String'];
|
|
8581
|
+
status: Scalars['String'];
|
|
8582
|
+
lastActive?: Maybe<Scalars['String']>;
|
|
8583
|
+
};
|
|
8584
|
+
export declare type ForgeAuditLogsContributorsActivityData = {
|
|
8585
|
+
__typename?: 'ForgeAuditLogsContributorsActivityData';
|
|
8586
|
+
contributors: Array<ForgeAuditLogsContributorActivity>;
|
|
8587
|
+
};
|
|
8588
|
+
export declare type ForgeAuditLogsContributorsActivityResult = ForgeAuditLogsContributorsActivityData | QueryError;
|
|
8570
8589
|
export declare type ForgeAuditLogsQuery = {
|
|
8571
8590
|
__typename?: 'ForgeAuditLogsQuery';
|
|
8572
8591
|
appId: Scalars['ID'];
|
|
@@ -9546,6 +9565,7 @@ export declare type HelpLayoutImageAtomicElement = HelpLayoutVisualEntity & Node
|
|
|
9546
9565
|
export declare type HelpLayoutImageAtomicElementConfig = {
|
|
9547
9566
|
__typename?: 'HelpLayoutImageAtomicElementConfig';
|
|
9548
9567
|
altText?: Maybe<Scalars['String']>;
|
|
9568
|
+
fileId?: Maybe<Scalars['String']>;
|
|
9549
9569
|
};
|
|
9550
9570
|
export declare type HelpLayoutImageAtomicElementData = {
|
|
9551
9571
|
__typename?: 'HelpLayoutImageAtomicElementData';
|
|
@@ -10556,6 +10576,11 @@ export declare type JiraBulkEditFieldsEdge = {
|
|
|
10556
10576
|
node?: Maybe<JiraBulkEditField>;
|
|
10557
10577
|
cursor: Scalars['String'];
|
|
10558
10578
|
};
|
|
10579
|
+
export declare type JiraBulkEditInput = {
|
|
10580
|
+
selectedActions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
10581
|
+
selectedIssueIds: Array<Scalars['ID']>;
|
|
10582
|
+
editedFieldsInput: JiraIssueFieldsInput;
|
|
10583
|
+
};
|
|
10559
10584
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
10560
10585
|
Add = "ADD",
|
|
10561
10586
|
Remove = "REMOVE",
|
|
@@ -10574,6 +10599,12 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
10574
10599
|
last?: Maybe<Scalars['Int']>;
|
|
10575
10600
|
before?: Maybe<Scalars['String']>;
|
|
10576
10601
|
};
|
|
10602
|
+
export declare type JiraBulkOperationInput = {
|
|
10603
|
+
bulkEditInput?: Maybe<JiraBulkEditInput>;
|
|
10604
|
+
};
|
|
10605
|
+
export declare enum JiraBulkOperationType {
|
|
10606
|
+
BulkEdit = "BULK_EDIT"
|
|
10607
|
+
}
|
|
10577
10608
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
10578
10609
|
__typename?: 'JiraCMDBField';
|
|
10579
10610
|
id: Scalars['ID'];
|
|
@@ -12307,6 +12338,11 @@ export declare type JiraIssueFieldSetEdge = {
|
|
|
12307
12338
|
node?: Maybe<JiraIssueFieldSet>;
|
|
12308
12339
|
cursor: Scalars['String'];
|
|
12309
12340
|
};
|
|
12341
|
+
export declare type JiraIssueFieldsInput = {
|
|
12342
|
+
priority?: Maybe<JiraPriorityInput>;
|
|
12343
|
+
singleSelectUserPickerFields?: Maybe<Array<JiraSingleSelectUserPickerFieldInput>>;
|
|
12344
|
+
labelsFields?: Maybe<Array<JiraLabelsFieldInput>>;
|
|
12345
|
+
};
|
|
12310
12346
|
export declare type JiraIssueHierarchyConfigData = {
|
|
12311
12347
|
__typename?: 'JiraIssueHierarchyConfigData';
|
|
12312
12348
|
hierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -13389,6 +13425,11 @@ export declare type JiraLabelsFieldLabelsArgs = {
|
|
|
13389
13425
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
13390
13426
|
sessionId?: Maybe<Scalars['ID']>;
|
|
13391
13427
|
};
|
|
13428
|
+
export declare type JiraLabelsFieldInput = {
|
|
13429
|
+
fieldId: Scalars['ID'];
|
|
13430
|
+
labels?: Maybe<Array<JiraLabelsInput>>;
|
|
13431
|
+
bulkEditMultiSelectFieldOption?: Maybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
13432
|
+
};
|
|
13392
13433
|
export declare type JiraLabelsFieldOperationInput = {
|
|
13393
13434
|
operation: JiraMultiValueFieldOperations;
|
|
13394
13435
|
labels: Array<Scalars['String']>;
|
|
@@ -13399,6 +13440,9 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
13399
13440
|
errors?: Maybe<Array<MutationError>>;
|
|
13400
13441
|
field?: Maybe<JiraLabelsField>;
|
|
13401
13442
|
};
|
|
13443
|
+
export declare type JiraLabelsInput = {
|
|
13444
|
+
name: Scalars['String'];
|
|
13445
|
+
};
|
|
13402
13446
|
export declare type JiraLinkIssueToVersionRelatedWorkInput = {
|
|
13403
13447
|
issueId?: Maybe<Scalars['ID']>;
|
|
13404
13448
|
relatedWorkType: JiraVersionRelatedWorkType;
|
|
@@ -13651,6 +13695,7 @@ export declare type JiraMutation = {
|
|
|
13651
13695
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
13652
13696
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
13653
13697
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
13698
|
+
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
13654
13699
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
13655
13700
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
13656
13701
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -13859,6 +13904,10 @@ export declare type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
13859
13904
|
export declare type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
13860
13905
|
input: JiraVersionUpdateApproverStatusInput;
|
|
13861
13906
|
};
|
|
13907
|
+
export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
13908
|
+
cloudId: Scalars['ID'];
|
|
13909
|
+
input: JiraSubmitBulkOperationInput;
|
|
13910
|
+
};
|
|
13862
13911
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
13863
13912
|
input: JiraCreateShortcutInput;
|
|
13864
13913
|
};
|
|
@@ -14420,6 +14469,9 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
14420
14469
|
errors?: Maybe<Array<MutationError>>;
|
|
14421
14470
|
field?: Maybe<JiraPriorityField>;
|
|
14422
14471
|
};
|
|
14472
|
+
export declare type JiraPriorityInput = {
|
|
14473
|
+
priorityId: Scalars['ID'];
|
|
14474
|
+
};
|
|
14423
14475
|
export declare type JiraProformaForms = {
|
|
14424
14476
|
__typename?: 'JiraProformaForms';
|
|
14425
14477
|
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
@@ -16690,6 +16742,10 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
16690
16742
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
16691
16743
|
sessionId?: Maybe<Scalars['ID']>;
|
|
16692
16744
|
};
|
|
16745
|
+
export declare type JiraSingleSelectUserPickerFieldInput = {
|
|
16746
|
+
fieldId: Scalars['ID'];
|
|
16747
|
+
user: JiraUserInput;
|
|
16748
|
+
};
|
|
16693
16749
|
export declare type JiraSingleSelectUserPickerFieldOperationInput = {
|
|
16694
16750
|
operation: JiraSingleValueFieldOperations;
|
|
16695
16751
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -16876,6 +16932,22 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
|
16876
16932
|
errors?: Maybe<Array<MutationError>>;
|
|
16877
16933
|
field?: Maybe<JiraNumberField>;
|
|
16878
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
|
+
};
|
|
16879
16951
|
export declare type JiraSubtasksField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
16880
16952
|
__typename?: 'JiraSubtasksField';
|
|
16881
16953
|
id: Scalars['ID'];
|
|
@@ -17372,6 +17444,9 @@ export declare type JiraUserGroup = {
|
|
|
17372
17444
|
accountId?: Maybe<Scalars['String']>;
|
|
17373
17445
|
displayName?: Maybe<Scalars['String']>;
|
|
17374
17446
|
};
|
|
17447
|
+
export declare type JiraUserInput = {
|
|
17448
|
+
accountId: Scalars['ID'];
|
|
17449
|
+
};
|
|
17375
17450
|
export declare type JiraUserIssueFieldConfiguration = {
|
|
17376
17451
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
17377
17452
|
};
|