@forge/cli-shared 3.14.0-next.1 → 3.14.0-next.3

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,24 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.14.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 91b77cb7: Bumping dependencies via Renovate:
8
+
9
+ - @atlassian/xen-test-util
10
+
11
+ ## 3.14.0-next.2
12
+
13
+ ### Minor Changes
14
+
15
+ - 2c219665: Added pre deployment prompt and post deployment message if custom entities reindexing is in progress, improved storage index command and increased index limit from 5 to 7
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [2c219665]
20
+ - @forge/manifest@4.15.0-next.0
21
+
3
22
  ## 3.14.0-next.1
4
23
 
5
24
  ### Patch Changes
@@ -1940,7 +1940,7 @@ export declare type CcpEntitlement = Node & {
1940
1940
  enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
1941
1941
  createdAt?: Maybe<Scalars['Float']>;
1942
1942
  updatedAt?: Maybe<Scalars['Float']>;
1943
- subscriptionV2?: Maybe<CcpSubscriptionV2>;
1943
+ subscription?: Maybe<CcpSubscription>;
1944
1944
  context?: Maybe<CcpContext>;
1945
1945
  };
1946
1946
  export declare type CcpEntitlementRelationship = {
@@ -1996,6 +1996,22 @@ export declare type CcpQueryApi = {
1996
1996
  export declare type CcpQueryApiEntitlementArgs = {
1997
1997
  id: Scalars['ID'];
1998
1998
  };
1999
+ export declare type CcpSubscription = {
2000
+ __typename?: 'CcpSubscription';
2001
+ id: Scalars['ID'];
2002
+ orderItemId?: Maybe<Scalars['ID']>;
2003
+ entitlementId?: Maybe<Scalars['ID']>;
2004
+ version?: Maybe<Scalars['Int']>;
2005
+ endTimestamp?: Maybe<Scalars['Float']>;
2006
+ accountDetails?: Maybe<CcpAccountDetails>;
2007
+ chargeDetails?: Maybe<CcpChargeDetails>;
2008
+ trial?: Maybe<CcpTrial>;
2009
+ billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
2010
+ metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2011
+ subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
2012
+ status?: Maybe<CcpSubscriptionStatus>;
2013
+ startTimestamp?: Maybe<Scalars['Float']>;
2014
+ };
1999
2015
  export declare type CcpSubscriptionSchedule = {
2000
2016
  __typename?: 'CcpSubscriptionSchedule';
2001
2017
  nextChangeTimestamp?: Maybe<Scalars['Float']>;
@@ -2019,22 +2035,6 @@ export declare enum CcpSubscriptionStatus {
2019
2035
  Active = "ACTIVE",
2020
2036
  Cancelled = "CANCELLED"
2021
2037
  }
2022
- export declare type CcpSubscriptionV2 = {
2023
- __typename?: 'CcpSubscriptionV2';
2024
- id: Scalars['ID'];
2025
- orderItemId?: Maybe<Scalars['ID']>;
2026
- entitlementId?: Maybe<Scalars['ID']>;
2027
- version?: Maybe<Scalars['Int']>;
2028
- endTimestamp?: Maybe<Scalars['Float']>;
2029
- accountDetails?: Maybe<CcpAccountDetails>;
2030
- chargeDetails?: Maybe<CcpChargeDetails>;
2031
- trial?: Maybe<CcpTrial>;
2032
- billingPeriodDetails?: Maybe<CcpBillingPeriodDetails>;
2033
- metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
2034
- subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
2035
- status?: Maybe<CcpSubscriptionStatus>;
2036
- startTimestamp?: Maybe<Scalars['Float']>;
2037
- };
2038
2038
  export declare type CcpTransactionAccount = Node & {
2039
2039
  __typename?: 'CcpTransactionAccount';
2040
2040
  id: Scalars['ID'];
@@ -9320,6 +9320,7 @@ export declare type HelpLayoutMediaConfig = {
9320
9320
  mediaUrl?: Maybe<Scalars['String']>;
9321
9321
  mediaToken?: Maybe<Scalars['String']>;
9322
9322
  mediaCollectionName?: Maybe<Scalars['String']>;
9323
+ asapIssuer?: Maybe<Scalars['String']>;
9323
9324
  };
9324
9325
  export declare type HelpLayoutMutationApi = {
9325
9326
  __typename?: 'HelpLayoutMutationApi';