@forge/cli-shared 8.18.0 → 8.18.1-next.0
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 +6 -0
- package/out/graphql/graphql-types.d.ts +33 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts +2 -0
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/ui/command-line-ui.d.ts +9 -2
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +31 -28
- package/out/ui/text.d.ts +2 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -33754,9 +33754,13 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
33754
33754
|
__typename?: 'CplsAddContributionsPayload';
|
|
33755
33755
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33756
33756
|
errors?: Maybe<Array<MutationError>>;
|
|
33757
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33757
33758
|
success: Scalars['Boolean']['output'];
|
|
33758
33759
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
33759
33760
|
};
|
|
33761
|
+
export declare type CplsAddContributionsPayloadPeopleViewArgs = {
|
|
33762
|
+
scopeId: Scalars['ID']['input'];
|
|
33763
|
+
};
|
|
33760
33764
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
33761
33765
|
cloudId: Scalars['ID']['input'];
|
|
33762
33766
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -33766,8 +33770,12 @@ export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
|
33766
33770
|
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
33767
33771
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
33768
33772
|
errors?: Maybe<Array<MutationError>>;
|
|
33773
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33769
33774
|
success: Scalars['Boolean']['output'];
|
|
33770
33775
|
};
|
|
33776
|
+
export declare type CplsAddContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
33777
|
+
scopeId: Scalars['ID']['input'];
|
|
33778
|
+
};
|
|
33771
33779
|
export declare type CplsAddContributorWorkAssociationInput = {
|
|
33772
33780
|
cloudId: Scalars['ID']['input'];
|
|
33773
33781
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -33777,6 +33785,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33777
33785
|
contributorWorkAssociations?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33778
33786
|
contributorWorkAssociationsByScope?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
33779
33787
|
errors?: Maybe<Array<MutationError>>;
|
|
33788
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
33780
33789
|
success: Scalars['Boolean']['output'];
|
|
33781
33790
|
workContributorAssociations?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
33782
33791
|
workContributorAssociationsByScope?: Maybe<Array<Maybe<CplsWorkContributorEdge>>>;
|
|
@@ -33784,6 +33793,9 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
|
|
|
33784
33793
|
export declare type CplsAddContributorWorkAssociationPayloadContributorWorkAssociationsByScopeArgs = {
|
|
33785
33794
|
scopeId: Scalars['ID']['input'];
|
|
33786
33795
|
};
|
|
33796
|
+
export declare type CplsAddContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
33797
|
+
scopeId: Scalars['ID']['input'];
|
|
33798
|
+
};
|
|
33787
33799
|
export declare type CplsAddContributorWorkAssociationPayloadWorkContributorAssociationsByScopeArgs = {
|
|
33788
33800
|
scopeId: Scalars['ID']['input'];
|
|
33789
33801
|
};
|
|
@@ -33819,6 +33831,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
33819
33831
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
33820
33832
|
contributors?: Maybe<CplsContributorConnection>;
|
|
33821
33833
|
filters?: Maybe<CplsFilters>;
|
|
33834
|
+
hasSuggestions: Scalars['Boolean']['output'];
|
|
33822
33835
|
id: Scalars['ID']['output'];
|
|
33823
33836
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
33824
33837
|
viewSettings?: Maybe<CplsViewSettings>;
|
|
@@ -34028,9 +34041,13 @@ export declare type CplsDeleteContributionSuggestionsPayload = Payload & {
|
|
|
34028
34041
|
__typename?: 'CplsDeleteContributionSuggestionsPayload';
|
|
34029
34042
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
34030
34043
|
errors?: Maybe<Array<MutationError>>;
|
|
34044
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34031
34045
|
success: Scalars['Boolean']['output'];
|
|
34032
34046
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
34033
34047
|
};
|
|
34048
|
+
export declare type CplsDeleteContributionSuggestionsPayloadPeopleViewArgs = {
|
|
34049
|
+
scopeId: Scalars['ID']['input'];
|
|
34050
|
+
};
|
|
34034
34051
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
34035
34052
|
cloudId: Scalars['ID']['input'];
|
|
34036
34053
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
@@ -34040,8 +34057,12 @@ export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
|
34040
34057
|
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
34041
34058
|
errors?: Maybe<Array<MutationError>>;
|
|
34042
34059
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34060
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34043
34061
|
success: Scalars['Boolean']['output'];
|
|
34044
34062
|
};
|
|
34063
|
+
export declare type CplsDeleteContributorScopeAssociationPayloadPeopleViewArgs = {
|
|
34064
|
+
scopeId: Scalars['ID']['input'];
|
|
34065
|
+
};
|
|
34045
34066
|
export declare type CplsDeleteContributorScopeAssociationSuggestionForUserInput = {
|
|
34046
34067
|
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
34047
34068
|
scopeId: Scalars['ID']['input'];
|
|
@@ -34050,8 +34071,12 @@ export declare type CplsDeleteContributorScopeAssociationSuggestionPayload = Pay
|
|
|
34050
34071
|
__typename?: 'CplsDeleteContributorScopeAssociationSuggestionPayload';
|
|
34051
34072
|
errors?: Maybe<Array<MutationError>>;
|
|
34052
34073
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34074
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34053
34075
|
success: Scalars['Boolean']['output'];
|
|
34054
34076
|
};
|
|
34077
|
+
export declare type CplsDeleteContributorScopeAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34078
|
+
scopeId: Scalars['ID']['input'];
|
|
34079
|
+
};
|
|
34055
34080
|
export declare type CplsDeleteContributorWorkAssociationInput = {
|
|
34056
34081
|
cloudId: Scalars['ID']['input'];
|
|
34057
34082
|
contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
|
|
@@ -34061,12 +34086,16 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
34061
34086
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
34062
34087
|
errors?: Maybe<Array<MutationError>>;
|
|
34063
34088
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34089
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34064
34090
|
success: Scalars['Boolean']['output'];
|
|
34065
34091
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
34066
34092
|
};
|
|
34067
34093
|
export declare type CplsDeleteContributorWorkAssociationPayloadContributorsByScopeArgs = {
|
|
34068
34094
|
scopeId: Scalars['ID']['input'];
|
|
34069
34095
|
};
|
|
34096
|
+
export declare type CplsDeleteContributorWorkAssociationPayloadPeopleViewArgs = {
|
|
34097
|
+
scopeId: Scalars['ID']['input'];
|
|
34098
|
+
};
|
|
34070
34099
|
export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
|
|
34071
34100
|
scopeId: Scalars['ID']['input'];
|
|
34072
34101
|
};
|
|
@@ -34079,12 +34108,16 @@ export declare type CplsDeleteContributorWorkAssociationSuggestionPayload = Payl
|
|
|
34079
34108
|
contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
|
|
34080
34109
|
errors?: Maybe<Array<MutationError>>;
|
|
34081
34110
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34111
|
+
peopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
34082
34112
|
success: Scalars['Boolean']['output'];
|
|
34083
34113
|
worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
|
|
34084
34114
|
};
|
|
34085
34115
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadContributorsByScopeArgs = {
|
|
34086
34116
|
scopeId: Scalars['ID']['input'];
|
|
34087
34117
|
};
|
|
34118
|
+
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadPeopleViewArgs = {
|
|
34119
|
+
scopeId: Scalars['ID']['input'];
|
|
34120
|
+
};
|
|
34088
34121
|
export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadWorksByScopeArgs = {
|
|
34089
34122
|
scopeId: Scalars['ID']['input'];
|
|
34090
34123
|
};
|