@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.3.0-next.19
4
+
5
+ ### Minor Changes
6
+
7
+ - 342098d: Implement server-side linter logic to prevent accidental major app version deployments
8
+
3
9
  ## 9.3.0-next.18
4
10
 
5
11
  ### Patch Changes
@@ -39632,7 +39632,7 @@ export declare enum CplsContributionCopyMode {
39632
39632
  CurrentAndFuture = "CURRENT_AND_FUTURE",
39633
39633
  None = "NONE"
39634
39634
  }
39635
- export type CplsContributionFilter = {
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
- contributionFilter?: InputMaybe<CplsContributionFilter>;
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
  };