@forge/cli-shared 5.6.0-next.10 → 5.6.0-next.12
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.6.0-next.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d500498]
|
|
8
|
+
- @forge/manifest@7.9.0-next.10
|
|
9
|
+
|
|
10
|
+
## 5.6.0-next.11
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [47f24ba]
|
|
15
|
+
- Updated dependencies [75698c0]
|
|
16
|
+
- Updated dependencies [6cd61be]
|
|
17
|
+
- @forge/manifest@7.9.0-next.9
|
|
18
|
+
|
|
3
19
|
## 5.6.0-next.10
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -47498,6 +47498,7 @@ export declare type JiraProject = Node & {
|
|
|
47498
47498
|
jsmChatSlackConfig?: Maybe<JsmChatSlackConfig>;
|
|
47499
47499
|
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
47500
47500
|
key: Scalars['String']['output'];
|
|
47501
|
+
knowledgeBaseArticlesCount?: Maybe<KnowledgeBaseArticleCountResponse>;
|
|
47501
47502
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
47502
47503
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
47503
47504
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -47594,6 +47595,9 @@ export declare type JiraProjectIssueTypesArgs = {
|
|
|
47594
47595
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47595
47596
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47596
47597
|
};
|
|
47598
|
+
export declare type JiraProjectKnowledgeBaseArticlesCountArgs = {
|
|
47599
|
+
cloudId: Scalars['ID']['input'];
|
|
47600
|
+
};
|
|
47597
47601
|
export declare type JiraProjectLastUpdatedFormattedArgs = {
|
|
47598
47602
|
format?: InputMaybe<JiraProjectDateTimeFormat>;
|
|
47599
47603
|
};
|
|
@@ -54838,6 +54842,7 @@ export declare type KnowledgeBaseArticleCountError = {
|
|
|
54838
54842
|
extensions: Array<QueryErrorExtension>;
|
|
54839
54843
|
message: Scalars['String']['output'];
|
|
54840
54844
|
};
|
|
54845
|
+
export declare type KnowledgeBaseArticleCountResponse = KnowledgeBaseArticleCountError | KnowledgeBaseArticleCountSource;
|
|
54841
54846
|
export declare type KnowledgeBaseArticleCountSource = {
|
|
54842
54847
|
__typename?: 'KnowledgeBaseArticleCountSource';
|
|
54843
54848
|
container: Scalars['ID']['output'];
|
|
@@ -60338,11 +60343,7 @@ export declare type PeapMutationApi = {
|
|
|
60338
60343
|
programEnrollment: PeapProgramEnrollmentMutation;
|
|
60339
60344
|
};
|
|
60340
60345
|
export declare type PeapNewProgramInput = {
|
|
60341
|
-
description: Scalars['String']['input'];
|
|
60342
|
-
documentationURL: Scalars['String']['input'];
|
|
60343
60346
|
name: Scalars['String']['input'];
|
|
60344
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60345
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60346
60347
|
};
|
|
60347
60348
|
export declare type PeapProgram = {
|
|
60348
60349
|
__typename?: 'PEAPProgram';
|
|
@@ -60351,12 +60352,9 @@ export declare type PeapProgram = {
|
|
|
60351
60352
|
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
60352
60353
|
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
60353
60354
|
createdAt: Scalars['Date']['output'];
|
|
60354
|
-
description: Scalars['String']['output'];
|
|
60355
|
-
documentationURL: Scalars['String']['output'];
|
|
60356
60355
|
id: Scalars['ID']['output'];
|
|
60357
60356
|
internal?: Maybe<PeapProgramInternalData>;
|
|
60358
60357
|
name: Scalars['String']['output'];
|
|
60359
|
-
serviceId?: Maybe<Scalars['String']['output']>;
|
|
60360
60358
|
status: PeapProgramStatus;
|
|
60361
60359
|
updatedAt: Scalars['Date']['output'];
|
|
60362
60360
|
};
|
|
@@ -60396,7 +60394,6 @@ export declare type PeapProgramInternalData = {
|
|
|
60396
60394
|
__typename?: 'PEAPProgramInternalData';
|
|
60397
60395
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
60398
60396
|
owner?: Maybe<User>;
|
|
60399
|
-
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
60400
60397
|
};
|
|
60401
60398
|
export declare type PeapProgramMutationResponse = Payload & {
|
|
60402
60399
|
__typename?: 'PEAPProgramMutationResponse';
|
|
@@ -60408,8 +60405,7 @@ export declare enum PeapProgramStatus {
|
|
|
60408
60405
|
Abandoned = "ABANDONED",
|
|
60409
60406
|
Active = "ACTIVE",
|
|
60410
60407
|
Ended = "ENDED",
|
|
60411
|
-
New = "NEW"
|
|
60412
|
-
Planned = "PLANNED"
|
|
60408
|
+
New = "NEW"
|
|
60413
60409
|
}
|
|
60414
60410
|
export declare type PeapQueryApi = {
|
|
60415
60411
|
__typename?: 'PEAPQueryApi';
|
|
@@ -60427,14 +60423,9 @@ export declare type PeapQueryApiProgramsArgs = {
|
|
|
60427
60423
|
params?: InputMaybe<PeapQueryParams>;
|
|
60428
60424
|
};
|
|
60429
60425
|
export declare type PeapQueryParams = {
|
|
60430
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60431
60426
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60432
60427
|
status?: InputMaybe<Array<PeapProgramStatus>>;
|
|
60433
60428
|
};
|
|
60434
|
-
export declare type PeapSiteEnrollmentQueryInput = {
|
|
60435
|
-
cloudId: Scalars['ID']['input'];
|
|
60436
|
-
programId: Scalars['ID']['input'];
|
|
60437
|
-
};
|
|
60438
60429
|
export declare type PeapSiteEnrollmentStatus = {
|
|
60439
60430
|
__typename?: 'PEAPSiteEnrollmentStatus';
|
|
60440
60431
|
cloudId: Scalars['ID']['output'];
|
|
@@ -60444,11 +60435,7 @@ export declare type PeapSiteEnrollmentStatus = {
|
|
|
60444
60435
|
success: Scalars['Boolean']['output'];
|
|
60445
60436
|
};
|
|
60446
60437
|
export declare type PeapUpdateProgramInput = {
|
|
60447
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
60448
|
-
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
60449
60438
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
60450
|
-
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
60451
|
-
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
60452
60439
|
};
|
|
60453
60440
|
export declare type PageInfo = {
|
|
60454
60441
|
__typename?: 'PageInfo';
|
|
@@ -63429,7 +63416,7 @@ export declare type RadarEdge = {
|
|
|
63429
63416
|
export declare type RadarEnlistment = {
|
|
63430
63417
|
__typename?: 'RadarEnlistment';
|
|
63431
63418
|
cloudId: Scalars['ID']['output'];
|
|
63432
|
-
positionFields?: Maybe<Array<Maybe<
|
|
63419
|
+
positionFields?: Maybe<Array<Maybe<RadarFieldDefinition>>>;
|
|
63433
63420
|
};
|
|
63434
63421
|
export declare type RadarEntity = {
|
|
63435
63422
|
fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
|
|
@@ -64865,6 +64852,7 @@ export declare enum SearchBoardProductType {
|
|
|
64865
64852
|
Software = "SOFTWARE"
|
|
64866
64853
|
}
|
|
64867
64854
|
export declare type SearchCommonFilter = {
|
|
64855
|
+
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64868
64856
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
64869
64857
|
};
|
|
64870
64858
|
export declare type SearchCommonRangeFilter = {
|
|
@@ -66194,7 +66182,6 @@ export declare type ShepherdDetection = {
|
|
|
66194
66182
|
category: ShepherdAlertDetectionCategory;
|
|
66195
66183
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
66196
66184
|
id: Scalars['ID']['output'];
|
|
66197
|
-
product: ShepherdAtlassianProduct;
|
|
66198
66185
|
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
66199
66186
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
66200
66187
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
@@ -69183,6 +69170,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
69183
69170
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
69184
69171
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
69185
69172
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69173
|
+
viewer?: Maybe<TrelloBoardViewerUpdated>;
|
|
69186
69174
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69187
69175
|
};
|
|
69188
69176
|
export declare type TrelloBoardUpdatedEdge = {
|
|
@@ -69210,6 +69198,10 @@ export declare type TrelloBoardViewerSidebar = {
|
|
|
69210
69198
|
__typename?: 'TrelloBoardViewerSidebar';
|
|
69211
69199
|
show?: Maybe<Scalars['Boolean']['output']>;
|
|
69212
69200
|
};
|
|
69201
|
+
export declare type TrelloBoardViewerUpdated = {
|
|
69202
|
+
__typename?: 'TrelloBoardViewerUpdated';
|
|
69203
|
+
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
69204
|
+
};
|
|
69213
69205
|
export declare type TrelloBoardWorkspaceUpdated = {
|
|
69214
69206
|
__typename?: 'TrelloBoardWorkspaceUpdated';
|
|
69215
69207
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -69583,6 +69575,7 @@ export declare type TrelloInbox = {
|
|
|
69583
69575
|
export declare type TrelloJwmWorkspaceLink = {
|
|
69584
69576
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
69585
69577
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
69578
|
+
crossflowTouchpoint?: Maybe<Scalars['String']['output']>;
|
|
69586
69579
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
69587
69580
|
inaccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
69588
69581
|
};
|
|
@@ -69844,16 +69837,16 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
69844
69837
|
};
|
|
69845
69838
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69846
69839
|
__typename?: 'TrelloPlannerCalendar';
|
|
69847
|
-
color
|
|
69848
|
-
enabled
|
|
69840
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
69841
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69849
69842
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69850
69843
|
id: Scalars['ID']['output'];
|
|
69851
|
-
objectId
|
|
69852
|
-
providerCalendarId
|
|
69853
|
-
readOnly
|
|
69854
|
-
timezone
|
|
69855
|
-
title
|
|
69856
|
-
type
|
|
69844
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
69845
|
+
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
69846
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
69847
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
69848
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
69849
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69857
69850
|
};
|
|
69858
69851
|
export declare type TrelloPlannerCalendarEventsArgs = {
|
|
69859
69852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69862,8 +69855,8 @@ export declare type TrelloPlannerCalendarEventsArgs = {
|
|
|
69862
69855
|
};
|
|
69863
69856
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
69864
69857
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
69865
|
-
accountType
|
|
69866
|
-
displayName
|
|
69858
|
+
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69859
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
69867
69860
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
69868
69861
|
id: Scalars['ID']['output'];
|
|
69869
69862
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -69901,24 +69894,24 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
69901
69894
|
};
|
|
69902
69895
|
export declare type TrelloPlannerCalendarEvent = Node & {
|
|
69903
69896
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
69904
|
-
allDay
|
|
69905
|
-
busy
|
|
69897
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
69898
|
+
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
69906
69899
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
69907
|
-
createdByTrello
|
|
69900
|
+
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
69908
69901
|
description?: Maybe<Scalars['String']['output']>;
|
|
69909
|
-
endAt
|
|
69902
|
+
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
69910
69903
|
id: Scalars['ID']['output'];
|
|
69911
69904
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
69912
|
-
readOnly
|
|
69913
|
-
startAt
|
|
69914
|
-
status
|
|
69915
|
-
title
|
|
69916
|
-
type
|
|
69917
|
-
visibility
|
|
69905
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
69906
|
+
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
69907
|
+
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|
|
69908
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
69909
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69910
|
+
visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
|
|
69918
69911
|
};
|
|
69919
69912
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
69920
69913
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
69921
|
-
url
|
|
69914
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
69922
69915
|
};
|
|
69923
69916
|
export declare type TrelloPlannerCalendarEventConnection = {
|
|
69924
69917
|
__typename?: 'TrelloPlannerCalendarEventConnection';
|
|
@@ -69943,22 +69936,22 @@ export declare enum TrelloPlannerCalendarEventVisibility {
|
|
|
69943
69936
|
Public = "PUBLIC"
|
|
69944
69937
|
}
|
|
69945
69938
|
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
69946
|
-
end
|
|
69947
|
-
start
|
|
69939
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
69940
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
69948
69941
|
};
|
|
69949
69942
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69950
69943
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
69951
|
-
color
|
|
69944
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
69952
69945
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69953
69946
|
id: Scalars['ID']['output'];
|
|
69954
|
-
readOnly
|
|
69955
|
-
timezone
|
|
69956
|
-
title
|
|
69957
|
-
type
|
|
69947
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
69948
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
69949
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
69950
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69958
69951
|
};
|
|
69959
69952
|
export declare type TrelloPlannerProviderCalendarEventsArgs = {
|
|
69960
69953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69961
|
-
filter
|
|
69954
|
+
filter: TrelloPlannerCalendarEventsFilter;
|
|
69962
69955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69963
69956
|
};
|
|
69964
69957
|
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
@@ -70023,12 +70016,12 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70023
70016
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
70024
70017
|
};
|
|
70025
70018
|
export declare type TrelloProviderCalendarInterface = {
|
|
70026
|
-
color
|
|
70019
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
70027
70020
|
id: Scalars['ID']['output'];
|
|
70028
|
-
readOnly
|
|
70029
|
-
timezone
|
|
70030
|
-
title
|
|
70031
|
-
type
|
|
70021
|
+
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
70022
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
70023
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
70024
|
+
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
70032
70025
|
};
|
|
70033
70026
|
export declare type TrelloQueryApi = {
|
|
70034
70027
|
__typename?: 'TrelloQueryApi';
|