@forge/cli-shared 3.14.0-next.0 → 3.14.0-next.2
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 +17 -0
- package/out/graphql/graphql-types.d.ts +17 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.14.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [2c219665]
|
|
12
|
+
- @forge/manifest@4.15.0-next.0
|
|
13
|
+
|
|
14
|
+
## 3.14.0-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 2517649d: Copy changes for simplified user consent
|
|
19
|
+
|
|
3
20
|
## 3.14.0-next.0
|
|
4
21
|
|
|
5
22
|
### Minor 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
|
-
|
|
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'];
|