@forge/cli-shared 6.5.4 → 6.5.5-next.1
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 +17 -0
- package/out/graphql/graphql-types.d.ts +105 -0
- 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,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.5-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8819889]
|
|
8
|
+
- @forge/i18n@0.0.3-next.1
|
|
9
|
+
- @forge/manifest@8.6.1-next.1
|
|
10
|
+
|
|
11
|
+
## 6.5.5-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [a92188e]
|
|
16
|
+
- Updated dependencies [cd0e244]
|
|
17
|
+
- @forge/i18n@0.0.3-next.0
|
|
18
|
+
- @forge/manifest@8.6.1-next.0
|
|
19
|
+
|
|
3
20
|
## 6.5.4
|
|
4
21
|
|
|
5
22
|
### 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 = {
|
|
@@ -22655,6 +22660,29 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
22655
22660
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
22656
22661
|
id: Scalars['ID']['output'];
|
|
22657
22662
|
};
|
|
22663
|
+
export declare type EcosystemGlobalInstallationConfigInput = {
|
|
22664
|
+
cloudId: Scalars['ID']['input'];
|
|
22665
|
+
config: Array<EcosystemGlobalInstallationOverrideInput>;
|
|
22666
|
+
};
|
|
22667
|
+
export declare type EcosystemGlobalInstallationConfigResponse = Payload & {
|
|
22668
|
+
__typename?: 'EcosystemGlobalInstallationConfigResponse';
|
|
22669
|
+
config?: Maybe<Array<EcosystemGlobalInstallationOverride>>;
|
|
22670
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22671
|
+
success: Scalars['Boolean']['output'];
|
|
22672
|
+
};
|
|
22673
|
+
export declare type EcosystemGlobalInstallationOverride = {
|
|
22674
|
+
__typename?: 'EcosystemGlobalInstallationOverride';
|
|
22675
|
+
key: EcosystemGlobalInstallationOverrideKeys;
|
|
22676
|
+
value: Scalars['Boolean']['output'];
|
|
22677
|
+
};
|
|
22678
|
+
export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
22679
|
+
key: EcosystemGlobalInstallationOverrideKeys;
|
|
22680
|
+
value: Scalars['Boolean']['input'];
|
|
22681
|
+
};
|
|
22682
|
+
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
22683
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
22684
|
+
AllowLogsAccess = "ALLOW_LOGS_ACCESS"
|
|
22685
|
+
}
|
|
22658
22686
|
export declare type EcosystemInstallationConfigInput = {
|
|
22659
22687
|
overrides: Array<EcosystemInstallationOverrides>;
|
|
22660
22688
|
};
|
|
@@ -22688,6 +22716,7 @@ export declare type EcosystemMutation = {
|
|
|
22688
22716
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
22689
22717
|
updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
|
|
22690
22718
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
22719
|
+
updateGlobalInstallationConfig?: Maybe<EcosystemGlobalInstallationConfigResponse>;
|
|
22691
22720
|
updateInstallationDetails?: Maybe<UpdateInstallationDetailsResponse>;
|
|
22692
22721
|
updateInstallationRemoteRegion?: Maybe<EcosystemUpdateInstallationRemoteRegionResponse>;
|
|
22693
22722
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
@@ -22740,6 +22769,9 @@ export declare type EcosystemMutationUpdateAppOAuthClientArgs = {
|
|
|
22740
22769
|
export declare type EcosystemMutationUpdateAppOwnershipArgs = {
|
|
22741
22770
|
input: UpdateAppOwnershipInput;
|
|
22742
22771
|
};
|
|
22772
|
+
export declare type EcosystemMutationUpdateGlobalInstallationConfigArgs = {
|
|
22773
|
+
input: EcosystemGlobalInstallationConfigInput;
|
|
22774
|
+
};
|
|
22743
22775
|
export declare type EcosystemMutationUpdateInstallationDetailsArgs = {
|
|
22744
22776
|
input: EcosystemUpdateInstallationDetailsInput;
|
|
22745
22777
|
};
|
|
@@ -22778,6 +22810,7 @@ export declare type EcosystemQuery = {
|
|
|
22778
22810
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
22779
22811
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
22780
22812
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
22813
|
+
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
22781
22814
|
userAccess?: Maybe<UserAccess>;
|
|
22782
22815
|
userGrants?: Maybe<UserGrantConnection>;
|
|
22783
22816
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -22840,6 +22873,10 @@ export declare type EcosystemQueryForgeMetricsArgs = {
|
|
|
22840
22873
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
22841
22874
|
appKey: Scalars['ID']['input'];
|
|
22842
22875
|
};
|
|
22876
|
+
export declare type EcosystemQueryGlobalInstallationConfigArgs = {
|
|
22877
|
+
cloudId: Scalars['ID']['input'];
|
|
22878
|
+
filter?: InputMaybe<GlobalInstallationConfigFilter>;
|
|
22879
|
+
};
|
|
22843
22880
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
22844
22881
|
contextId: Scalars['ID']['input'];
|
|
22845
22882
|
definitionId: Scalars['ID']['input'];
|
|
@@ -25341,6 +25378,9 @@ export declare type GlobalCardCreateAdditionalFields = {
|
|
|
25341
25378
|
rankCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
25342
25379
|
sprintCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
25343
25380
|
};
|
|
25381
|
+
export declare type GlobalInstallationConfigFilter = {
|
|
25382
|
+
keys: Array<EcosystemGlobalInstallationOverrideKeys>;
|
|
25383
|
+
};
|
|
25344
25384
|
export declare type GlobalSpaceConfiguration = {
|
|
25345
25385
|
__typename?: 'GlobalSpaceConfiguration';
|
|
25346
25386
|
publicLinkDefaultSpaceStatus?: Maybe<PublicLinkDefaultSpaceStatus>;
|
|
@@ -29418,6 +29458,7 @@ export declare type GraphStore = {
|
|
|
29418
29458
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
29419
29459
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
29420
29460
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
29461
|
+
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
29421
29462
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
29422
29463
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
29423
29464
|
userAssignedPir?: Maybe<GraphStoreSimplifiedUserAssignedPirConnection>;
|
|
@@ -32119,6 +32160,13 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
32119
32160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32120
32161
|
id: Scalars['ID']['input'];
|
|
32121
32162
|
};
|
|
32163
|
+
export declare type GraphStoreThirdPartyToGraphRemoteLinkArgs = {
|
|
32164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32165
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32166
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32167
|
+
id: Scalars['ID']['input'];
|
|
32168
|
+
sort?: InputMaybe<GraphStoreThirdPartyToGraphRemoteLinkSortInput>;
|
|
32169
|
+
};
|
|
32122
32170
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
32123
32171
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32124
32172
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33285,6 +33333,7 @@ export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
|
33285
33333
|
export declare type GraphStoreAtlasGoalHasSubAtlasGoalSortInput = {
|
|
33286
33334
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33287
33335
|
};
|
|
33336
|
+
export declare type GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
33288
33337
|
export declare type GraphStoreAtlasHomeFeedQueryToNodeUnion = JiraIssue | TeamV2 | TownsquareGoal | TownsquareProject;
|
|
33289
33338
|
export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
33290
33339
|
__typename?: 'GraphStoreAtlasHomeQueryConnection';
|
|
@@ -33296,9 +33345,15 @@ export declare type GraphStoreAtlasHomeQueryItem = {
|
|
|
33296
33345
|
data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
|
|
33297
33346
|
id: Scalars['ID']['output'];
|
|
33298
33347
|
};
|
|
33348
|
+
export declare type GraphStoreAtlasHomeQueryMetadata = {
|
|
33349
|
+
__typename?: 'GraphStoreAtlasHomeQueryMetadata';
|
|
33350
|
+
data?: Maybe<GraphStoreAtlasHomeFeedQueryToMetadataNodeUnion>;
|
|
33351
|
+
id: Scalars['ID']['output'];
|
|
33352
|
+
};
|
|
33299
33353
|
export declare type GraphStoreAtlasHomeQueryNode = {
|
|
33300
33354
|
__typename?: 'GraphStoreAtlasHomeQueryNode';
|
|
33301
33355
|
item?: Maybe<GraphStoreAtlasHomeQueryItem>;
|
|
33356
|
+
metadata?: Maybe<GraphStoreAtlasHomeQueryMetadata>;
|
|
33302
33357
|
source: Scalars['String']['output'];
|
|
33303
33358
|
};
|
|
33304
33359
|
export declare type GraphStoreAtlasHomeRankingCriteria = {
|
|
@@ -42398,6 +42453,20 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
42398
42453
|
};
|
|
42399
42454
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
42400
42455
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
42456
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection = HasPageInfo & {
|
|
42457
|
+
__typename?: 'GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection';
|
|
42458
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge>>>;
|
|
42459
|
+
pageInfo: PageInfo;
|
|
42460
|
+
};
|
|
42461
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge = {
|
|
42462
|
+
__typename?: 'GraphStoreSimplifiedThirdPartyToGraphRemoteLinkEdge';
|
|
42463
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42464
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42465
|
+
id: Scalars['ID']['output'];
|
|
42466
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42467
|
+
node?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion>;
|
|
42468
|
+
};
|
|
42469
|
+
export declare type GraphStoreSimplifiedThirdPartyToGraphRemoteLinkUnion = ExternalRemoteLink;
|
|
42401
42470
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
42402
42471
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
42403
42472
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -44822,6 +44891,9 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
44822
44891
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
44823
44892
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44824
44893
|
};
|
|
44894
|
+
export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
44895
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44896
|
+
};
|
|
44825
44897
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
44826
44898
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44827
44899
|
};
|
|
@@ -51441,6 +51513,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
51441
51513
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51442
51514
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
51443
51515
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51516
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
51444
51517
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
51445
51518
|
};
|
|
51446
51519
|
export declare type JiraDevInfoConfigError = {
|
|
@@ -62095,7 +62168,9 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
62095
62168
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
62096
62169
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
62097
62170
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62171
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
62098
62172
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62173
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
62099
62174
|
};
|
|
62100
62175
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
62101
62176
|
__typename?: 'JiraSpreadsheetGroupByConfig';
|
|
@@ -63487,6 +63562,9 @@ export declare type JiraUserPreferences = {
|
|
|
63487
63562
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
63488
63563
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
63489
63564
|
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
63565
|
+
showRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
63566
|
+
showRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
63567
|
+
showRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
63490
63568
|
};
|
|
63491
63569
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
63492
63570
|
projectKey: Scalars['String']['input'];
|
|
@@ -63508,6 +63586,9 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
63508
63586
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
63509
63587
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
63510
63588
|
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
63589
|
+
setShowRedactionChangeBoardingOnActionMenu?: Maybe<Scalars['Boolean']['output']>;
|
|
63590
|
+
setShowRedactionChangeBoardingOnIssueViewAsEditor?: Maybe<Scalars['Boolean']['output']>;
|
|
63591
|
+
setShowRedactionChangeBoardingOnIssueViewAsViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
63511
63592
|
};
|
|
63512
63593
|
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
63513
63594
|
issueKey: Scalars['String']['input'];
|
|
@@ -63528,6 +63609,15 @@ export declare type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEn
|
|
|
63528
63609
|
export declare type JiraUserPreferencesMutationSetProjectListRightPanelStateArgs = {
|
|
63529
63610
|
state?: InputMaybe<JiraProjectListRightPanelState>;
|
|
63530
63611
|
};
|
|
63612
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnActionMenuArgs = {
|
|
63613
|
+
show: Scalars['Boolean']['input'];
|
|
63614
|
+
};
|
|
63615
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsEditorArgs = {
|
|
63616
|
+
show: Scalars['Boolean']['input'];
|
|
63617
|
+
};
|
|
63618
|
+
export declare type JiraUserPreferencesMutationSetShowRedactionChangeBoardingOnIssueViewAsViewerArgs = {
|
|
63619
|
+
show: Scalars['Boolean']['input'];
|
|
63620
|
+
};
|
|
63531
63621
|
export declare type JiraUserSegmentation = {
|
|
63532
63622
|
__typename?: 'JiraUserSegmentation';
|
|
63533
63623
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -66002,6 +66092,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
66002
66092
|
};
|
|
66003
66093
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
66004
66094
|
locale: Scalars['String']['input'];
|
|
66095
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
66005
66096
|
query: Scalars['String']['input'];
|
|
66006
66097
|
siteId: Scalars['String']['input'];
|
|
66007
66098
|
};
|
|
@@ -78370,6 +78461,7 @@ export declare enum RadarEntityType {
|
|
|
78370
78461
|
Worker = "worker"
|
|
78371
78462
|
}
|
|
78372
78463
|
export declare type RadarFieldDefinition = {
|
|
78464
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78373
78465
|
displayName: Scalars['String']['output'];
|
|
78374
78466
|
entity: RadarEntityType;
|
|
78375
78467
|
filterOptions: RadarFilterOptions;
|
|
@@ -78500,6 +78592,7 @@ export declare enum RadarNumericAppearance {
|
|
|
78500
78592
|
export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
78501
78593
|
__typename?: 'RadarNumericFieldDefinition';
|
|
78502
78594
|
appearance: RadarNumericAppearance;
|
|
78595
|
+
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
78503
78596
|
displayName: Scalars['String']['output'];
|
|
78504
78597
|
entity: RadarEntityType;
|
|
78505
78598
|
filterOptions: RadarFilterOptions;
|
|
@@ -86817,6 +86910,7 @@ export declare type TrelloImagePreview = {
|
|
|
86817
86910
|
__typename?: 'TrelloImagePreview';
|
|
86818
86911
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
86819
86912
|
height?: Maybe<Scalars['Float']['output']>;
|
|
86913
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
86820
86914
|
scaled?: Maybe<Scalars['Boolean']['output']>;
|
|
86821
86915
|
url?: Maybe<Scalars['URL']['output']>;
|
|
86822
86916
|
width?: Maybe<Scalars['Float']['output']>;
|
|
@@ -87395,6 +87489,7 @@ export declare type TrelloPlannerProviderCalendarEdge = {
|
|
|
87395
87489
|
export declare type TrelloPlannerUpdated = {
|
|
87396
87490
|
__typename?: 'TrelloPlannerUpdated';
|
|
87397
87491
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
87492
|
+
id: Scalars['ID']['output'];
|
|
87398
87493
|
};
|
|
87399
87494
|
export declare type TrelloPlannerUpdatedCalendar = {
|
|
87400
87495
|
__typename?: 'TrelloPlannerUpdatedCalendar';
|
|
@@ -90489,6 +90584,15 @@ export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
|
90489
90584
|
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
90490
90585
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90491
90586
|
};
|
|
90587
|
+
export declare type WorkSuggestionsByProjectsResponseIssueDueSoonSuggestionsArgs = {
|
|
90588
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90589
|
+
};
|
|
90590
|
+
export declare type WorkSuggestionsByProjectsResponseIssueMissingDetailsSuggestionsArgs = {
|
|
90591
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90592
|
+
};
|
|
90593
|
+
export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs = {
|
|
90594
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
90595
|
+
};
|
|
90492
90596
|
export declare type WorkSuggestionsCommon = {
|
|
90493
90597
|
id: Scalars['String']['output'];
|
|
90494
90598
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -90569,6 +90673,7 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
90569
90673
|
Unmapped = "UNMAPPED"
|
|
90570
90674
|
}
|
|
90571
90675
|
export declare type WorkSuggestionsInput = {
|
|
90676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90572
90677
|
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
90573
90678
|
};
|
|
90574
90679
|
export declare type WorkSuggestionsIssueDueSoonTask = WorkSuggestionsPeriscopeTask & {
|