@forge/cli-shared 5.5.0-next.10 → 5.5.0-next.11
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 +13 -0
- package/out/graphql/graphql-types.d.ts +57 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- 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,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.5.0-next.11
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 60a4b5b: Include i18n resource utility functions to support Forge i18n in the CLI and bundler
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [bf34881]
|
|
12
|
+
- Updated dependencies [c81fa57]
|
|
13
|
+
- @forge/manifest@7.7.0-next.11
|
|
14
|
+
- @forge/i18n@0.0.1-next.10
|
|
15
|
+
|
|
3
16
|
## 5.5.0-next.10
|
|
4
17
|
|
|
5
18
|
### 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'];
|
|
@@ -38830,9 +38838,14 @@ export declare type JiraAdvancedRoadmapsNavigation = {
|
|
|
38830
38838
|
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38831
38839
|
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
38832
38840
|
};
|
|
38833
|
-
export declare type JiraAffectedService = {
|
|
38841
|
+
export declare type JiraAffectedService = JiraSelectableValue & {
|
|
38834
38842
|
__typename?: 'JiraAffectedService';
|
|
38843
|
+
id: Scalars['ID']['output'];
|
|
38835
38844
|
name?: Maybe<Scalars['String']['output']>;
|
|
38845
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
38846
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
38847
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
38848
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
38836
38849
|
serviceId: Scalars['ID']['output'];
|
|
38837
38850
|
};
|
|
38838
38851
|
export declare type JiraAffectedServiceConnection = {
|
|
@@ -38847,7 +38860,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
38847
38860
|
cursor: Scalars['String']['output'];
|
|
38848
38861
|
node?: Maybe<JiraAffectedService>;
|
|
38849
38862
|
};
|
|
38850
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38863
|
+
export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38851
38864
|
__typename?: 'JiraAffectedServicesField';
|
|
38852
38865
|
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
38853
38866
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38859,8 +38872,10 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38859
38872
|
issue?: Maybe<JiraIssue>;
|
|
38860
38873
|
name: Scalars['String']['output'];
|
|
38861
38874
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38875
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38862
38876
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
38863
38877
|
selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
|
|
38878
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
38864
38879
|
type: Scalars['String']['output'];
|
|
38865
38880
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38866
38881
|
};
|
|
@@ -38872,12 +38887,27 @@ export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
|
|
|
38872
38887
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38873
38888
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38874
38889
|
};
|
|
38890
|
+
export declare type JiraAffectedServicesFieldSelectableValueOptionsArgs = {
|
|
38891
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38892
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38893
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38894
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38895
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38896
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38897
|
+
};
|
|
38875
38898
|
export declare type JiraAffectedServicesFieldSelectedAffectedServicesConnectionArgs = {
|
|
38876
38899
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38877
38900
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38878
38901
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38879
38902
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38880
38903
|
};
|
|
38904
|
+
export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
|
|
38905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38906
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38908
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38909
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38910
|
+
};
|
|
38881
38911
|
export declare type JiraAffectedServicesFieldInput = {
|
|
38882
38912
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38883
38913
|
fieldId: Scalars['ID']['input'];
|
|
@@ -45190,6 +45220,7 @@ export declare type JiraMutation = {
|
|
|
45190
45220
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
45191
45221
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
45192
45222
|
updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
|
|
45223
|
+
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
45193
45224
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
45194
45225
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
45195
45226
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -45585,6 +45616,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
45585
45616
|
export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
|
|
45586
45617
|
input?: InputMaybe<JiraUpdateViewConfigInput>;
|
|
45587
45618
|
};
|
|
45619
|
+
export declare type JiraMutationUpdateJsmOrganizationFieldArgs = {
|
|
45620
|
+
input: JiraServiceManagementUpdateOrganizationFieldInput;
|
|
45621
|
+
};
|
|
45588
45622
|
export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
45589
45623
|
input: JiraWorkManagementUpdateFilterInput;
|
|
45590
45624
|
};
|
|
@@ -49735,6 +49769,16 @@ export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
|
|
|
49735
49769
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49736
49770
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49737
49771
|
};
|
|
49772
|
+
export declare type JiraServiceManagementOrganizationFieldOperationInput = {
|
|
49773
|
+
ids: Array<Scalars['ID']['input']>;
|
|
49774
|
+
operation: JiraMultiValueFieldOperations;
|
|
49775
|
+
};
|
|
49776
|
+
export declare type JiraServiceManagementOrganizationFieldPayload = Payload & {
|
|
49777
|
+
__typename?: 'JiraServiceManagementOrganizationFieldPayload';
|
|
49778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49779
|
+
field?: Maybe<JiraServiceManagementOrganizationField>;
|
|
49780
|
+
success: Scalars['Boolean']['output'];
|
|
49781
|
+
};
|
|
49738
49782
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49739
49783
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49740
49784
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50054,6 +50098,10 @@ export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
|
50054
50098
|
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
50055
50099
|
operation: JiraSingleValueFieldOperations;
|
|
50056
50100
|
};
|
|
50101
|
+
export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
|
|
50102
|
+
id: Scalars['ID']['input'];
|
|
50103
|
+
operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
|
|
50104
|
+
};
|
|
50057
50105
|
export declare type JiraServiceManagementUpdateSentimentFieldInput = {
|
|
50058
50106
|
id: Scalars['ID']['input'];
|
|
50059
50107
|
operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
|
|
@@ -51169,14 +51217,17 @@ export declare type JiraUiModification = {
|
|
|
51169
51217
|
id: Scalars['ID']['output'];
|
|
51170
51218
|
};
|
|
51171
51219
|
export declare type JiraUiModificationsContextInput = {
|
|
51172
|
-
issueTypeId
|
|
51173
|
-
|
|
51220
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51221
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
51222
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
51223
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51174
51224
|
viewType: JiraUiModificationsViewType;
|
|
51175
51225
|
};
|
|
51176
51226
|
export declare enum JiraUiModificationsViewType {
|
|
51177
51227
|
Gic = "GIC",
|
|
51178
51228
|
IssueTransition = "IssueTransition",
|
|
51179
|
-
IssueView = "IssueView"
|
|
51229
|
+
IssueView = "IssueView",
|
|
51230
|
+
JsmRequestCreate = "JSMRequestCreate"
|
|
51180
51231
|
}
|
|
51181
51232
|
export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
51182
51233
|
incidentId: Scalars['ID']['input'];
|
|
@@ -69410,6 +69461,7 @@ export declare type UpdateCompassComponentDataManagerMetadataPayload = Payload &
|
|
|
69410
69461
|
success: Scalars['Boolean']['output'];
|
|
69411
69462
|
};
|
|
69412
69463
|
export declare type UpdateCompassComponentInput = {
|
|
69464
|
+
componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
|
|
69413
69465
|
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
69414
69466
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
69415
69467
|
fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
|