@forge/cli-shared 8.9.1-next.5 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +29 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +6 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -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 & {
|
|
@@ -69440,6 +69440,7 @@ export declare type JiraFieldWorkTypeConfigurationPayload = Payload & {
|
|
|
69440
69440
|
__typename?: 'JiraFieldWorkTypeConfigurationPayload';
|
|
69441
69441
|
errors?: Maybe<Array<MutationError>>;
|
|
69442
69442
|
success: Scalars['Boolean']['output'];
|
|
69443
|
+
updatedField?: Maybe<JiraIssueFieldConfig>;
|
|
69443
69444
|
};
|
|
69444
69445
|
export declare type JiraFieldWorkTypeCustomizationsInput = {
|
|
69445
69446
|
descriptionCustomisations?: InputMaybe<Array<JiraFieldWorkTypeDescriptionCustomizationInput>>;
|
|
@@ -95413,14 +95414,14 @@ export declare type Mutation = {
|
|
|
95413
95414
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
95414
95415
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
95415
95416
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
95416
|
-
cpls_addContributions
|
|
95417
|
-
cpls_addContributorScopeAssociation
|
|
95418
|
-
cpls_addContributorWorkAssociation
|
|
95419
|
-
cpls_createCustomContributionTarget
|
|
95420
|
-
cpls_createCustomContributionTargetWithWorkAssociation
|
|
95421
|
-
cpls_deleteContributorScopeAssociation
|
|
95422
|
-
cpls_deleteContributorWorkAssociation
|
|
95423
|
-
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>;
|
|
95424
95425
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
95425
95426
|
createApp?: Maybe<CreateAppResponse>;
|
|
95426
95427
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -101944,7 +101945,7 @@ export declare type Query = {
|
|
|
101944
101945
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
101945
101946
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
101946
101947
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
101947
|
-
cpls_customContributionTargets
|
|
101948
|
+
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
101948
101949
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
101949
101950
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
101950
101951
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|