@forge/cli-shared 8.9.1-next.5 → 8.9.1-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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.9.1-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b5f0775]
8
+ - Updated dependencies [b5f0775]
9
+ - @forge/manifest@11.1.0-next.5
10
+
11
+ ## 8.9.1-next.6
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [00eaa35]
16
+ - @forge/manifest@11.1.0-next.4
17
+
3
18
  ## 8.9.1-next.5
4
19
 
5
20
  ### Patch Changes
@@ -3772,7 +3772,7 @@ export declare enum AppContributorRole {
3772
3772
  }
3773
3773
  export declare type AppCustomScope = {
3774
3774
  __typename?: 'AppCustomScope';
3775
- description: Scalars['String']['output'];
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: CplsContributorConnection;
22825
+ contributors?: Maybe<CplsContributorConnection>;
22826
22826
  id: Scalars['ID']['output'];
22827
- timeCells: Array<CplsTimeCell>;
22828
- viewSettings: CplsViewSettings;
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: Array<CplsContributionAggregation>;
22865
+ contributionAggregations?: Maybe<Array<Maybe<CplsContributionAggregation>>>;
22866
22866
  contributorData?: Maybe<CplsContributorData>;
22867
22867
  contributorDataId?: Maybe<Scalars['ID']['output']>;
22868
- contributorWork: CplsContributorWorkConnection;
22868
+ contributorWork?: Maybe<CplsContributorWorkConnection>;
22869
22869
  id: Scalars['ID']['output'];
22870
- worksByIds: Array<CplsContributorWorkEdge>;
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: Array<CplsContributorEdge>;
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: CplsContributor;
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: Array<CplsContributorWorkEdge>;
22912
+ edges?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
22913
22913
  pageInfo: PageInfo;
22914
22914
  };
22915
22915
  export declare type CplsContributorWorkEdge = {
22916
22916
  __typename?: 'CplsContributorWorkEdge';
22917
- contributions: Array<CplsContribution>;
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: Scalars['String']['output'];
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: Scalars['Boolean']['output'];
23020
- contributionValueType: CplsContributionValueType;
23021
- timeScale: CplsTimeScaleType;
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: CplsAddContributionsPayload;
95417
- cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
95418
- cpls_addContributorWorkAssociation: CplsAddContributorWorkAssociationPayload;
95419
- cpls_createCustomContributionTarget: CplsCreateCustomContributionTargetPayload;
95420
- cpls_createCustomContributionTargetWithWorkAssociation: CplsCreateCustomContributionTargetWithWorkAssociationPayload;
95421
- cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
95422
- cpls_deleteContributorWorkAssociation: CplsDeleteContributorWorkAssociationPayload;
95423
- cpls_updateCustomContributionTarget: CplsUpdateCustomContributionTargetPayload;
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>;
@@ -95779,8 +95780,11 @@ export declare type Mutation = {
95779
95780
  projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
95780
95781
  projects_createRisk?: Maybe<TownsquareProjectsCreateRiskPayload>;
95781
95782
  projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
95783
+ projects_deleteDecision?: Maybe<TownsquareProjectsDeleteDecisionPayload>;
95782
95784
  projects_deleteLatestUpdate?: Maybe<TownsquareProjectsDeleteLatestUpdatePayload>;
95785
+ projects_deleteLearning?: Maybe<TownsquareProjectsDeleteLearningPayload>;
95783
95786
  projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
95787
+ projects_deleteRisk?: Maybe<TownsquareProjectsDeleteRiskPayload>;
95784
95788
  projects_edit?: Maybe<TownsquareProjectsEditPayload>;
95785
95789
  projects_editDecision?: Maybe<TownsquareProjectsEditDecisionPayload>;
95786
95790
  projects_editLearning?: Maybe<TownsquareProjectsEditLearningPayload>;
@@ -98004,12 +98008,21 @@ export declare type MutationProjects_CreateRiskArgs = {
98004
98008
  export declare type MutationProjects_CreateUpdateArgs = {
98005
98009
  input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
98006
98010
  };
98011
+ export declare type MutationProjects_DeleteDecisionArgs = {
98012
+ input: TownsquareProjectsDeleteDecisionInput;
98013
+ };
98007
98014
  export declare type MutationProjects_DeleteLatestUpdateArgs = {
98008
98015
  input?: InputMaybe<TownsquareProjectsDeleteLatestUpdateInput>;
98009
98016
  };
98017
+ export declare type MutationProjects_DeleteLearningArgs = {
98018
+ input: TownsquareProjectsDeleteLearningInput;
98019
+ };
98010
98020
  export declare type MutationProjects_DeleteLinkArgs = {
98011
98021
  input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
98012
98022
  };
98023
+ export declare type MutationProjects_DeleteRiskArgs = {
98024
+ input: TownsquareProjectsDeleteRiskInput;
98025
+ };
98013
98026
  export declare type MutationProjects_EditArgs = {
98014
98027
  input?: InputMaybe<TownsquareProjectsEditInput>;
98015
98028
  };
@@ -101944,7 +101957,7 @@ export declare type Query = {
101944
101957
  countGroupByUser?: Maybe<CountGroupByUser>;
101945
101958
  countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
101946
101959
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
101947
- cpls_customContributionTargets: CplsCustomContributionTargetConnection;
101960
+ cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
101948
101961
  cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
101949
101962
  cpls_peopleView?: Maybe<CplsPeopleView>;
101950
101963
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
@@ -133795,6 +133808,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
133795
133808
  };
133796
133809
  export declare type TownsquareGoalsCreateUpdateInput = {
133797
133810
  goalId: Scalars['ID']['input'];
133811
+ highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
133798
133812
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
133799
133813
  score?: InputMaybe<Scalars['Int']['input']>;
133800
133814
  status?: InputMaybe<Scalars['String']['input']>;
@@ -134755,6 +134769,15 @@ export declare type TownsquareProjectsCreateUpdatePayload = {
134755
134769
  success: Scalars['Boolean']['output'];
134756
134770
  update?: Maybe<TownsquareProjectUpdate>;
134757
134771
  };
134772
+ export declare type TownsquareProjectsDeleteDecisionInput = {
134773
+ decisionId: Scalars['ID']['input'];
134774
+ };
134775
+ export declare type TownsquareProjectsDeleteDecisionPayload = {
134776
+ __typename?: 'TownsquareProjectsDeleteDecisionPayload';
134777
+ deletedDecisionId?: Maybe<Scalars['ID']['output']>;
134778
+ errors?: Maybe<Array<MutationError>>;
134779
+ success: Scalars['Boolean']['output'];
134780
+ };
134758
134781
  export declare type TownsquareProjectsDeleteLatestUpdateInput = {
134759
134782
  updateId: Scalars['ID']['input'];
134760
134783
  };
@@ -134765,6 +134788,15 @@ export declare type TownsquareProjectsDeleteLatestUpdatePayload = {
134765
134788
  project?: Maybe<TownsquareProject>;
134766
134789
  success: Scalars['Boolean']['output'];
134767
134790
  };
134791
+ export declare type TownsquareProjectsDeleteLearningInput = {
134792
+ learningId: Scalars['ID']['input'];
134793
+ };
134794
+ export declare type TownsquareProjectsDeleteLearningPayload = {
134795
+ __typename?: 'TownsquareProjectsDeleteLearningPayload';
134796
+ deletedLearningId?: Maybe<Scalars['ID']['output']>;
134797
+ errors?: Maybe<Array<MutationError>>;
134798
+ success: Scalars['Boolean']['output'];
134799
+ };
134768
134800
  export declare type TownsquareProjectsDeleteLinkInput = {
134769
134801
  linkId: Scalars['ID']['input'];
134770
134802
  };
@@ -134775,6 +134807,15 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
134775
134807
  project?: Maybe<TownsquareProject>;
134776
134808
  success: Scalars['Boolean']['output'];
134777
134809
  };
134810
+ export declare type TownsquareProjectsDeleteRiskInput = {
134811
+ riskId: Scalars['ID']['input'];
134812
+ };
134813
+ export declare type TownsquareProjectsDeleteRiskPayload = {
134814
+ __typename?: 'TownsquareProjectsDeleteRiskPayload';
134815
+ deletedRiskId?: Maybe<Scalars['ID']['output']>;
134816
+ errors?: Maybe<Array<MutationError>>;
134817
+ success: Scalars['Boolean']['output'];
134818
+ };
134778
134819
  export declare type TownsquareProjectsEditDecisionInput = {
134779
134820
  decisionId: Scalars['ID']['input'];
134780
134821
  description?: InputMaybe<Scalars['String']['input']>;