@forge/cli-shared 8.9.1-next.4 → 8.9.1-next.6
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 +14 -0
- package/out/graphql/graphql-types.d.ts +59 -30
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +10 -4
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.9.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [00eaa35]
|
|
8
|
+
- @forge/manifest@11.1.0-next.4
|
|
9
|
+
|
|
10
|
+
## 8.9.1-next.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 0592764:
|
|
15
|
+
- 128d1f8: Error handling logic for install upgrade code
|
|
16
|
+
|
|
3
17
|
## 8.9.1-next.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -3772,7 +3772,7 @@ export declare enum AppContributorRole {
|
|
|
3772
3772
|
}
|
|
3773
3773
|
export declare type AppCustomScope = {
|
|
3774
3774
|
__typename?: 'AppCustomScope';
|
|
3775
|
-
description
|
|
3775
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3776
3776
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
3777
3777
|
name: Scalars['String']['output'];
|
|
3778
3778
|
};
|
|
@@ -22793,7 +22793,7 @@ export declare type CplsAddContributionsInput = {
|
|
|
22793
22793
|
};
|
|
22794
22794
|
export declare type CplsAddContributionsPayload = Payload & {
|
|
22795
22795
|
__typename?: 'CplsAddContributionsPayload';
|
|
22796
|
-
contributors?: Maybe<Array<CplsContributorEdge
|
|
22796
|
+
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
22797
22797
|
errors?: Maybe<Array<MutationError>>;
|
|
22798
22798
|
success: Scalars['Boolean']['output'];
|
|
22799
22799
|
};
|
|
@@ -22804,7 +22804,7 @@ export declare type CplsAddContributorScopeAssociationInput = {
|
|
|
22804
22804
|
};
|
|
22805
22805
|
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
22806
22806
|
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
22807
|
-
contributors?: Maybe<Array<CplsContributorEdge
|
|
22807
|
+
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
22808
22808
|
errors?: Maybe<Array<MutationError>>;
|
|
22809
22809
|
success: Scalars['Boolean']['output'];
|
|
22810
22810
|
};
|
|
@@ -22814,7 +22814,7 @@ export declare type CplsAddContributorWorkAssociationInput = {
|
|
|
22814
22814
|
};
|
|
22815
22815
|
export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
22816
22816
|
__typename?: 'CplsAddContributorWorkAssociationPayload';
|
|
22817
|
-
contributorWorkAssociations?: Maybe<Array<CplsContributorWorkEdge
|
|
22817
|
+
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
22818
22818
|
errors?: Maybe<Array<MutationError>>;
|
|
22819
22819
|
success: Scalars['Boolean']['output'];
|
|
22820
22820
|
};
|
|
@@ -22822,10 +22822,10 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
22822
22822
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
22823
22823
|
contributor?: Maybe<CplsContributor>;
|
|
22824
22824
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
22825
|
-
contributors
|
|
22825
|
+
contributors?: Maybe<CplsContributorConnection>;
|
|
22826
22826
|
id: Scalars['ID']['output'];
|
|
22827
|
-
timeCells
|
|
22828
|
-
viewSettings
|
|
22827
|
+
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
22828
|
+
viewSettings?: Maybe<CplsViewSettings>;
|
|
22829
22829
|
};
|
|
22830
22830
|
export declare type CplsCapacityPlanningPeopleViewContributorArgs = {
|
|
22831
22831
|
id: Scalars['ID']['input'];
|
|
@@ -22862,12 +22862,12 @@ export declare enum CplsContributionValueType {
|
|
|
22862
22862
|
}
|
|
22863
22863
|
export declare type CplsContributor = {
|
|
22864
22864
|
__typename?: 'CplsContributor';
|
|
22865
|
-
contributionAggregations
|
|
22865
|
+
contributionAggregations?: Maybe<Array<Maybe<CplsContributionAggregation>>>;
|
|
22866
22866
|
contributorData?: Maybe<CplsContributorData>;
|
|
22867
22867
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
22868
|
-
contributorWork
|
|
22868
|
+
contributorWork?: Maybe<CplsContributorWorkConnection>;
|
|
22869
22869
|
id: Scalars['ID']['output'];
|
|
22870
|
-
worksByIds
|
|
22870
|
+
worksByIds?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
22871
22871
|
};
|
|
22872
22872
|
export declare type CplsContributorContributorWorkArgs = {
|
|
22873
22873
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22880,7 +22880,7 @@ export declare type CplsContributorWorksByIdsArgs = {
|
|
|
22880
22880
|
};
|
|
22881
22881
|
export declare type CplsContributorConnection = HasPageInfo & {
|
|
22882
22882
|
__typename?: 'CplsContributorConnection';
|
|
22883
|
-
edges
|
|
22883
|
+
edges?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
22884
22884
|
pageInfo: PageInfo;
|
|
22885
22885
|
};
|
|
22886
22886
|
export declare type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
@@ -22901,7 +22901,7 @@ export declare type CplsContributorDataIdEdge = {
|
|
|
22901
22901
|
export declare type CplsContributorEdge = {
|
|
22902
22902
|
__typename?: 'CplsContributorEdge';
|
|
22903
22903
|
cursor: Scalars['String']['output'];
|
|
22904
|
-
node
|
|
22904
|
+
node?: Maybe<CplsContributor>;
|
|
22905
22905
|
};
|
|
22906
22906
|
export declare type CplsContributorWorkAssociation = {
|
|
22907
22907
|
contributorDataId: Scalars['ID']['input'];
|
|
@@ -22909,12 +22909,12 @@ export declare type CplsContributorWorkAssociation = {
|
|
|
22909
22909
|
};
|
|
22910
22910
|
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
22911
22911
|
__typename?: 'CplsContributorWorkConnection';
|
|
22912
|
-
edges
|
|
22912
|
+
edges?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
22913
22913
|
pageInfo: PageInfo;
|
|
22914
22914
|
};
|
|
22915
22915
|
export declare type CplsContributorWorkEdge = {
|
|
22916
22916
|
__typename?: 'CplsContributorWorkEdge';
|
|
22917
|
-
contributions
|
|
22917
|
+
contributions?: Maybe<Array<Maybe<CplsContribution>>>;
|
|
22918
22918
|
cursor: Scalars['String']['output'];
|
|
22919
22919
|
node?: Maybe<CplsWorkData>;
|
|
22920
22920
|
};
|
|
@@ -22942,11 +22942,11 @@ export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload
|
|
|
22942
22942
|
export declare type CplsCustomContributionTarget = {
|
|
22943
22943
|
__typename?: 'CplsCustomContributionTarget';
|
|
22944
22944
|
id: Scalars['ID']['output'];
|
|
22945
|
-
name
|
|
22945
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
22946
22946
|
};
|
|
22947
22947
|
export declare type CplsCustomContributionTargetConnection = HasPageInfo & {
|
|
22948
22948
|
__typename?: 'CplsCustomContributionTargetConnection';
|
|
22949
|
-
edges?: Maybe<Array<CplsCustomContributionTargetEdge
|
|
22949
|
+
edges?: Maybe<Array<Maybe<CplsCustomContributionTargetEdge>>>;
|
|
22950
22950
|
pageInfo: PageInfo;
|
|
22951
22951
|
};
|
|
22952
22952
|
export declare type CplsCustomContributionTargetEdge = {
|
|
@@ -23016,9 +23016,9 @@ export declare type CplsUpdateCustomContributionTargetPayload = Payload & {
|
|
|
23016
23016
|
};
|
|
23017
23017
|
export declare type CplsViewSettings = {
|
|
23018
23018
|
__typename?: 'CplsViewSettings';
|
|
23019
|
-
alwaysShowNumbersInGraph
|
|
23020
|
-
contributionValueType
|
|
23021
|
-
timeScale
|
|
23019
|
+
alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
|
|
23020
|
+
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
23021
|
+
timeScale?: Maybe<CplsTimeScaleType>;
|
|
23022
23022
|
};
|
|
23023
23023
|
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
23024
23024
|
export declare type CreateAppContainerPayload = Payload & {
|
|
@@ -29804,7 +29804,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
29804
29804
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
29805
29805
|
node?: Maybe<ExternalAssociation>;
|
|
29806
29806
|
};
|
|
29807
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
29807
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
29808
29808
|
export declare type ExternalAttachment = {
|
|
29809
29809
|
__typename?: 'ExternalAttachment';
|
|
29810
29810
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -30362,6 +30362,7 @@ export declare type ExternalEntities = {
|
|
|
30362
30362
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
30363
30363
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
30364
30364
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
30365
|
+
team?: Maybe<Array<Maybe<ExternalTeam>>>;
|
|
30365
30366
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
30366
30367
|
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
30367
30368
|
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
@@ -30371,7 +30372,7 @@ export declare type ExternalEntities = {
|
|
|
30371
30372
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
30372
30373
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
30373
30374
|
};
|
|
30374
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
30375
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
30375
30376
|
export declare type ExternalEnvironment = {
|
|
30376
30377
|
__typename?: 'ExternalEnvironment';
|
|
30377
30378
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -30708,6 +30709,8 @@ export declare type ExternalSoftwareService = Node & {
|
|
|
30708
30709
|
__typename?: 'ExternalSoftwareService';
|
|
30709
30710
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
30710
30711
|
associationsMetadata?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationsMetadataTuple>>>;
|
|
30712
|
+
container?: Maybe<ExternalEntity>;
|
|
30713
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30711
30714
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30712
30715
|
createdBy?: Maybe<ExternalUser>;
|
|
30713
30716
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -30768,6 +30771,28 @@ export declare enum ExternalSpaceSubtype {
|
|
|
30768
30771
|
Software = "SOFTWARE",
|
|
30769
30772
|
Space = "SPACE"
|
|
30770
30773
|
}
|
|
30774
|
+
export declare type ExternalTeam = Node & {
|
|
30775
|
+
__typename?: 'ExternalTeam';
|
|
30776
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
30777
|
+
container?: Maybe<ExternalEntity>;
|
|
30778
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30779
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30780
|
+
createdBy?: Maybe<ExternalUser>;
|
|
30781
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30782
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
30783
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
30784
|
+
id: Scalars['ID']['output'];
|
|
30785
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
30786
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
30787
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
30788
|
+
parent?: Maybe<ExternalEntity>;
|
|
30789
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
30790
|
+
provider?: Maybe<ExternalProvider>;
|
|
30791
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
30792
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
30793
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
30794
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
30795
|
+
};
|
|
30771
30796
|
export declare type ExternalTest = Node & {
|
|
30772
30797
|
__typename?: 'ExternalTest';
|
|
30773
30798
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -30796,6 +30821,7 @@ export declare type ExternalTestExecution = Node & {
|
|
|
30796
30821
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30797
30822
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30798
30823
|
createdBy?: Maybe<ExternalUser>;
|
|
30824
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30799
30825
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30800
30826
|
environment?: Maybe<Scalars['String']['output']>;
|
|
30801
30827
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -30827,6 +30853,7 @@ export declare type ExternalTestPlan = Node & {
|
|
|
30827
30853
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30828
30854
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30829
30855
|
createdBy?: Maybe<ExternalUser>;
|
|
30856
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30830
30857
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30831
30858
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
30832
30859
|
id: Scalars['ID']['output'];
|
|
@@ -30849,6 +30876,7 @@ export declare type ExternalTestRun = Node & {
|
|
|
30849
30876
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
30850
30877
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
30851
30878
|
createdBy?: Maybe<ExternalUser>;
|
|
30879
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
30852
30880
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
30853
30881
|
environment?: Maybe<Scalars['String']['output']>;
|
|
30854
30882
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69412,6 +69440,7 @@ export declare type JiraFieldWorkTypeConfigurationPayload = Payload & {
|
|
|
69412
69440
|
__typename?: 'JiraFieldWorkTypeConfigurationPayload';
|
|
69413
69441
|
errors?: Maybe<Array<MutationError>>;
|
|
69414
69442
|
success: Scalars['Boolean']['output'];
|
|
69443
|
+
updatedField?: Maybe<JiraIssueFieldConfig>;
|
|
69415
69444
|
};
|
|
69416
69445
|
export declare type JiraFieldWorkTypeCustomizationsInput = {
|
|
69417
69446
|
descriptionCustomisations?: InputMaybe<Array<JiraFieldWorkTypeDescriptionCustomizationInput>>;
|
|
@@ -95385,14 +95414,14 @@ export declare type Mutation = {
|
|
|
95385
95414
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
95386
95415
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
95387
95416
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
95388
|
-
cpls_addContributions
|
|
95389
|
-
cpls_addContributorScopeAssociation
|
|
95390
|
-
cpls_addContributorWorkAssociation
|
|
95391
|
-
cpls_createCustomContributionTarget
|
|
95392
|
-
cpls_createCustomContributionTargetWithWorkAssociation
|
|
95393
|
-
cpls_deleteContributorScopeAssociation
|
|
95394
|
-
cpls_deleteContributorWorkAssociation
|
|
95395
|
-
cpls_updateCustomContributionTarget
|
|
95417
|
+
cpls_addContributions?: Maybe<CplsAddContributionsPayload>;
|
|
95418
|
+
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
95419
|
+
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
95420
|
+
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
95421
|
+
cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
|
|
95422
|
+
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
95423
|
+
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
95424
|
+
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
95396
95425
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
95397
95426
|
createApp?: Maybe<CreateAppResponse>;
|
|
95398
95427
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -101916,7 +101945,7 @@ export declare type Query = {
|
|
|
101916
101945
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
101917
101946
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
101918
101947
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
101919
|
-
cpls_customContributionTargets
|
|
101948
|
+
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
101920
101949
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
101921
101950
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
101922
101951
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|