@forge/cli-shared 8.0.0-next.12 → 8.0.0-next.14

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
+ ## 8.0.0-next.14
4
+
5
+ ### Minor Changes
6
+
7
+ - ba634d9: Remove further sandbox runtime related components
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [ba634d9]
12
+ - @forge/manifest@10.0.0-next.12
13
+
14
+ ## 8.0.0-next.13
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [1992aaf]
19
+ - Updated dependencies [c2e09b9]
20
+ - @forge/manifest@10.0.0-next.11
21
+
3
22
  ## 8.0.0-next.12
4
23
 
5
24
  ### Major Changes
@@ -872,7 +872,9 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
872
872
  connectedChannels?: Maybe<AgentStudioConnectedChannels>;
873
873
  conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
874
874
  creator?: Maybe<User>;
875
+ creatorType?: Maybe<Scalars['String']['output']>;
875
876
  description?: Maybe<Scalars['String']['output']>;
877
+ externalConfigReference?: Maybe<Scalars['String']['output']>;
876
878
  id: Scalars['ID']['output'];
877
879
  instructions?: Maybe<Scalars['String']['output']>;
878
880
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
@@ -4076,14 +4078,29 @@ export declare enum CcpEntitlementStatus {
4076
4078
  Active = "ACTIVE",
4077
4079
  Inactive = "INACTIVE"
4078
4080
  }
4079
- export declare type CcpEntitlementTemplate = {
4081
+ export declare type CcpEntitlementTemplate = Node & {
4080
4082
  __typename?: 'CcpEntitlementTemplate';
4083
+ catalogAccountKey?: Maybe<Scalars['ID']['output']>;
4084
+ createdAt?: Maybe<Scalars['Float']['output']>;
4081
4085
  data?: Maybe<Scalars['String']['output']>;
4086
+ defaultRevision?: Maybe<Scalars['Boolean']['output']>;
4087
+ description?: Maybe<Scalars['String']['output']>;
4088
+ id: Scalars['ID']['output'];
4082
4089
  key?: Maybe<Scalars['ID']['output']>;
4090
+ productKey?: Maybe<Scalars['String']['output']>;
4083
4091
  provisionedBy?: Maybe<Scalars['String']['output']>;
4092
+ status?: Maybe<CcpEntitlementTemplateStatus>;
4093
+ uniqueKey?: Maybe<Scalars['ID']['output']>;
4094
+ updatedAt?: Maybe<Scalars['Float']['output']>;
4084
4095
  userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
4085
4096
  version?: Maybe<Scalars['Int']['output']>;
4086
4097
  };
4098
+ export declare enum CcpEntitlementTemplateStatus {
4099
+ Deprecated = "DEPRECATED",
4100
+ None = "NONE",
4101
+ Published = "PUBLISHED",
4102
+ Unpublished = "UNPUBLISHED"
4103
+ }
4087
4104
  export declare type CcpEntitlementTemplateUserUsageInclusions = {
4088
4105
  __typename?: 'CcpEntitlementTemplateUserUsageInclusions';
4089
4106
  references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -4850,6 +4867,7 @@ export declare type CcpQueryApi = {
4850
4867
  __typename?: 'CcpQueryApi';
4851
4868
  catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
4852
4869
  entitlement?: Maybe<CcpEntitlement>;
4870
+ entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
4853
4871
  entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
4854
4872
  experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
4855
4873
  invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
@@ -4872,6 +4890,9 @@ export declare type CcpQueryApiCatalogAccountsArgs = {
4872
4890
  export declare type CcpQueryApiEntitlementArgs = {
4873
4891
  id: Scalars['ID']['input'];
4874
4892
  };
4893
+ export declare type CcpQueryApiEntitlementTemplatesArgs = {
4894
+ ids: Array<Scalars['ID']['input']>;
4895
+ };
4875
4896
  export declare type CcpQueryApiEntitlementsArgs = {
4876
4897
  ids: Array<Scalars['ID']['input']>;
4877
4898
  };