@forge/cli-shared 3.8.0-next.6 → 3.8.0-next.7
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 +11 -0
- package/out/graphql/graphql-types.d.ts +52 -51
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/out/ui/text.d.ts +6 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.8.0-next.7
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9614f64: Add warning to Forge linter for scopes that require interactive user consent
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [9614f64]
|
|
12
|
+
- @forge/manifest@4.8.0-next.3
|
|
13
|
+
|
|
3
14
|
## 3.8.0-next.6
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -5353,12 +5353,6 @@ export declare type CreateJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
5353
5353
|
errors?: Maybe<Array<MutationError>>;
|
|
5354
5354
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
5355
5355
|
};
|
|
5356
|
-
export declare type CreatePolarisAnonymousVisitorHashPayload = Payload & {
|
|
5357
|
-
__typename?: 'CreatePolarisAnonymousVisitorHashPayload';
|
|
5358
|
-
success: Scalars['Boolean'];
|
|
5359
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5360
|
-
node?: Maybe<PolarisAnonymousVisitorHash>;
|
|
5361
|
-
};
|
|
5362
5356
|
export declare type CreatePolarisCalculatedField = {
|
|
5363
5357
|
project: Scalars['ID'];
|
|
5364
5358
|
label: Scalars['String'];
|
|
@@ -5981,11 +5975,6 @@ export declare type DeleteJiraProjectAndRepositoryRelationshipPayload = Payload
|
|
|
5981
5975
|
success: Scalars['Boolean'];
|
|
5982
5976
|
errors?: Maybe<Array<MutationError>>;
|
|
5983
5977
|
};
|
|
5984
|
-
export declare type DeletePolarisAnonymousVisitorHashPayload = Payload & {
|
|
5985
|
-
__typename?: 'DeletePolarisAnonymousVisitorHashPayload';
|
|
5986
|
-
success: Scalars['Boolean'];
|
|
5987
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5988
|
-
};
|
|
5989
5978
|
export declare type DeletePolarisDecorationInput = {
|
|
5990
5979
|
emoji?: Maybe<Scalars['Boolean']>;
|
|
5991
5980
|
backgroundColor?: Maybe<Scalars['Boolean']>;
|
|
@@ -12557,7 +12546,8 @@ export declare enum JiraPermissionTagEnum {
|
|
|
12557
12546
|
New = "NEW"
|
|
12558
12547
|
}
|
|
12559
12548
|
export declare enum JiraPermissionType {
|
|
12560
|
-
BrowseProjects = "BROWSE_PROJECTS"
|
|
12549
|
+
BrowseProjects = "BROWSE_PROJECTS",
|
|
12550
|
+
BulkChange = "BULK_CHANGE"
|
|
12561
12551
|
}
|
|
12562
12552
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
12563
12553
|
__typename?: 'JiraPlatformAttachment';
|
|
@@ -15315,6 +15305,7 @@ export declare type JiraVersion = Node & {
|
|
|
15315
15305
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
15316
15306
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
15317
15307
|
warningsCount?: Maybe<Scalars['Long']>;
|
|
15308
|
+
contributors?: Maybe<JiraVersionContributorConnection>;
|
|
15318
15309
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
15319
15310
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
15320
15311
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
@@ -15356,6 +15347,12 @@ export declare type JiraVersionReleaseNotesArgs = {
|
|
|
15356
15347
|
export declare type JiraVersionEpicsForFilterArgs = {
|
|
15357
15348
|
searchStr?: Maybe<Scalars['String']>;
|
|
15358
15349
|
};
|
|
15350
|
+
export declare type JiraVersionContributorsArgs = {
|
|
15351
|
+
first?: Maybe<Scalars['Int']>;
|
|
15352
|
+
after?: Maybe<Scalars['String']>;
|
|
15353
|
+
last?: Maybe<Scalars['Int']>;
|
|
15354
|
+
before?: Maybe<Scalars['String']>;
|
|
15355
|
+
};
|
|
15359
15356
|
export declare type JiraVersionAvailableSitesArgs = {
|
|
15360
15357
|
first?: Maybe<Scalars['Int']>;
|
|
15361
15358
|
after?: Maybe<Scalars['String']>;
|
|
@@ -15390,6 +15387,16 @@ export declare type JiraVersionConnection = {
|
|
|
15390
15387
|
edges?: Maybe<Array<Maybe<JiraVersionEdge>>>;
|
|
15391
15388
|
errors?: Maybe<Array<QueryError>>;
|
|
15392
15389
|
};
|
|
15390
|
+
export declare type JiraVersionContributorConnection = {
|
|
15391
|
+
__typename?: 'JiraVersionContributorConnection';
|
|
15392
|
+
pageInfo: PageInfo;
|
|
15393
|
+
edges?: Maybe<Array<Maybe<JiraVersionContributorEdge>>>;
|
|
15394
|
+
};
|
|
15395
|
+
export declare type JiraVersionContributorEdge = {
|
|
15396
|
+
__typename?: 'JiraVersionContributorEdge';
|
|
15397
|
+
node?: Maybe<User>;
|
|
15398
|
+
cursor: Scalars['String'];
|
|
15399
|
+
};
|
|
15393
15400
|
export declare type JiraVersionCreateMutationInput = {
|
|
15394
15401
|
projectId: Scalars['ID'];
|
|
15395
15402
|
name: Scalars['String'];
|
|
@@ -16380,8 +16387,6 @@ export declare type Mutation = {
|
|
|
16380
16387
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
16381
16388
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
16382
16389
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
16383
|
-
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
16384
|
-
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
16385
16390
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
16386
16391
|
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
16387
16392
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
@@ -16613,12 +16618,6 @@ export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
|
16613
16618
|
export declare type MutationUpdatePolarisTermsConsentArgs = {
|
|
16614
16619
|
input: UpdatePolarisTermsConsentInput;
|
|
16615
16620
|
};
|
|
16616
|
-
export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
16617
|
-
id: Scalars['ID'];
|
|
16618
|
-
};
|
|
16619
|
-
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
16620
|
-
hash: Scalars['String'];
|
|
16621
|
-
};
|
|
16622
16621
|
export declare type MutationResolvePolarisObjectArgs = {
|
|
16623
16622
|
input: ResolvePolarisObjectInput;
|
|
16624
16623
|
};
|
|
@@ -17546,15 +17545,6 @@ export declare type PolarisAddReactionPayload = Payload & {
|
|
|
17546
17545
|
errors?: Maybe<Array<MutationError>>;
|
|
17547
17546
|
node: Array<PolarisReactionSummary>;
|
|
17548
17547
|
};
|
|
17549
|
-
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
17550
|
-
export declare type PolarisAnonymousVisitorViewHash = {
|
|
17551
|
-
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
17552
|
-
cloudId: Scalars['String'];
|
|
17553
|
-
projectId: Scalars['Int'];
|
|
17554
|
-
projectKey: Scalars['String'];
|
|
17555
|
-
viewId: Scalars['Int'];
|
|
17556
|
-
hash: Scalars['String'];
|
|
17557
|
-
};
|
|
17558
17548
|
export declare type PolarisComment = {
|
|
17559
17549
|
__typename?: 'PolarisComment';
|
|
17560
17550
|
id: Scalars['ID'];
|
|
@@ -18802,7 +18792,6 @@ export declare type Query = {
|
|
|
18802
18792
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
18803
18793
|
polarisProject?: Maybe<PolarisProject>;
|
|
18804
18794
|
polarisView?: Maybe<PolarisView>;
|
|
18805
|
-
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
18806
18795
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
18807
18796
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
18808
18797
|
polarisInsightsWithErrors?: Maybe<Array<PolarisInsight>>;
|
|
@@ -18810,11 +18799,7 @@ export declare type Query = {
|
|
|
18810
18799
|
polarisLabels?: Maybe<Array<LabelUsage>>;
|
|
18811
18800
|
polarisTermsConsent?: Maybe<PolarisTermsConsent>;
|
|
18812
18801
|
polarisSnippetPropertiesConfig?: Maybe<PolarisSnippetPropertiesConfig>;
|
|
18813
|
-
polarisIdeas?: Maybe<PolarisIdeas>;
|
|
18814
|
-
polarisAnonymousVisitorHash?: Maybe<PolarisAnonymousVisitorHash>;
|
|
18815
18802
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
18816
|
-
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
18817
|
-
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
18818
18803
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
18819
18804
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
18820
18805
|
polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
|
|
@@ -19062,25 +19047,9 @@ export declare type QueryPolarisSnippetPropertiesConfigArgs = {
|
|
|
19062
19047
|
oauthClientId: Scalars['String'];
|
|
19063
19048
|
groupId: Scalars['String'];
|
|
19064
19049
|
};
|
|
19065
|
-
export declare type QueryPolarisIdeasArgs = {
|
|
19066
|
-
project: Scalars['ID'];
|
|
19067
|
-
fieldKeys?: Maybe<Array<Scalars['String']>>;
|
|
19068
|
-
expand?: Maybe<Array<Scalars['String']>>;
|
|
19069
|
-
jql?: Maybe<Scalars['String']>;
|
|
19070
|
-
};
|
|
19071
|
-
export declare type QueryPolarisAnonymousVisitorHashArgs = {
|
|
19072
|
-
hash: Scalars['String'];
|
|
19073
|
-
};
|
|
19074
19050
|
export declare type QueryPolarisCollabTokenArgs = {
|
|
19075
19051
|
viewID: Scalars['ID'];
|
|
19076
19052
|
};
|
|
19077
|
-
export declare type QueryPolarisAnonymousVisitorHashByIdArgs = {
|
|
19078
|
-
id: Scalars['ID'];
|
|
19079
|
-
};
|
|
19080
|
-
export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
19081
|
-
project: Scalars['ID'];
|
|
19082
|
-
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
19083
|
-
};
|
|
19084
19053
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
19085
19054
|
project: Scalars['ID'];
|
|
19086
19055
|
};
|
|
@@ -22473,7 +22442,9 @@ export declare type Toolchain = {
|
|
|
22473
22442
|
containers?: Maybe<ToolchainContainerConnection>;
|
|
22474
22443
|
};
|
|
22475
22444
|
export declare type ToolchainContainersArgs = {
|
|
22476
|
-
|
|
22445
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
22446
|
+
providerId?: Maybe<Scalars['String']>;
|
|
22447
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22477
22448
|
query?: Maybe<Scalars['String']>;
|
|
22478
22449
|
first?: Maybe<Scalars['Int']>;
|
|
22479
22450
|
after?: Maybe<Scalars['String']>;
|
|
@@ -22789,10 +22760,37 @@ export declare type TrelloBoardViewer = {
|
|
|
22789
22760
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
22790
22761
|
starred: Scalars['Boolean'];
|
|
22791
22762
|
};
|
|
22763
|
+
export declare type TrelloLimitProps = {
|
|
22764
|
+
__typename?: 'TrelloLimitProps';
|
|
22765
|
+
disableAt: Scalars['Int'];
|
|
22766
|
+
status: Scalars['String'];
|
|
22767
|
+
warnAt: Scalars['Int'];
|
|
22768
|
+
};
|
|
22769
|
+
export declare type TrelloList = {
|
|
22770
|
+
__typename?: 'TrelloList';
|
|
22771
|
+
closed: Scalars['Boolean'];
|
|
22772
|
+
creationMethod: Scalars['String'];
|
|
22773
|
+
id: Scalars['ID'];
|
|
22774
|
+
limits?: Maybe<TrelloListLimits>;
|
|
22775
|
+
name: Scalars['String'];
|
|
22776
|
+
objectId: Scalars['String'];
|
|
22777
|
+
position: Scalars['Int'];
|
|
22778
|
+
softLimit?: Maybe<Scalars['Int']>;
|
|
22779
|
+
};
|
|
22780
|
+
export declare type TrelloListCardLimits = {
|
|
22781
|
+
__typename?: 'TrelloListCardLimits';
|
|
22782
|
+
openPerList?: Maybe<TrelloLimitProps>;
|
|
22783
|
+
totalPerList?: Maybe<TrelloLimitProps>;
|
|
22784
|
+
};
|
|
22785
|
+
export declare type TrelloListLimits = {
|
|
22786
|
+
__typename?: 'TrelloListLimits';
|
|
22787
|
+
cards?: Maybe<TrelloListCardLimits>;
|
|
22788
|
+
};
|
|
22792
22789
|
export declare type TrelloQueryApi = {
|
|
22793
22790
|
__typename?: 'TrelloQueryApi';
|
|
22794
22791
|
board?: Maybe<TrelloBoard>;
|
|
22795
22792
|
echo: Scalars['String'];
|
|
22793
|
+
list?: Maybe<TrelloList>;
|
|
22796
22794
|
recentBoardsByIds: Array<Maybe<TrelloBoard>>;
|
|
22797
22795
|
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
22798
22796
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -22801,6 +22799,9 @@ export declare type TrelloQueryApi = {
|
|
|
22801
22799
|
export declare type TrelloQueryApiBoardArgs = {
|
|
22802
22800
|
id: Scalars['ID'];
|
|
22803
22801
|
};
|
|
22802
|
+
export declare type TrelloQueryApiListArgs = {
|
|
22803
|
+
id: Scalars['ID'];
|
|
22804
|
+
};
|
|
22804
22805
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
22805
22806
|
ids: Array<Scalars['ID']>;
|
|
22806
22807
|
};
|