@forge/cli-shared 8.7.1-next.0-experimental-90687cf → 8.7.1-next.0-experimental-4afd2ab
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,11 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.7.1-next.0-experimental-
|
|
3
|
+
## 8.7.1-next.0-experimental-4afd2ab
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies [5b079e0]
|
|
8
|
-
- @forge/manifest@10.6.1-next.0-experimental-
|
|
8
|
+
- @forge/manifest@10.6.1-next.0-experimental-4afd2ab
|
|
9
9
|
|
|
10
10
|
## 8.7.1-next.0
|
|
11
11
|
|
|
@@ -414,6 +414,12 @@ export declare type AvpCreateDashboardFilterResponse = {
|
|
|
414
414
|
chart?: Maybe<AvpChart>;
|
|
415
415
|
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
416
416
|
};
|
|
417
|
+
export declare type AvpCreateDashboardFromTemplateInput = {
|
|
418
|
+
cloudId: Scalars['ID']['input'];
|
|
419
|
+
dashboard?: InputMaybe<AvpDashboardTemplateInput>;
|
|
420
|
+
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
421
|
+
workspaceId: Scalars['ID']['input'];
|
|
422
|
+
};
|
|
417
423
|
export declare type AvpCreateDashboardInput = {
|
|
418
424
|
cloudId: Scalars['ID']['input'];
|
|
419
425
|
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -520,6 +526,13 @@ export declare enum AvpDashboardStatusAction {
|
|
|
520
526
|
Restore = "RESTORE",
|
|
521
527
|
Trash = "TRASH"
|
|
522
528
|
}
|
|
529
|
+
export declare type AvpDashboardTemplateInput = {
|
|
530
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
531
|
+
fromTemplate: Scalars['String']['input'];
|
|
532
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
533
|
+
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
534
|
+
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
535
|
+
};
|
|
523
536
|
export declare type AvpDatasourceLocator = {
|
|
524
537
|
__typename?: 'AVPDatasourceLocator';
|
|
525
538
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -688,6 +701,10 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
|
688
701
|
errors?: Maybe<Array<MutationError>>;
|
|
689
702
|
success: Scalars['Boolean']['output'];
|
|
690
703
|
};
|
|
704
|
+
export declare type AvpProductWorkspaceMapEntry = {
|
|
705
|
+
product: Scalars['String']['input'];
|
|
706
|
+
workspaceId: Scalars['ID']['input'];
|
|
707
|
+
};
|
|
691
708
|
export declare enum AvpRefreshMethod {
|
|
692
709
|
RefreshAuto = "REFRESH_AUTO",
|
|
693
710
|
RefreshLoad = "REFRESH_LOAD",
|
|
@@ -21605,29 +21622,32 @@ export declare type CplsAddContributionsInput = {
|
|
|
21605
21622
|
contributions: Array<CplsAddContributionInput>;
|
|
21606
21623
|
scopeId: Scalars['ID']['input'];
|
|
21607
21624
|
};
|
|
21608
|
-
export declare type CplsAddContributionsPayload = {
|
|
21625
|
+
export declare type CplsAddContributionsPayload = Payload & {
|
|
21609
21626
|
__typename?: 'CplsAddContributionsPayload';
|
|
21610
|
-
contributors
|
|
21611
|
-
errors
|
|
21627
|
+
contributors?: Maybe<Array<CplsContributorEdge>>;
|
|
21628
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21629
|
+
success: Scalars['Boolean']['output'];
|
|
21612
21630
|
};
|
|
21613
21631
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
21614
21632
|
cloudId: Scalars['ID']['input'];
|
|
21615
21633
|
contributorIds: Array<Scalars['ID']['input']>;
|
|
21616
21634
|
scopeId: Scalars['ID']['input'];
|
|
21617
21635
|
};
|
|
21618
|
-
export declare type CplsAddContributorScopeAssociationPayload = {
|
|
21636
|
+
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
21619
21637
|
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
21620
|
-
contributors
|
|
21621
|
-
errors
|
|
21638
|
+
contributors?: Maybe<Array<CplsContributorEdge>>;
|
|
21639
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21640
|
+
success: Scalars['Boolean']['output'];
|
|
21622
21641
|
};
|
|
21623
21642
|
export declare type CplsAddContributorWorkAssociationInput = {
|
|
21624
21643
|
cloudId: Scalars['ID']['input'];
|
|
21625
21644
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
21626
21645
|
};
|
|
21627
|
-
export declare type CplsAddContributorWorkAssociationPayload = {
|
|
21646
|
+
export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
21628
21647
|
__typename?: 'CplsAddContributorWorkAssociationPayload';
|
|
21629
|
-
contributorWorkAssociations
|
|
21630
|
-
errors
|
|
21648
|
+
contributorWorkAssociations?: Maybe<Array<CplsContributorWorkEdge>>;
|
|
21649
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21650
|
+
success: Scalars['Boolean']['output'];
|
|
21631
21651
|
};
|
|
21632
21652
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
21633
21653
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
@@ -21668,6 +21688,7 @@ export declare type CplsContributor = {
|
|
|
21668
21688
|
__typename?: 'CplsContributor';
|
|
21669
21689
|
contributionAggregations: Array<CplsContributionAggregation>;
|
|
21670
21690
|
contributorData?: Maybe<CplsContributorData>;
|
|
21691
|
+
contributorId: Scalars['ID']['output'];
|
|
21671
21692
|
contributorWork: CplsContributorWorkConnection;
|
|
21672
21693
|
id: Scalars['ID']['output'];
|
|
21673
21694
|
worksByIds: Array<CplsContributorWorkEdge>;
|
|
@@ -21711,34 +21732,66 @@ export declare type CplsCreateCustomContributionTargetInput = {
|
|
|
21711
21732
|
cloudId: Scalars['ID']['input'];
|
|
21712
21733
|
name: Scalars['String']['input'];
|
|
21713
21734
|
};
|
|
21714
|
-
export declare type CplsCreateCustomContributionTargetPayload = {
|
|
21735
|
+
export declare type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
21715
21736
|
__typename?: 'CplsCreateCustomContributionTargetPayload';
|
|
21716
|
-
errors
|
|
21737
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21717
21738
|
node?: Maybe<CplsCustomContributionTarget>;
|
|
21739
|
+
success: Scalars['Boolean']['output'];
|
|
21740
|
+
};
|
|
21741
|
+
export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
21742
|
+
cloudId: Scalars['ID']['input'];
|
|
21743
|
+
contributorId: Scalars['ID']['input'];
|
|
21744
|
+
name: Scalars['String']['input'];
|
|
21745
|
+
};
|
|
21746
|
+
export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
|
|
21747
|
+
__typename?: 'CplsCreateCustomContributionTargetWithWorkAssociationPayload';
|
|
21748
|
+
contributorWorkAssociation?: Maybe<CplsContributorWorkEdge>;
|
|
21749
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21750
|
+
success: Scalars['Boolean']['output'];
|
|
21718
21751
|
};
|
|
21719
21752
|
export declare type CplsCustomContributionTarget = {
|
|
21720
21753
|
__typename?: 'CplsCustomContributionTarget';
|
|
21721
21754
|
id: Scalars['ID']['output'];
|
|
21722
21755
|
name: Scalars['String']['output'];
|
|
21723
21756
|
};
|
|
21757
|
+
export declare type CplsCustomContributionTargetConnection = HasPageInfo & {
|
|
21758
|
+
__typename?: 'CplsCustomContributionTargetConnection';
|
|
21759
|
+
edges?: Maybe<Array<CplsCustomContributionTargetEdge>>;
|
|
21760
|
+
pageInfo: PageInfo;
|
|
21761
|
+
};
|
|
21762
|
+
export declare type CplsCustomContributionTargetEdge = {
|
|
21763
|
+
__typename?: 'CplsCustomContributionTargetEdge';
|
|
21764
|
+
cursor: Scalars['String']['output'];
|
|
21765
|
+
node?: Maybe<CplsCustomContributionTarget>;
|
|
21766
|
+
};
|
|
21724
21767
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
21725
21768
|
cloudId: Scalars['ID']['input'];
|
|
21726
21769
|
contributorIds: Array<Scalars['ID']['input']>;
|
|
21727
21770
|
scopeId: Scalars['ID']['input'];
|
|
21728
21771
|
};
|
|
21729
|
-
export declare type CplsDeleteContributorScopeAssociationPayload = {
|
|
21772
|
+
export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
21730
21773
|
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
21731
|
-
errors
|
|
21732
|
-
ids
|
|
21774
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21775
|
+
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
21776
|
+
success: Scalars['Boolean']['output'];
|
|
21733
21777
|
};
|
|
21734
21778
|
export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
21735
21779
|
cloudId: Scalars['ID']['input'];
|
|
21736
21780
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
21737
21781
|
};
|
|
21738
|
-
export declare type CplsDeleteContributorWorkAssociationPayload = {
|
|
21782
|
+
export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
21739
21783
|
__typename?: 'CplsDeleteContributorWorkAssociationPayload';
|
|
21740
|
-
errors
|
|
21741
|
-
ids
|
|
21784
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21785
|
+
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
21786
|
+
success: Scalars['Boolean']['output'];
|
|
21787
|
+
};
|
|
21788
|
+
export declare type CplsSearchCustomContributionTargetsInput = {
|
|
21789
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
21790
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
21791
|
+
cloudId: Scalars['ID']['input'];
|
|
21792
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21793
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
21794
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
21742
21795
|
};
|
|
21743
21796
|
export declare type CplsTimeCell = {
|
|
21744
21797
|
__typename?: 'CplsTimeCell';
|
|
@@ -21753,9 +21806,9 @@ export declare type CplsUpdateCustomContributionTargetInput = {
|
|
|
21753
21806
|
id: Scalars['ID']['input'];
|
|
21754
21807
|
name: Scalars['String']['input'];
|
|
21755
21808
|
};
|
|
21756
|
-
export declare type CplsUpdateCustomContributionTargetPayload = {
|
|
21809
|
+
export declare type CplsUpdateCustomContributionTargetPayload = Payload & {
|
|
21757
21810
|
__typename?: 'CplsUpdateCustomContributionTargetPayload';
|
|
21758
|
-
errors
|
|
21811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21759
21812
|
success: Scalars['Boolean']['output'];
|
|
21760
21813
|
};
|
|
21761
21814
|
export declare type CplsViewSettings = {
|
|
@@ -90866,6 +90919,7 @@ export declare type Mutation = {
|
|
|
90866
90919
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
90867
90920
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
90868
90921
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
90922
|
+
avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
|
|
90869
90923
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
90870
90924
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
90871
90925
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
@@ -90988,6 +91042,7 @@ export declare type Mutation = {
|
|
|
90988
91042
|
cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
|
|
90989
91043
|
cpls_addContributorWorkAssociation: CplsAddContributorWorkAssociationPayload;
|
|
90990
91044
|
cpls_createCustomContributionTarget: CplsCreateCustomContributionTargetPayload;
|
|
91045
|
+
cpls_createCustomContributionTargetWithWorkAssociation: CplsCreateCustomContributionTargetWithWorkAssociationPayload;
|
|
90991
91046
|
cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
|
|
90992
91047
|
cpls_deleteContributorWorkAssociation: CplsDeleteContributorWorkAssociationPayload;
|
|
90993
91048
|
cpls_updateCustomContributionTarget: CplsUpdateCustomContributionTargetPayload;
|
|
@@ -91844,6 +91899,9 @@ export declare type MutationAvp_CreateDashboardArgs = {
|
|
|
91844
91899
|
export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
91845
91900
|
input: AvpCreateDashboardFilterInput;
|
|
91846
91901
|
};
|
|
91902
|
+
export declare type MutationAvp_CreateDashboardFromTemplateArgs = {
|
|
91903
|
+
input: AvpCreateDashboardFromTemplateInput;
|
|
91904
|
+
};
|
|
91847
91905
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
91848
91906
|
input: AvpDeleteChartInput;
|
|
91849
91907
|
};
|
|
@@ -92290,6 +92348,9 @@ export declare type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
|
92290
92348
|
export declare type MutationCpls_CreateCustomContributionTargetArgs = {
|
|
92291
92349
|
input: CplsCreateCustomContributionTargetInput;
|
|
92292
92350
|
};
|
|
92351
|
+
export declare type MutationCpls_CreateCustomContributionTargetWithWorkAssociationArgs = {
|
|
92352
|
+
input: CplsCreateCustomContributionTargetWithWorkAssociationInput;
|
|
92353
|
+
};
|
|
92293
92354
|
export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
92294
92355
|
input: CplsDeleteContributorScopeAssociationInput;
|
|
92295
92356
|
};
|
|
@@ -97156,7 +97217,8 @@ export declare type Query = {
|
|
|
97156
97217
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
97157
97218
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
97158
97219
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
97159
|
-
cpls_customContributionTargets:
|
|
97220
|
+
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
97221
|
+
cpls_customContributionTargetsByIds: Array<CplsCustomContributionTarget>;
|
|
97160
97222
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
97161
97223
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
97162
97224
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -99112,6 +99174,9 @@ export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
|
99112
99174
|
id: Scalars['ID']['input'];
|
|
99113
99175
|
};
|
|
99114
99176
|
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
99177
|
+
input: CplsSearchCustomContributionTargetsInput;
|
|
99178
|
+
};
|
|
99179
|
+
export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
|
|
99115
99180
|
ids: Array<Scalars['ID']['input']>;
|
|
99116
99181
|
};
|
|
99117
99182
|
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|