@forge/cli-shared 5.5.0-next.10 → 5.5.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 +21 -0
- package/out/graphql/graphql-types.d.ts +123 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +7 -1
- package/out/service/i18n-resource-bundling-service.d.ts +21 -0
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -0
- package/out/service/i18n-resource-bundling-service.js +97 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.5.0-next.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ce41b8c]
|
|
8
|
+
- @forge/manifest@7.7.0-next.12
|
|
9
|
+
- @forge/i18n@0.0.1-next.11
|
|
10
|
+
|
|
11
|
+
## 5.5.0-next.11
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 60a4b5b: Include i18n resource utility functions to support Forge i18n in the CLI and bundler
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [bf34881]
|
|
20
|
+
- Updated dependencies [c81fa57]
|
|
21
|
+
- @forge/manifest@7.7.0-next.11
|
|
22
|
+
- @forge/i18n@0.0.1-next.10
|
|
23
|
+
|
|
3
24
|
## 5.5.0-next.10
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -3740,6 +3740,7 @@ export declare type CompassComponent = Node & {
|
|
|
3740
3740
|
api?: Maybe<CompassComponentApi>;
|
|
3741
3741
|
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
3742
3742
|
changeMetadata: CompassChangeMetadata;
|
|
3743
|
+
componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
|
|
3743
3744
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
3744
3745
|
dataManager?: Maybe<CompassComponentDataManager>;
|
|
3745
3746
|
deactivatedScorecards?: Maybe<CompassDeactivatedScorecardsConnection>;
|
|
@@ -3909,6 +3910,13 @@ export declare type CompassComponentDeactivatedScorecardsEdge = {
|
|
|
3909
3910
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
3910
3911
|
node?: Maybe<CompassDeactivatedScorecard>;
|
|
3911
3912
|
};
|
|
3913
|
+
export declare type CompassComponentDescriptionDetails = {
|
|
3914
|
+
__typename?: 'CompassComponentDescriptionDetails';
|
|
3915
|
+
content: Scalars['String']['output'];
|
|
3916
|
+
};
|
|
3917
|
+
export declare type CompassComponentDescriptionDetailsInput = {
|
|
3918
|
+
content: Scalars['String']['input'];
|
|
3919
|
+
};
|
|
3912
3920
|
export declare type CompassComponentEndpoint = {
|
|
3913
3921
|
__typename?: 'CompassComponentEndpoint';
|
|
3914
3922
|
checksum: Scalars['String']['output'];
|
|
@@ -5928,12 +5936,16 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
5928
5936
|
};
|
|
5929
5937
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
5930
5938
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
5939
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5931
5940
|
cursor: Scalars['String']['output'];
|
|
5932
5941
|
deactivatedBy?: Maybe<User>;
|
|
5933
5942
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
5934
5943
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
5935
5944
|
node?: Maybe<CompassComponent>;
|
|
5936
5945
|
};
|
|
5946
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
5947
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
5948
|
+
};
|
|
5937
5949
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
5938
5950
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
5939
5951
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -19034,9 +19046,10 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
19034
19046
|
appId: Scalars['ID']['input'];
|
|
19035
19047
|
};
|
|
19036
19048
|
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
19037
|
-
|
|
19038
|
-
|
|
19039
|
-
|
|
19049
|
+
appId: Scalars['ID']['input'];
|
|
19050
|
+
channel: Scalars['String']['input'];
|
|
19051
|
+
contextAri: Scalars['ID']['input'];
|
|
19052
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19040
19053
|
payload: Scalars['String']['input'];
|
|
19041
19054
|
};
|
|
19042
19055
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
@@ -19154,9 +19167,10 @@ export declare type EcosystemSubscription = {
|
|
|
19154
19167
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
19155
19168
|
};
|
|
19156
19169
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
19157
|
-
|
|
19158
|
-
|
|
19159
|
-
|
|
19170
|
+
appId: Scalars['ID']['input'];
|
|
19171
|
+
channel: Scalars['String']['input'];
|
|
19172
|
+
contextAri: Scalars['ID']['input'];
|
|
19173
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19160
19174
|
};
|
|
19161
19175
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
19162
19176
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -38830,9 +38844,14 @@ export declare type JiraAdvancedRoadmapsNavigation = {
|
|
|
38830
38844
|
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38831
38845
|
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
38832
38846
|
};
|
|
38833
|
-
export declare type JiraAffectedService = {
|
|
38847
|
+
export declare type JiraAffectedService = JiraSelectableValue & {
|
|
38834
38848
|
__typename?: 'JiraAffectedService';
|
|
38849
|
+
id: Scalars['ID']['output'];
|
|
38835
38850
|
name?: Maybe<Scalars['String']['output']>;
|
|
38851
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
38852
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
38853
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
38854
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
38836
38855
|
serviceId: Scalars['ID']['output'];
|
|
38837
38856
|
};
|
|
38838
38857
|
export declare type JiraAffectedServiceConnection = {
|
|
@@ -38847,7 +38866,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
38847
38866
|
cursor: Scalars['String']['output'];
|
|
38848
38867
|
node?: Maybe<JiraAffectedService>;
|
|
38849
38868
|
};
|
|
38850
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38869
|
+
export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38851
38870
|
__typename?: 'JiraAffectedServicesField';
|
|
38852
38871
|
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
38853
38872
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38859,8 +38878,10 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38859
38878
|
issue?: Maybe<JiraIssue>;
|
|
38860
38879
|
name: Scalars['String']['output'];
|
|
38861
38880
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38881
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38862
38882
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
38863
38883
|
selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
|
|
38884
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
38864
38885
|
type: Scalars['String']['output'];
|
|
38865
38886
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38866
38887
|
};
|
|
@@ -38872,12 +38893,27 @@ export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
|
|
|
38872
38893
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38873
38894
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38874
38895
|
};
|
|
38896
|
+
export declare type JiraAffectedServicesFieldSelectableValueOptionsArgs = {
|
|
38897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38898
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38899
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38901
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38902
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38903
|
+
};
|
|
38875
38904
|
export declare type JiraAffectedServicesFieldSelectedAffectedServicesConnectionArgs = {
|
|
38876
38905
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38877
38906
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38878
38907
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38879
38908
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38880
38909
|
};
|
|
38910
|
+
export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
|
|
38911
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38912
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38914
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38915
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38916
|
+
};
|
|
38881
38917
|
export declare type JiraAffectedServicesFieldInput = {
|
|
38882
38918
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38883
38919
|
fieldId: Scalars['ID']['input'];
|
|
@@ -45190,6 +45226,7 @@ export declare type JiraMutation = {
|
|
|
45190
45226
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
45191
45227
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
45192
45228
|
updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
|
|
45229
|
+
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
45193
45230
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
45194
45231
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
45195
45232
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -45585,6 +45622,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
45585
45622
|
export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
|
|
45586
45623
|
input?: InputMaybe<JiraUpdateViewConfigInput>;
|
|
45587
45624
|
};
|
|
45625
|
+
export declare type JiraMutationUpdateJsmOrganizationFieldArgs = {
|
|
45626
|
+
input: JiraServiceManagementUpdateOrganizationFieldInput;
|
|
45627
|
+
};
|
|
45588
45628
|
export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
45589
45629
|
input: JiraWorkManagementUpdateFilterInput;
|
|
45590
45630
|
};
|
|
@@ -49735,6 +49775,16 @@ export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
|
|
|
49735
49775
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49736
49776
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49737
49777
|
};
|
|
49778
|
+
export declare type JiraServiceManagementOrganizationFieldOperationInput = {
|
|
49779
|
+
ids: Array<Scalars['ID']['input']>;
|
|
49780
|
+
operation: JiraMultiValueFieldOperations;
|
|
49781
|
+
};
|
|
49782
|
+
export declare type JiraServiceManagementOrganizationFieldPayload = Payload & {
|
|
49783
|
+
__typename?: 'JiraServiceManagementOrganizationFieldPayload';
|
|
49784
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49785
|
+
field?: Maybe<JiraServiceManagementOrganizationField>;
|
|
49786
|
+
success: Scalars['Boolean']['output'];
|
|
49787
|
+
};
|
|
49738
49788
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49739
49789
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49740
49790
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50054,6 +50104,10 @@ export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
|
50054
50104
|
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
50055
50105
|
operation: JiraSingleValueFieldOperations;
|
|
50056
50106
|
};
|
|
50107
|
+
export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
|
|
50108
|
+
id: Scalars['ID']['input'];
|
|
50109
|
+
operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
|
|
50110
|
+
};
|
|
50057
50111
|
export declare type JiraServiceManagementUpdateSentimentFieldInput = {
|
|
50058
50112
|
id: Scalars['ID']['input'];
|
|
50059
50113
|
operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
|
|
@@ -51169,14 +51223,17 @@ export declare type JiraUiModification = {
|
|
|
51169
51223
|
id: Scalars['ID']['output'];
|
|
51170
51224
|
};
|
|
51171
51225
|
export declare type JiraUiModificationsContextInput = {
|
|
51172
|
-
issueTypeId
|
|
51173
|
-
|
|
51226
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51227
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
51228
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
51229
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51174
51230
|
viewType: JiraUiModificationsViewType;
|
|
51175
51231
|
};
|
|
51176
51232
|
export declare enum JiraUiModificationsViewType {
|
|
51177
51233
|
Gic = "GIC",
|
|
51178
51234
|
IssueTransition = "IssueTransition",
|
|
51179
|
-
IssueView = "IssueView"
|
|
51235
|
+
IssueView = "IssueView",
|
|
51236
|
+
JsmRequestCreate = "JSMRequestCreate"
|
|
51180
51237
|
}
|
|
51181
51238
|
export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
51182
51239
|
incidentId: Scalars['ID']['input'];
|
|
@@ -67771,6 +67828,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
67771
67828
|
name?: Maybe<Scalars['String']['output']>;
|
|
67772
67829
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67773
67830
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
67831
|
+
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
67774
67832
|
};
|
|
67775
67833
|
export declare type TrelloBoardViewer = {
|
|
67776
67834
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -68376,9 +68434,14 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
68376
68434
|
export declare type TrelloPlannerAccount = Node & {
|
|
68377
68435
|
__typename?: 'TrelloPlannerAccount';
|
|
68378
68436
|
accountType: TrelloSupportedPlannerProviders;
|
|
68437
|
+
allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68379
68438
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68380
68439
|
id: Scalars['ID']['output'];
|
|
68381
68440
|
};
|
|
68441
|
+
export declare type TrelloPlannerAccountAllCalendarsArgs = {
|
|
68442
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68443
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68444
|
+
};
|
|
68382
68445
|
export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
|
|
68383
68446
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68384
68447
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -69410,6 +69473,7 @@ export declare type UpdateCompassComponentDataManagerMetadataPayload = Payload &
|
|
|
69410
69473
|
success: Scalars['Boolean']['output'];
|
|
69411
69474
|
};
|
|
69412
69475
|
export declare type UpdateCompassComponentInput = {
|
|
69476
|
+
componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
|
|
69413
69477
|
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
69414
69478
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
69415
69479
|
fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
|
|
@@ -70601,8 +70665,11 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
70601
70665
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
70602
70666
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
70603
70667
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
70668
|
+
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
70604
70669
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
70605
70670
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
70671
|
+
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
70672
|
+
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
70606
70673
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70607
70674
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
70608
70675
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
@@ -70610,6 +70677,9 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
70610
70677
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
70611
70678
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70612
70679
|
};
|
|
70680
|
+
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
70681
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70682
|
+
};
|
|
70613
70683
|
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
70614
70684
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70615
70685
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -70617,6 +70687,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
70617
70687
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
70618
70688
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70619
70689
|
};
|
|
70690
|
+
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
70691
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70692
|
+
};
|
|
70620
70693
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
70621
70694
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
70622
70695
|
cursor: Scalars['String']['output'];
|
|
@@ -70773,6 +70846,9 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
70773
70846
|
Testing = "TESTING",
|
|
70774
70847
|
Unmapped = "UNMAPPED"
|
|
70775
70848
|
}
|
|
70849
|
+
export declare type WorkSuggestionsInput = {
|
|
70850
|
+
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
70851
|
+
};
|
|
70776
70852
|
export declare type WorkSuggestionsJiraAssignee = {
|
|
70777
70853
|
__typename?: 'WorkSuggestionsJiraAssignee';
|
|
70778
70854
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -70868,6 +70944,38 @@ export declare type WorkSuggestionsPeriscopeTask = {
|
|
|
70868
70944
|
title: Scalars['String']['output'];
|
|
70869
70945
|
url: Scalars['String']['output'];
|
|
70870
70946
|
};
|
|
70947
|
+
export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
|
|
70948
|
+
__typename?: 'WorkSuggestionsPullRequestDraftTask';
|
|
70949
|
+
approvalsCount: Scalars['Int']['output'];
|
|
70950
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
70951
|
+
commentCount: Scalars['Int']['output'];
|
|
70952
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
70953
|
+
id: Scalars['String']['output'];
|
|
70954
|
+
lastUpdated: Scalars['String']['output'];
|
|
70955
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
70956
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
70957
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
70958
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
70959
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
70960
|
+
title: Scalars['String']['output'];
|
|
70961
|
+
url: Scalars['String']['output'];
|
|
70962
|
+
};
|
|
70963
|
+
export declare type WorkSuggestionsPullRequestInactiveTask = WorkSuggestionsCommon & {
|
|
70964
|
+
__typename?: 'WorkSuggestionsPullRequestInactiveTask';
|
|
70965
|
+
approvalsCount: Scalars['Int']['output'];
|
|
70966
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
70967
|
+
commentCount: Scalars['Int']['output'];
|
|
70968
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
70969
|
+
id: Scalars['String']['output'];
|
|
70970
|
+
lastUpdated: Scalars['String']['output'];
|
|
70971
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
70972
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
70973
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
70974
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
70975
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
70976
|
+
title: Scalars['String']['output'];
|
|
70977
|
+
url: Scalars['String']['output'];
|
|
70978
|
+
};
|
|
70871
70979
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
70872
70980
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
70873
70981
|
commentCount: Scalars['Int']['output'];
|
|
@@ -70929,6 +71037,10 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
|
70929
71037
|
success: Scalars['Boolean']['output'];
|
|
70930
71038
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
70931
71039
|
};
|
|
71040
|
+
export declare enum WorkSuggestionsTargetAudience {
|
|
71041
|
+
Me = "ME",
|
|
71042
|
+
Team = "TEAM"
|
|
71043
|
+
}
|
|
70932
71044
|
export declare type WorkSuggestionsUserActionState = {
|
|
70933
71045
|
__typename?: 'WorkSuggestionsUserActionState';
|
|
70934
71046
|
expireAt: Scalars['String']['output'];
|