@forge/cli-shared 3.24.0-next.3 → 3.24.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 +14 -0
- package/out/graphql/graphql-types.d.ts +85 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 42c86e5: Update fedramp environments
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 734b9b8: Improve error reporting
|
|
12
|
+
- Updated dependencies [f2caa81]
|
|
13
|
+
- Updated dependencies [756e1c4]
|
|
14
|
+
- Updated dependencies [ac35e84]
|
|
15
|
+
- @forge/manifest@6.1.0
|
|
16
|
+
|
|
3
17
|
## 3.24.0-next.3
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -24215,6 +24215,17 @@ export declare type HelpCenterAnnouncementInput = {
|
|
|
24215
24215
|
helpCenterAri: Scalars['String']['input'];
|
|
24216
24216
|
nameTranslations?: InputMaybe<Array<HelpCenterTranslationInput>>;
|
|
24217
24217
|
};
|
|
24218
|
+
export declare type HelpCenterAnnouncementResult = {
|
|
24219
|
+
__typename?: 'HelpCenterAnnouncementResult';
|
|
24220
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
24221
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
24222
|
+
};
|
|
24223
|
+
export declare type HelpCenterAnnouncementUpdatePayload = Payload & {
|
|
24224
|
+
__typename?: 'HelpCenterAnnouncementUpdatePayload';
|
|
24225
|
+
announcementResult?: Maybe<HelpCenterAnnouncementResult>;
|
|
24226
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24227
|
+
success: Scalars['Boolean']['output'];
|
|
24228
|
+
};
|
|
24218
24229
|
export declare type HelpCenterAnnouncements = {
|
|
24219
24230
|
__typename?: 'HelpCenterAnnouncements';
|
|
24220
24231
|
canEditHomePageAnnouncement?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -24376,11 +24387,6 @@ export declare type HelpCenterHelpDeskUpdateInput = {
|
|
|
24376
24387
|
name: Scalars['String']['input'];
|
|
24377
24388
|
};
|
|
24378
24389
|
export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
24379
|
-
export declare type HelpCenterHomePageAnnouncementUpdatePayload = Payload & {
|
|
24380
|
-
__typename?: 'HelpCenterHomePageAnnouncementUpdatePayload';
|
|
24381
|
-
errors?: Maybe<Array<MutationError>>;
|
|
24382
|
-
success: Scalars['Boolean']['output'];
|
|
24383
|
-
};
|
|
24384
24390
|
export declare type HelpCenterHomePageLayout = {
|
|
24385
24391
|
__typename?: 'HelpCenterHomePageLayout';
|
|
24386
24392
|
data?: Maybe<HelpLayoutResult>;
|
|
@@ -24395,11 +24401,6 @@ export declare type HelpCenterHomePageTitleInput = {
|
|
|
24395
24401
|
default: Scalars['String']['input'];
|
|
24396
24402
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
24397
24403
|
};
|
|
24398
|
-
export declare type HelpCenterLoginAnnouncementUpdatePayload = Payload & {
|
|
24399
|
-
__typename?: 'HelpCenterLoginAnnouncementUpdatePayload';
|
|
24400
|
-
errors?: Maybe<Array<MutationError>>;
|
|
24401
|
-
success: Scalars['Boolean']['output'];
|
|
24402
|
-
};
|
|
24403
24404
|
export declare type HelpCenterLogo = {
|
|
24404
24405
|
__typename?: 'HelpCenterLogo';
|
|
24405
24406
|
fileId?: Maybe<Scalars['String']['output']>;
|
|
@@ -24427,8 +24428,8 @@ export declare type HelpCenterMutationApi = {
|
|
|
24427
24428
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
24428
24429
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
24429
24430
|
updateHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
24430
|
-
|
|
24431
|
-
|
|
24431
|
+
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
24432
|
+
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
24432
24433
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
24433
24434
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
24434
24435
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
@@ -24451,11 +24452,11 @@ export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
|
24451
24452
|
export declare type HelpCenterMutationApiUpdateHelpDeskArgs = {
|
|
24452
24453
|
input: HelpCenterHelpDeskUpdateInput;
|
|
24453
24454
|
};
|
|
24454
|
-
export declare type
|
|
24455
|
-
input:
|
|
24455
|
+
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
|
|
24456
|
+
input: HelpCenterAnnouncementInput;
|
|
24456
24457
|
};
|
|
24457
|
-
export declare type
|
|
24458
|
-
input:
|
|
24458
|
+
export declare type HelpCenterMutationApiUpdateLoginAnnouncementArgs = {
|
|
24459
|
+
input: HelpCenterAnnouncementInput;
|
|
24459
24460
|
};
|
|
24460
24461
|
export declare type HelpCenterMutationApiUpdatePortalsConfigurationArgs = {
|
|
24461
24462
|
input: HelpCenterPortalsConfigurationUpdateInput;
|
|
@@ -25115,11 +25116,15 @@ export declare type HelpLayoutTopicItem = {
|
|
|
25115
25116
|
};
|
|
25116
25117
|
export declare type HelpLayoutTopicsListElement = HelpLayoutVisualEntity & Node & {
|
|
25117
25118
|
__typename?: 'HelpLayoutTopicsListElement';
|
|
25118
|
-
data?: Maybe<
|
|
25119
|
+
data?: Maybe<HelpLayoutTopicsListElementData>;
|
|
25119
25120
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
25120
25121
|
id: Scalars['ID']['output'];
|
|
25121
25122
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
25122
25123
|
};
|
|
25124
|
+
export declare type HelpLayoutTopicsListElementData = {
|
|
25125
|
+
__typename?: 'HelpLayoutTopicsListElementData';
|
|
25126
|
+
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
25127
|
+
};
|
|
25123
25128
|
export declare type HelpLayoutUpdateInput = {
|
|
25124
25129
|
layoutId: Scalars['ID']['input'];
|
|
25125
25130
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -26868,6 +26873,47 @@ export declare enum JiraBulkOperationType {
|
|
|
26868
26873
|
BulkEdit = "BULK_EDIT",
|
|
26869
26874
|
BulkTransition = "BULK_TRANSITION"
|
|
26870
26875
|
}
|
|
26876
|
+
export declare type JiraBulkTransition = {
|
|
26877
|
+
__typename?: 'JiraBulkTransition';
|
|
26878
|
+
isTransitionsFiltered?: Maybe<Scalars['Boolean']['output']>;
|
|
26879
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
26880
|
+
transitions?: Maybe<JiraTransitionConnection>;
|
|
26881
|
+
};
|
|
26882
|
+
export declare type JiraBulkTransitionIssuesArgs = {
|
|
26883
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26884
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
26885
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26886
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26887
|
+
};
|
|
26888
|
+
export declare type JiraBulkTransitionTransitionsArgs = {
|
|
26889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26890
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
26891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26892
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26893
|
+
};
|
|
26894
|
+
export declare type JiraBulkTransitionConnection = {
|
|
26895
|
+
__typename?: 'JiraBulkTransitionConnection';
|
|
26896
|
+
edges?: Maybe<Array<Maybe<JiraBulkTransitionEdge>>>;
|
|
26897
|
+
errors?: Maybe<Array<QueryError>>;
|
|
26898
|
+
pageInfo: PageInfo;
|
|
26899
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26900
|
+
};
|
|
26901
|
+
export declare type JiraBulkTransitionEdge = {
|
|
26902
|
+
__typename?: 'JiraBulkTransitionEdge';
|
|
26903
|
+
cursor: Scalars['String']['output'];
|
|
26904
|
+
node?: Maybe<JiraBulkTransition>;
|
|
26905
|
+
};
|
|
26906
|
+
export declare type JiraBulkTransitionResponse = {
|
|
26907
|
+
__typename?: 'JiraBulkTransitionResponse';
|
|
26908
|
+
bulkTransitions?: Maybe<JiraBulkTransitionConnection>;
|
|
26909
|
+
mayDisableNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
26910
|
+
};
|
|
26911
|
+
export declare type JiraBulkTransitionResponseBulkTransitionsArgs = {
|
|
26912
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26913
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
26914
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26915
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26916
|
+
};
|
|
26871
26917
|
export declare type JiraBulkTransitionsInput = {
|
|
26872
26918
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
26873
26919
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27774,7 +27820,7 @@ export declare type JiraDataClassification = {
|
|
|
27774
27820
|
id: Scalars['ID']['output'];
|
|
27775
27821
|
name?: Maybe<Scalars['String']['output']>;
|
|
27776
27822
|
};
|
|
27777
|
-
export declare type JiraDataClassificationField = JiraIssueField & Node & {
|
|
27823
|
+
export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
27778
27824
|
__typename?: 'JiraDataClassificationField';
|
|
27779
27825
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
27780
27826
|
classification?: Maybe<JiraDataClassification>;
|
|
@@ -27782,11 +27828,13 @@ export declare type JiraDataClassificationField = JiraIssueField & Node & {
|
|
|
27782
27828
|
classificationLevels?: Maybe<JiraClassificationLevelConnection>;
|
|
27783
27829
|
defaultClassificationLevel?: Maybe<JiraClassificationLevel>;
|
|
27784
27830
|
description?: Maybe<Scalars['String']['output']>;
|
|
27831
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
27785
27832
|
fieldId: Scalars['String']['output'];
|
|
27786
27833
|
id: Scalars['ID']['output'];
|
|
27787
27834
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
27788
27835
|
name: Scalars['String']['output'];
|
|
27789
27836
|
type: Scalars['String']['output'];
|
|
27837
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
27790
27838
|
};
|
|
27791
27839
|
export declare type JiraDataClassificationFieldClassificationLevelsArgs = {
|
|
27792
27840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -27798,7 +27846,7 @@ export declare type JiraDataClassificationFieldClassificationLevelsArgs = {
|
|
|
27798
27846
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27799
27847
|
};
|
|
27800
27848
|
export declare type JiraDataClassificationFieldOperationInput = {
|
|
27801
|
-
classificationLevel
|
|
27849
|
+
classificationLevel?: InputMaybe<Scalars['ID']['input']>;
|
|
27802
27850
|
operation: JiraSingleValueFieldOperations;
|
|
27803
27851
|
};
|
|
27804
27852
|
export declare type JiraDataClassificationFieldPayload = Payload & {
|
|
@@ -32527,6 +32575,7 @@ export declare type JiraQuery = {
|
|
|
32527
32575
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
32528
32576
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
32529
32577
|
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
32578
|
+
jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
|
|
32530
32579
|
jiraProject?: Maybe<JiraProject>;
|
|
32531
32580
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
32532
32581
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -32874,6 +32923,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
32874
32923
|
export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
32875
32924
|
issueIds: Array<Scalars['ID']['input']>;
|
|
32876
32925
|
};
|
|
32926
|
+
export declare type JiraQueryJiraBulkEditTransitionsArgs = {
|
|
32927
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
32928
|
+
};
|
|
32877
32929
|
export declare type JiraQueryJiraProjectArgs = {
|
|
32878
32930
|
id: Scalars['ID']['input'];
|
|
32879
32931
|
};
|
|
@@ -42671,6 +42723,7 @@ export declare type ShepherdActivityHighlight = {
|
|
|
42671
42723
|
action?: Maybe<ShepherdActionType>;
|
|
42672
42724
|
actor?: Maybe<ShepherdActor>;
|
|
42673
42725
|
actorSessionInfo?: Maybe<ShepherdActorSessionInfo>;
|
|
42726
|
+
affectedResources?: Maybe<Array<Scalars['String']['output']>>;
|
|
42674
42727
|
categorizedMetadata?: Maybe<Array<ShepherdCategorizedAlertMetadata>>;
|
|
42675
42728
|
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
42676
42729
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
@@ -46165,6 +46218,7 @@ export declare type TrelloMutationApi = {
|
|
|
46165
46218
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
46166
46219
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
46167
46220
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
46221
|
+
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
46168
46222
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
46169
46223
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
46170
46224
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
@@ -46185,6 +46239,9 @@ export declare type TrelloMutationApiCreateCardArgs = {
|
|
|
46185
46239
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
46186
46240
|
input: TrelloRemoveMemberInput;
|
|
46187
46241
|
};
|
|
46242
|
+
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
46243
|
+
input: TrelloRemoveMemberInput;
|
|
46244
|
+
};
|
|
46188
46245
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
46189
46246
|
input: TrelloUnarchiveCardInput;
|
|
46190
46247
|
};
|
|
@@ -46301,6 +46358,15 @@ export declare type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
|
46301
46358
|
errors?: Maybe<Array<MutationError>>;
|
|
46302
46359
|
success: Scalars['Boolean']['output'];
|
|
46303
46360
|
};
|
|
46361
|
+
export declare type TrelloRemoveMemberFromWorkspaceInput = {
|
|
46362
|
+
userId: Scalars['ID']['input'];
|
|
46363
|
+
workspaceId: Scalars['ID']['input'];
|
|
46364
|
+
};
|
|
46365
|
+
export declare type TrelloRemoveMemberFromWorkspacePayload = Payload & {
|
|
46366
|
+
__typename?: 'TrelloRemoveMemberFromWorkspacePayload';
|
|
46367
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46368
|
+
success: Scalars['Boolean']['output'];
|
|
46369
|
+
};
|
|
46304
46370
|
export declare type TrelloRemoveMemberInput = {
|
|
46305
46371
|
cardId: Scalars['ID']['input'];
|
|
46306
46372
|
userId: Scalars['ID']['input'];
|