@forge/cli-shared 9.3.0-next.18 → 9.3.0-next.19
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 +4 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/log-color.d.ts +1 -0
- package/out/ui/log-color.d.ts.map +1 -1
- package/out/ui/log-color.js +1 -0
- package/out/ui/text.d.ts +12 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +32 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -39632,7 +39632,7 @@ export declare enum CplsContributionCopyMode {
|
|
|
39632
39632
|
CurrentAndFuture = "CURRENT_AND_FUTURE",
|
|
39633
39633
|
None = "NONE"
|
|
39634
39634
|
}
|
|
39635
|
-
export type
|
|
39635
|
+
export type CplsContributionDateRange = {
|
|
39636
39636
|
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
39637
39637
|
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
39638
39638
|
};
|
|
@@ -39717,6 +39717,7 @@ export type CplsContributorWorkAssociationEdge = {
|
|
|
39717
39717
|
};
|
|
39718
39718
|
export type CplsContributorWorkAssociationNode = {
|
|
39719
39719
|
__typename?: 'CplsContributorWorkAssociationNode';
|
|
39720
|
+
contributions?: Maybe<Array<CplsContribution>>;
|
|
39720
39721
|
contributorData?: Maybe<CplsContributorData>;
|
|
39721
39722
|
contributorDataId: Scalars['ID']['output'];
|
|
39722
39723
|
id: Scalars['ID']['output'];
|
|
@@ -39995,7 +39996,7 @@ export type CplsGetContributorWorkAssociationsInput = {
|
|
|
39995
39996
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39996
39997
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
39997
39998
|
cloudId: Scalars['ID']['input'];
|
|
39998
|
-
|
|
39999
|
+
contributionDateRange?: InputMaybe<CplsContributionDateRange>;
|
|
39999
40000
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
40000
40001
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40001
40002
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -238766,6 +238767,7 @@ export type SupportRequestAddCommentInput = {
|
|
|
238766
238767
|
};
|
|
238767
238768
|
export type SupportRequestAdditionalTicketData = {
|
|
238768
238769
|
chatTranscript?: InputMaybe<Scalars['String']['input']>;
|
|
238770
|
+
cloudSiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
238769
238771
|
operationType?: InputMaybe<Scalars['String']['input']>;
|
|
238770
238772
|
parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
238771
238773
|
};
|