@forge/cli-shared 6.5.4-next.2 → 6.5.5-next.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 +19 -0
- package/out/graphql/graphql-types.d.ts +101 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -24
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.5-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a92188e]
|
|
8
|
+
- Updated dependencies [cd0e244]
|
|
9
|
+
- @forge/i18n@0.0.3-next.0
|
|
10
|
+
- @forge/manifest@8.6.1-next.0
|
|
11
|
+
|
|
12
|
+
## 6.5.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- a6ba0b4: Improved handling of manifest paths in manifest interpolators
|
|
17
|
+
- Updated dependencies [793b6cf]
|
|
18
|
+
- Updated dependencies [a6ba0b4]
|
|
19
|
+
- Updated dependencies [67d187b]
|
|
20
|
+
- @forge/manifest@8.6.0
|
|
21
|
+
|
|
3
22
|
## 6.5.4-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1462,9 +1462,14 @@ export declare type AppLogsWithMetaDataResponse = {
|
|
|
1462
1462
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
1463
1463
|
totalLogs: Scalars['Int']['output'];
|
|
1464
1464
|
};
|
|
1465
|
+
export declare enum AppNetworkEgressCategory {
|
|
1466
|
+
Analytics = "ANALYTICS"
|
|
1467
|
+
}
|
|
1465
1468
|
export declare type AppNetworkEgressPermission = {
|
|
1466
1469
|
__typename?: 'AppNetworkEgressPermission';
|
|
1467
1470
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
1471
|
+
category?: Maybe<AppNetworkEgressCategory>;
|
|
1472
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
1468
1473
|
type?: Maybe<AppNetworkPermissionType>;
|
|
1469
1474
|
};
|
|
1470
1475
|
export declare type AppNetworkEgressPermissionExtension = {
|
|
@@ -29418,6 +29423,7 @@ export declare type GraphStore = {
|
|
|
29418
29423
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
29419
29424
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
29420
29425
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
29426
|
+
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
29421
29427
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
29422
29428
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
29423
29429
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
@@ -32119,6 +32125,13 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
32119
32125
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32120
32126
|
id: Scalars['ID']['input'];
|
|
32121
32127
|
};
|
|
32128
|
+
export declare type GraphStoreThirdPartyToGraphRemoteLinkArgs = {
|
|
32129
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32130
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32131
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32132
|
+
id: Scalars['ID']['input'];
|
|
32133
|
+
sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
|
|
32134
|
+
};
|
|
32122
32135
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
32123
32136
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32124
32137
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33285,6 +33298,7 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
33285
33298
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
33286
33299
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33287
33300
|
};
|
|
33301
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
33288
33302
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
33289
33303
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
33290
33304
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
@@ -33296,9 +33310,15 @@ export declare type GraphStoreAtlasHomeQueryItem = {
|
|
|
33296
33310
|
data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
|
|
33297
33311
|
id: Scalars['ID']['output'];
|
|
33298
33312
|
};
|
|
33313
|
+
export declare type GraphStoreAtlasHomeQueryMetadata = {
|
|
33314
|
+
__typename?: 'GraphStoreAtlasHomeQueryMetadata';
|
|
33315
|
+
data?: Maybe<GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion>;
|
|
33316
|
+
id: Scalars['ID']['output'];
|
|
33317
|
+
};
|
|
33299
33318
|
export declare type GraphStoreAtlasHomeQueryNode = {
|
|
33300
33319
|
__typename?: 'GraphStoreAtlasHomeQueryNode';
|
|
33301
33320
|
item?: Maybe<GraphStoreAtlasHomeQueryItem>;
|
|
33321
|
+
metadata?: Maybe<GraphStoreAtlasHomeQueryMetadata>;
|
|
33302
33322
|
source: Scalars['String']['output'];
|
|
33303
33323
|
};
|
|
33304
33324
|
export declare type GraphStoreAtlasHomeRankingCriteria = {
|
|
@@ -42398,6 +42418,20 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
42398
42418
|
};
|
|
42399
42419
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
42400
42420
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
42421
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection = HasPageInfo & {
|
|
42422
|
+
__typename?: 'GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection';
|
|
42423
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge>>>;
|
|
42424
|
+
pageInfo: PageInfo;
|
|
42425
|
+
};
|
|
42426
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge = {
|
|
42427
|
+
__typename?: 'GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge';
|
|
42428
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42430
|
+
id: Scalars['ID']['output'];
|
|
42431
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42432
|
+
node?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion>;
|
|
42433
|
+
};
|
|
42434
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion = ExternalRemoteLink;
|
|
42401
42435
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
42402
42436
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
42403
42437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -44822,6 +44856,9 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
44822
44856
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
44823
44857
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44824
44858
|
};
|
|
44859
|
+
export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
44860
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44861
|
+
};
|
|
44825
44862
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
44826
44863
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44827
44864
|
};
|
|
@@ -45589,7 +45626,7 @@ export declare type HamsInvoiceGroup = CommerceInvoiceGroup & {
|
|
|
45589
45626
|
export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGroupExperienceCapabilities & {
|
|
45590
45627
|
__typename?: 'HamsInvoiceGroupExperienceCapabilities';
|
|
45591
45628
|
configurePayment?: Maybe<HamsExperienceCapability>;
|
|
45592
|
-
configurePaymentV2?: Maybe<
|
|
45629
|
+
configurePaymentV2?: Maybe<HamsConfigurePaymentMethodExperienceCapability>;
|
|
45593
45630
|
};
|
|
45594
45631
|
export declare type HamsOffering = CommerceOffering & {
|
|
45595
45632
|
__typename?: 'HamsOffering';
|
|
@@ -51441,6 +51478,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
51441
51478
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51442
51479
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
51443
51480
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51481
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
51444
51482
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
51445
51483
|
};
|
|
51446
51484
|
export declare type JiraDevInfoConfigError = {
|
|
@@ -62095,7 +62133,9 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
62095
62133
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
62096
62134
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
62097
62135
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62136
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
62098
62137
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62138
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
62099
62139
|
};
|
|
62100
62140
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
62101
62141
|
__typename?: 'JiraSpreadsheetGroupByConfig';
|
|
@@ -63487,6 +63527,9 @@ export declare type JiraUserPreferences = {
|
|
|
63487
63527
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
63488
63528
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
63489
63529
|
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
63530
|
+
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
63531
|
+
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
63532
|
+
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
63490
63533
|
};
|
|
63491
63534
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
63492
63535
|
projectKey: Scalars['String']['input'];
|
|
@@ -63508,6 +63551,9 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
63508
63551
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
63509
63552
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
63510
63553
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
63554
|
+
setShowRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
63555
|
+
setShowRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
63556
|
+
setShowRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
63511
63557
|
};
|
|
63512
63558
|
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
63513
63559
|
issueKey: Scalars['String']['input'];
|
|
@@ -63528,6 +63574,15 @@ export declare type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEn
|
|
|
63528
63574
|
export declare type JiraUserPreferencesMutationSetProjectListRightPanelStateArgs = {
|
|
63529
63575
|
state?: InputMaybe<JiraProjectListRightPanelState>;
|
|
63530
63576
|
};
|
|
63577
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnActionMenuArgs = {
|
|
63578
|
+
show: Scalars['Boolean']['input'];
|
|
63579
|
+
};
|
|
63580
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsEditorArgs = {
|
|
63581
|
+
show: Scalars['Boolean']['input'];
|
|
63582
|
+
};
|
|
63583
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsViewerArgs = {
|
|
63584
|
+
show: Scalars['Boolean']['input'];
|
|
63585
|
+
};
|
|
63531
63586
|
export declare type JiraUserSegmentation = {
|
|
63532
63587
|
__typename?: 'JiraUserSegmentation';
|
|
63533
63588
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -66002,6 +66057,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
66002
66057
|
};
|
|
66003
66058
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
66004
66059
|
locale: Scalars['String']['input'];
|
|
66060
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
66005
66061
|
query: Scalars['String']['input'];
|
|
66006
66062
|
siteId: Scalars['String']['input'];
|
|
66007
66063
|
};
|
|
@@ -78369,8 +78425,7 @@ export declare enum RadarEntityType {
|
|
|
78369
78425
|
Position = "position",
|
|
78370
78426
|
Worker = "worker"
|
|
78371
78427
|
}
|
|
78372
|
-
export declare type RadarFieldDefinition =
|
|
78373
|
-
__typename?: 'RadarFieldDefinition';
|
|
78428
|
+
export declare type RadarFieldDefinition = {
|
|
78374
78429
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78375
78430
|
displayName: Scalars['String']['output'];
|
|
78376
78431
|
entity: RadarEntityType;
|
|
@@ -78482,6 +78537,37 @@ export declare type RadarMutationResponse = {
|
|
|
78482
78537
|
__typename?: 'RadarMutationResponse';
|
|
78483
78538
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
78484
78539
|
};
|
|
78540
|
+
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
78541
|
+
__typename?: 'RadarNonNumericFieldDefinition';
|
|
78542
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78543
|
+
displayName: Scalars['String']['output'];
|
|
78544
|
+
entity: RadarEntityType;
|
|
78545
|
+
filterOptions: RadarFilterOptions;
|
|
78546
|
+
id: Scalars['ID']['output'];
|
|
78547
|
+
isCustom: Scalars['Boolean']['output'];
|
|
78548
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
78549
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
78550
|
+
relativeId: Scalars['String']['output'];
|
|
78551
|
+
type: RadarFieldType;
|
|
78552
|
+
};
|
|
78553
|
+
export declare enum RadarNumericAppearance {
|
|
78554
|
+
Duration = "DURATION",
|
|
78555
|
+
Number = "NUMBER"
|
|
78556
|
+
}
|
|
78557
|
+
export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
78558
|
+
__typename?: 'RadarNumericFieldDefinition';
|
|
78559
|
+
appearance: RadarNumericAppearance;
|
|
78560
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78561
|
+
displayName: Scalars['String']['output'];
|
|
78562
|
+
entity: RadarEntityType;
|
|
78563
|
+
filterOptions: RadarFilterOptions;
|
|
78564
|
+
id: Scalars['ID']['output'];
|
|
78565
|
+
isCustom: Scalars['Boolean']['output'];
|
|
78566
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
78567
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
78568
|
+
relativeId: Scalars['String']['output'];
|
|
78569
|
+
type: RadarFieldType;
|
|
78570
|
+
};
|
|
78485
78571
|
export declare type RadarNumericFieldValue = {
|
|
78486
78572
|
__typename?: 'RadarNumericFieldValue';
|
|
78487
78573
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -86789,6 +86875,7 @@ export declare type TrelloImagePreview = {
|
|
|
86789
86875
|
__typename?: 'TrelloImagePreview';
|
|
86790
86876
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
86791
86877
|
height?: Maybe<Scalars['Float']['output']>;
|
|
86878
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
86792
86879
|
scaled?: Maybe<Scalars['Boolean']['output']>;
|
|
86793
86880
|
url?: Maybe<Scalars['URL']['output']>;
|
|
86794
86881
|
width?: Maybe<Scalars['Float']['output']>;
|
|
@@ -87367,6 +87454,7 @@ export declare type TrelloPlannerProviderCalendarEdge = {
|
|
|
87367
87454
|
export declare type TrelloPlannerUpdated = {
|
|
87368
87455
|
__typename?: 'TrelloPlannerUpdated';
|
|
87369
87456
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
87457
|
+
id: Scalars['ID']['output'];
|
|
87370
87458
|
};
|
|
87371
87459
|
export declare type TrelloPlannerUpdatedCalendar = {
|
|
87372
87460
|
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
@@ -90461,6 +90549,15 @@ export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
|
90461
90549
|
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
90462
90550
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90463
90551
|
};
|
|
90552
|
+
export declare type WorkSuggestionsByProjectsResponseIssueDueSoonSuggestionsArgs = {
|
|
90553
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90554
|
+
};
|
|
90555
|
+
export declare type WorkSuggestionsByProjectsResponseIssueMissingDetailsSuggestionsArgs = {
|
|
90556
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90557
|
+
};
|
|
90558
|
+
export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs = {
|
|
90559
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90560
|
+
};
|
|
90464
90561
|
export declare type WorkSuggestionsCommon = {
|
|
90465
90562
|
id: Scalars['String']['output'];
|
|
90466
90563
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -90541,6 +90638,7 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
90541
90638
|
Unmapped = "UNMAPPED"
|
|
90542
90639
|
}
|
|
90543
90640
|
export declare type WorkSuggestionsInput = {
|
|
90641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90544
90642
|
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
90545
90643
|
};
|
|
90546
90644
|
export declare type WorkSuggestionsIssueDueSoonTask = WorkSuggestionsPeriscopeTask & {
|